1#	$NetBSD: Makefile,v 1.11 2007/08/27 19:53:32 dsl 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
24
25LDADD+= -lwrap -lutil
26DPADD+= ${LIBWRAP} ${LIBUTIL}
27
28.PATH:  ${LIBCRPCDIR}
29
30.include <bsd.prog.mk>
31