Makefile revision 346487
1# $FreeBSD: stable/10/usr.sbin/nfsuserd/Makefile 346487 2019-04-21 14:45:18Z rmacklem $
2
3.include <bsd.own.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