Makefile revision 346467
1# $FreeBSD: stable/10/usr.sbin/nfsuserd/Makefile 346467 2019-04-21 01:25:27Z rmacklem $
2
3.include <src.opts.mk>
4
5PROG=	nfsuserd
6MAN=	nfsuserd.8
7WARNS?=	3
8
9.if ${MK_INET_SUPPORT} != "no"
10CFLAGS+= -DINET
11.endif
12.if ${MK_INET6_SUPPORT} != "no"
13CFLAGS+= -DINET6
14.endif
15
16.include <bsd.prog.mk>
17