Makefile revision 83651
1# $FreeBSD: head/sys/modules/nfsclient/Makefile 83651 2001-09-18 23:32:09Z peter $
2
3.PATH: ${.CURDIR}/../../nfsclient ${.CURDIR}/../../nfs
4KMOD=	nfsclient
5SRCS=	vnode_if.h \
6	nfs_bio.c nfs_node.c nfs_socket.c nfs_subs.c nfs_nfsiod.c \
7	nfs_vfsops.c nfs_vnops.c nfs_common.c \
8	opt_inet.h opt_nfs.h opt_bootp.h
9
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