aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/nfs
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1998-10-16 04:30:52 +0000
committerPeter Wemm <peter@FreeBSD.org>1998-10-16 04:30:52 +0000
commita654d072959982a88cfbd609921641d85a8eb50c (patch)
tree6a527b2850f10a3ac2b45ff3c53340217e854e0d /sys/modules/nfs
parent89045423f1d86b30a03c90c35964f518a3e4ce4d (diff)
downloadsrc-a654d072959982a88cfbd609921641d85a8eb50c.tar.gz
src-a654d072959982a88cfbd609921641d85a8eb50c.zip
Sample initial set of kld-ified modules. Not all have been completely
converted yet. These are more of a starting point. This is NOT connected to the parent Makefile. OK'ed by jkh (who is ever so patiently waiting)
Notes
Notes: svn path=/head/; revision=40440
Diffstat (limited to 'sys/modules/nfs')
-rw-r--r--sys/modules/nfs/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/modules/nfs/Makefile b/sys/modules/nfs/Makefile
index 71b19a99db53..719adcd2692a 100644
--- a/sys/modules/nfs/Makefile
+++ b/sys/modules/nfs/Makefile
@@ -1,15 +1,15 @@
-# $Id$
+# $Id: Makefile,v 1.10 1998/07/07 02:27:09 bde Exp $
-.PATH: ${.CURDIR}/../../sys/nfs
-KMOD= nfs_mod
+.PATH: ${.CURDIR}/../../nfs
+KMOD= nfs
SRCS= nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c \
nfs_vnops.c opt_inet.h opt_nfs.h opt_vmpage.h
NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel
NOMAN=
-VFS_LKM=
+VFS_KLD=
CFLAGS+= -DNFS
-CLEANFILES= opt_inet.h opt_nfs.h opt_vmpage.h
+CLEANFILES= opt_inet.h opt_nfs.h opt_vmpage.h opt_posix.h
opt_inet.h:
touch ${.TARGET}
@@ -17,7 +17,7 @@ opt_inet.h:
echo "#define INET 1" > ${.TARGET}
.endif
-opt_nfs.h opt_vmpage.h:
+opt_nfs.h opt_vmpage.h opt_posix.h:
touch ${.TARGET}
.include <bsd.kmod.mk>