Makefile revision 1.13
1# $NetBSD: Makefile,v 1.13 2017/08/16 23:38:16 ginsbach Exp $ 2 3.include <bsd.own.mk> 4 5USE_FORT?= yes # network client 6 7PROG= rpcbind 8MAN= rpcbind.8 9SRCS= check_bound.c rpcb_stat.c rpcb_svc_4.c rpcbind.c pmap_svc.c \ 10 rpcb_svc.c rpcb_svc_com.c security.c warmstart.c util.c 11 12LIBCDIR= ${NETBSDSRCDIR}/lib/libc 13LIBCRPCDIR= ${LIBCDIR}/rpc 14 15CPPFLAGS+= -I${LIBCRPCDIR} -DPORTMAP -DLIBWRAP 16 17.if (${USE_INET6} != "no") 18CPPFLAGS+= -DINET6 19.endif 20 21# Uncomment these to get any useful output from 'rpcbind -d' 22# CPPFLAGS+= -DRPCBIND_DEBUG 23# CPPFLAGS+= -DSVC_RUN_DEBUG 24CPPFLAGS+= -DWARMSTART 25 26LDADD+= -lwrap -lutil 27DPADD+= ${LIBWRAP} ${LIBUTIL} 28 29.PATH: ${LIBCRPCDIR} 30 31.include <bsd.prog.mk> 32