VFS messaging/interfacing work stage 5/99. Start work on the new
[dragonfly.git] / sys / vfs / nfs / Makefile
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.4 2004/08/13 17:51:11 dillon Exp $
3
4 KMOD=   nfs
5 SRCS=   nfs_bio.c nfs_node.c nfs_nqlease.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 NFS_INET?=      1       # 0/1 - requires INET to be configured in kernel
9 NOMAN=
10
11 opt_inet.h:
12         touch ${.TARGET}
13 .if ${NFS_INET} > 0
14         echo "#define INET 1" > ${.TARGET}
15 .endif
16
17 .include <bsd.kmod.mk>