xref: /dragonfly/sys/vfs/nfs/Makefile (revision 8a7bdfea)
1# $FreeBSD: src/sys/modules/nfs/Makefile,v 1.16 1999/12/12 20:34:06 peter Exp $
2# $DragonFly: src/sys/vfs/nfs/Makefile,v 1.6 2006/03/27 16:18:39 dillon Exp $
3
4KMOD=	nfs
5SRCS=	nfs_bio.c nfs_node.c nfs_kerb.c nfs_serv.c nfs_socket.c \
6	nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c \
7	nfs_vnops.c opt_inet.h opt_nfs.h opt_vmpage.h opt_bootp.h \
8	opt_nfsroot.h
9NFS_INET?=	1	# 0/1 - requires INET to be configured in kernel
10NOMAN=
11
12opt_inet.h:
13	touch ${.TARGET}
14.if ${NFS_INET} > 0
15	echo "#define INET 1" > ${.TARGET}
16.endif
17
18.include <bsd.kmod.mk>
19