freebsd-dev/libexec/ypxfr/Makefile
Enji Cooper a251f9dcf8 libexec: normalize paths using SRCTOP-relative paths or :H when possible
This simplifies make logic/output

MFC after:	1 month
Sponsored by:	Dell EMC Isilon
2017-03-04 11:28:03 +00:00

47 lines
892 B
Makefile

# $FreeBSD$
PROG= ypxfr
SRCS= yp_dblookup.c yp_dbwrite.c yp_error.c \
ypxfr_getmap.c ypxfr_main.c ypxfr_misc.c \
ypxfrd_getmap.c \
${GENSRCS}
GENSRCS=yp.h yp_clnt.c ypxfr_clnt.c
.PATH: ${SRCTOP}/usr.sbin/ypserv
MAN= ypxfr.8
CFLAGS+= -I.
WARNS?= 2
WFORMAT=0
LIBADD= rpcsvc
CLEANFILES= ${GENSRCS}
RPCDIR= ${SRCTOP}/include/rpcsvc
RPCGEN= RPCGEN_CPP=${CPP:Q} rpcgen -I -C
ypxfr_clnt.c: ${RPCDIR}/yp.x
rm -f ${.TARGET}
${RPCGEN} -DYPPUSH_ONLY -l -o ${.TARGET} ${RPCDIR}/yp.x
yp_clnt.c: ${RPCDIR}/yp.x
rm -f ${.TARGET}
${RPCGEN} -DYPSERV_ONLY -l -o ${.TARGET} ${RPCDIR}/yp.x
yp.h: ${RPCDIR}/yp.x
rm -f ${.TARGET}
${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/yp.x
# ypxfrd_xdr.c: ${RPCDIR}/ypxfrd.x
# rm -f ${.TARGET}
# ${RPCGEN} -c -o ${.TARGET} ${RPCDIR}/ypxfrd.x
ypxfrd.h: ${RPCDIR}/ypxfrd.x
rm -f ${.TARGET}
${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/ypxfrd.x
.include <bsd.prog.mk>