Makefile revision 156528
1#	$NetBSD: Makefile,v 1.3 2000/06/20 13:56:43 fvdl Exp $
2# $FreeBSD: head/usr.sbin/rpcbind/Makefile 156528 2006-03-10 07:58:02Z deischen $
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
9
10CFLAGS+= -DPORTMAP -DLIBWRAP
11
12.if !defined(NO_INET6)
13CFLAGS+= -DINET6
14.endif
15
16DPADD=	${LIBWRAP} ${LIBUTIL}
17LDADD=	-lwrap -lutil
18
19.include <bsd.prog.mk>
20