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