freebsd-dev/sys/modules/nfsclient/Makefile

19 lines
431 B
Makefile
Raw Normal View History

1999-08-28 01:08:13 +00:00
# $FreeBSD$
1994-09-22 22:12:59 +00:00
.PATH: ${.CURDIR}/../../nfsclient ${.CURDIR}/../../nfs
KMOD= nfsclient
SRCS= vnode_if.h \
nfs_bio.c nfs_lock.c nfs_node.c nfs_socket.c nfs_subs.c nfs_nfsiod.c \
nfs_vfsops.c nfs_vnops.c nfs_common.c \
opt_inet.h opt_nfs.h opt_bootp.h
1998-01-09 01:01:21 +00:00
NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel
opt_inet.h:
touch ${.TARGET}
.if ${NFS_INET} > 0
echo "#define INET 1" > ${.TARGET}
1998-01-09 01:01:21 +00:00
.endif
1994-09-22 22:12:59 +00:00
.include <bsd.kmod.mk>