aboutsummaryrefslogtreecommitdiff
path: root/lkm
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-02-01 17:34:11 +0000
committerBruce Evans <bde@FreeBSD.org>1998-02-01 17:34:11 +0000
commit4d889d1c84e6a68074aca313fb5a8518a459ffd3 (patch)
tree511bafb42b131f489c92c5f27960684b035ca64c /lkm
parent021886ff876f5bf1ef951d8c87f94b17d0ed1bdc (diff)
downloadsrc-4d889d1c84e6a68074aca313fb5a8518a459ffd3.tar.gz
src-4d889d1c84e6a68074aca313fb5a8518a459ffd3.zip
Fixed breakage from converting NULLFS_DEBUG to a new-style option.
Notes
Notes: svn path=/head/; revision=32986
Diffstat (limited to 'lkm')
-rw-r--r--lkm/nullfs/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/lkm/nullfs/Makefile b/lkm/nullfs/Makefile
index 9f7cd12ca7c5..dae6d79ba5ee 100644
--- a/lkm/nullfs/Makefile
+++ b/lkm/nullfs/Makefile
@@ -1,10 +1,14 @@
-# $Id$
+# $Id: Makefile,v 1.3 1997/02/22 12:48:43 peter Exp $
.PATH: ${.CURDIR}/../../sys/miscfs/nullfs
KMOD= null_mod
-SRCS= null_subr.c null_vfsops.c null_vnops.c
+SRCS= null_subr.c null_vfsops.c null_vnops.c opt_debug_nullfs.h
NOMAN=
VFS_LKM=
CFLAGS+= -DNULLFS
+CLEANFILES= opt_debug_nullfs.h
+
+opt_debug_nullfs.h:
+ touch ${.TARGET}
.include <bsd.kmod.mk>