Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[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.2 2003/06/17 04:28:46 dillon Exp $
3
4 .PATH: ${.CURDIR}/../../nfs
5 KMOD=   nfs
6 SRCS=   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
10 NFS_INET?=      1       # 0/1 - requires INET to be configured in kernel
11 NOMAN=
12
13 opt_inet.h:
14         touch ${.TARGET}
15 .if ${NFS_INET} > 0
16         echo "#define INET 1" > ${.TARGET}
17 .endif
18
19 .include <bsd.kmod.mk>