Makefile revision 70711
1# $FreeBSD: head/sys/modules/nfsclient/Makefile 70711 2001-01-06 14:00:42Z obrien $
2
3.PATH: ${.CURDIR}/../../nfs
4
5KMOD=	nfs
6SRCS=	vnode_if.h \
7	nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
8	nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c \
9	nfs_vnops.c opt_inet.h opt_nfs.h opt_vmpage.h opt_bootp.h
10NFS_INET?=	1	# 0/1 - requires INET to be configured in kernel
11NOMAN=
12
13opt_inet.h:
14	touch ${.TARGET}
15.if ${NFS_INET} > 0
16	echo "#define INET 1" > ${.TARGET}
17.endif
18
19.include <bsd.kmod.mk>
20