freebsd-dev/usr.sbin/ypserv/Makefile
Enji Cooper 7b8810a816 Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This simplifies pathing in make/displayed output.

MFC after:	1 week
Sponsored by:	Dell EMC Isilon
2017-03-01 04:24:56 +00:00

50 lines
1.0 KiB
Makefile

# $FreeBSD$
.include <src.opts.mk>
RPCDIR= ${SRCTOP}/include/rpcsvc
.PATH: ${RPCDIR} ${.CURDIR}/common
PROG= ypserv
MAN= ypserv.8 ypinit.8
SRCS= yp_svc.c yp_server.c yp_dblookup.c yp_dnslookup.c \
ypxfr_clnt.c yp.h yp_main.c yp_error.c yp_access.c yp_svc_udp.c \
yplib_host.c
CFLAGS+= -DDB_CACHE -I.
WARNS?= 0
.if ${MK_TCP_WRAPPERS} != "no"
CFLAGS+= -DTCP_WRAPPER
LIBADD+= wrap
.endif
CLEANFILES= yp_svc.c ypxfr_clnt.c yp.h
RPCGEN= RPCGEN_CPP=${CPP:Q} rpcgen -I -C
# We need to remove the 'static' keyword from _rpcsvcstate so that
# yp_main.c can see it.
yp_svc.c: yp.x
rm -f ${.TARGET}
${RPCGEN} -DYPSERV_ONLY -m ${RPCDIR}/yp.x | \
sed s/"static int _rpcsvcstate"/"int _rpcsvcstate"/g > ${.TARGET}
ypxfr_clnt.c: yp.x
${RPCGEN} -DYPPUSH_ONLY -l -o ${.TARGET} ${RPCDIR}/yp.x
yp.h: yp.x
${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/yp.x
FILES= Makefile.yp
FILESNAME= Makefile.dist
FILESDIR= /var/yp
SCRIPTS= ypinit.sh
.if !exists(${DESTDIR}${FILESDIR}/Makefile)
SYMLINKS= ${FILESNAME} ${FILESDIR}/Makefile
.endif
.include <bsd.prog.mk>