081fb64492
And move all the nfs related commands there. Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D30754 Sponsored by: Diablotin Systems
19 lines
227 B
Makefile
19 lines
227 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= nfs
|
|
|
|
PROG= nfsuserd
|
|
MAN= nfsuserd.8
|
|
WARNS?= 3
|
|
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|