e1fe3dba5c
http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
21 lines
409 B
Makefile
21 lines
409 B
Makefile
# $NetBSD: Makefile,v 1.3 2000/06/20 13:56:43 fvdl Exp $
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= rpcbind
|
|
MAN= rpcbind.8
|
|
SRCS= check_bound.c rpcb_stat.c rpcb_svc_4.c rpcbind.c pmap_svc.c \
|
|
rpcb_svc.c rpcb_svc_com.c security.c warmstart.c util.c
|
|
|
|
CFLAGS+= -DPORTMAP -DLIBWRAP
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
DPADD= ${LIBWRAP} ${LIBUTIL}
|
|
LDADD= -lwrap -lutil
|
|
|
|
.include <bsd.prog.mk>
|