mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
1494289f5b
rpc.statd. This is apparently fully functional and complete.
14 lines
177 B
Makefile
14 lines
177 B
Makefile
# $Id$
|
|
|
|
PROG = rpc.statd
|
|
SRCS = statd.c procs.c file.c
|
|
MAN8 = rpc.statd.8
|
|
|
|
DPADD= ${LIBRPCSVC}
|
|
LDADD= -lrpcsvc
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
test: test.c
|
|
cc -o test test.c -lrpcsvc
|