freebsd-dev/sys/modules/nfsclient/Makefile

19 lines
453 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}/../../nfs
KMOD= nfs
SRCS= vnode_if.h \
nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c \
1999-11-02 04:16:17 +00:00
nfs_vnops.c opt_inet.h opt_nfs.h opt_vmpage.h opt_bootp.h
1998-01-09 01:01:21 +00:00
NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel
1994-09-22 22:12:59 +00:00
NOMAN=
1998-01-09 01:01:21 +00:00
opt_inet.h:
touch ${.TARGET}
1998-01-09 01:01:21 +00:00
.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 "${.CURDIR}/../../conf/kmod.mk"