]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/ypxfr/Makefile
sysctl(9): Fix a few mandoc related issues
[FreeBSD/FreeBSD.git] / libexec / ypxfr / Makefile
1 # $FreeBSD$
2
3 PROG=   ypxfr
4 SRCS=   yp_dblookup.c yp_dbwrite.c yp_error.c \
5         ypxfr_getmap.c ypxfr_main.c ypxfr_misc.c \
6         ypxfrd_getmap.c \
7         ${GENSRCS}
8 GENSRCS=yp.h yp_clnt.c ypxfr_clnt.c
9
10 .PATH: ${SRCTOP}/usr.sbin/ypserv
11
12 MAN=    ypxfr.8
13
14 CFLAGS+= -I.
15
16 WARNS?= 2
17 WFORMAT=0
18
19 LIBADD= rpcsvc
20
21 CLEANFILES= ${GENSRCS}
22
23 RPCDIR= ${SRCTOP}/include/rpcsvc
24 RPCGEN= RPCGEN_CPP=${CPP:Q} rpcgen -I -C
25
26 ypxfr_clnt.c: ${RPCDIR}/yp.x
27         rm -f ${.TARGET}
28         ${RPCGEN} -DYPPUSH_ONLY -l -o ${.TARGET} ${RPCDIR}/yp.x
29
30 yp_clnt.c: ${RPCDIR}/yp.x
31         rm -f ${.TARGET}
32         ${RPCGEN} -DYPSERV_ONLY -l -o ${.TARGET} ${RPCDIR}/yp.x
33
34 yp.h: ${RPCDIR}/yp.x
35         rm -f ${.TARGET}
36         ${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/yp.x
37
38 # ypxfrd_xdr.c: ${RPCDIR}/ypxfrd.x
39 #       rm -f ${.TARGET}
40 #       ${RPCGEN} -c -o ${.TARGET} ${RPCDIR}/ypxfrd.x
41
42 ypxfrd.h: ${RPCDIR}/ypxfrd.x
43         rm -f ${.TARGET}
44         ${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/ypxfrd.x
45
46 .include <bsd.prog.mk>