Makefile revision 156813
1#	$NetBSD: Makefile,v 1.3 2000/06/20 13:56:43 fvdl Exp $
2# $FreeBSD: head/usr.sbin/rpcbind/Makefile 156813 2006-03-17 18:54:44Z ru $
3
4.include <bsd.own.mk>
5
6PROG=	rpcbind
7MAN=	rpcbind.8
8SRCS=	check_bound.c rpcb_stat.c rpcb_svc_4.c rpcbind.c pmap_svc.c \
9	rpcb_svc.c rpcb_svc_com.c security.c warmstart.c util.c
10
11CFLAGS+= -DPORTMAP -DLIBWRAP
12
13.if ${MK_INET6_SUPPORT} != "no"
14CFLAGS+= -DINET6
15.endif
16
17DPADD=	${LIBWRAP} ${LIBUTIL}
18LDADD=	-lwrap -lutil
19
20.include <bsd.prog.mk>
21