1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5PACKAGE= nfs 6 7PROG= nfsuserd 8MAN= nfsuserd.8 9WARNS?= 3 10 11.if ${MK_INET_SUPPORT} != "no" 12CFLAGS+= -DINET 13.endif 14.if ${MK_INET6_SUPPORT} != "no" 15CFLAGS+= -DINET6 16.endif 17 18.include <bsd.prog.mk> 19