1# $NetBSD: Makefile,v 1.3 2000/06/20 13:56:43 fvdl Exp $ 2# $FreeBSD: src/usr.sbin/rpcbind/Makefile,v 1.7 2006/03/10 07:58:02 deischen Exp $ 3 4 5PROG= rpcbind 6MAN= rpcbind.8 7SRCS= check_bound.c rpcb_stat.c rpcb_svc_4.c rpcbind.c pmap_svc.c \ 8 rpcb_svc.c rpcb_svc_com.c security.c warmstart.c util.c 9WARNS?= 3 10NO_STRICT_ALIASING= 11 12CFLAGS+= -DPORTMAP -DLIBWRAP 13 14.if !defined(NO_INET6) 15CFLAGS+= -DINET6 16.endif 17 18DPADD= ${LIBWRAP} ${LIBUTIL} 19LDADD= -lwrap -lutil 20 21.include <bsd.prog.mk> 22