]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/rpcbind/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / rpcbind / Makefile
1 #       $NetBSD: Makefile,v 1.3 2000/06/20 13:56:43 fvdl Exp $
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   rpcbind
7 MAN=    rpcbind.8
8 SRCS=   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
11 CFLAGS+= -DPORTMAP -DLIBWRAP
12
13 .if ${MK_INET6_SUPPORT} != "no"
14 CFLAGS+= -DINET6
15 .endif
16
17 WARNS?= 1
18
19 DPADD=  ${LIBWRAP} ${LIBUTIL}
20 LDADD=  -lwrap -lutil
21
22 .include <bsd.prog.mk>