eccad22277
In addition to adding missing `static' keywords: - bin/dd: Pull in `extern.h' to guarantee consistency with source file. - libexec/rpc.rusersd: Move shared globals into an extern.h. - libexec/talkd: Move `debug' and `hostname' into extern.h. - usr.bin/cksum: Put counters in extern.h, as they are used by ckdist/mtree. - usr.bin/m4: Move `end_result' into extern.h. - usr.sbin/services_mkdb: Move shared globals into an extern.h.
16 lines
292 B
Makefile
16 lines
292 B
Makefile
# $FreeBSD$
|
|
|
|
PROG = rpc.rusersd
|
|
SRCS = rusersd.c rusers_proc.c extern.h
|
|
MAN = rpc.rusersd.8
|
|
|
|
DPADD= ${LIBRPCSVC} ${LIBUTIL}
|
|
LDADD= -lrpcsvc -lutil
|
|
|
|
#.if exists(/usr/X11R6/include/X11/extensions/xidle.h)
|
|
#CFLAGS+= -DXIDLE
|
|
#LDADD+= -L/usr/X11R6/lib -lXext -lX11
|
|
#.endif
|
|
|
|
.include <bsd.prog.mk>
|