kernel - Reduce lwp_signotify() latency
[dragonfly.git] / usr.sbin / ypserv / Makefile
... / ...
CommitLineData
1# $FreeBSD: src/usr.sbin/ypserv/Makefile,v 1.24 2004/10/18 21:42:15 ru Exp $
2
3RPCDIR= ${.CURDIR}/../../include/rpcsvc
4.PATH: ${RPCDIR}
5
6PROG= ypserv
7MAN= ypserv.8 ypinit.8
8SRCS= yp_svc.c yp_server.c yp_dblookup.c yp_dnslookup.c \
9 ypxfr_clnt.c yp.h yp_main.c yp_error.c yp_access.c yp_svc_udp.c
10WARNS?= 2
11
12CFLAGS+= -DDB_CACHE -DTCP_WRAPPER -I.
13
14DPADD= ${LIBWRAP}
15LDADD= -lwrap
16
17CLEANFILES= yp_svc.c ypxfr_clnt.c yp.h
18
19RPCGEN= rpcgen -I -C
20
21# We need to remove the 'static' keyword from _rpcsvcstate so that
22# yp_main.c can see it.
23yp_svc.c: yp.x
24 rm -f ${.TARGET}
25 ${RPCGEN} -DYPSERV_ONLY -m ${RPCDIR}/yp.x | \
26 sed s/"static int _rpcsvcstate"/"int _rpcsvcstate"/g > ${.TARGET}
27
28ypxfr_clnt.c: yp.x
29 ${RPCGEN} -DYPPUSH_ONLY -l -o ${.TARGET} ${RPCDIR}/yp.x
30
31yp.h: yp.x
32 ${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/yp.x
33
34FILES= Makefile.yp
35FILESNAME= Makefile.dist
36FILESDIR= /var/yp
37SCRIPTS= ypinit.sh
38
39.if !exists(${DESTDIR}${FILESDIR}/Makefile)
40SYMLINKS= ${FILESNAME} ${FILESDIR}/Makefile
41.endif
42
43.include <bsd.prog.mk>