diff options
author | bde <bde@FreeBSD.org> | 1998-02-01 17:34:11 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-02-01 17:34:11 +0000 |
commit | 88e9a981725144a84636aa162d99b03a6fb8f141 (patch) | |
tree | 29d73e2d8c9155f58908d170c2c1ceb4c6484039 /lkm/nullfs | |
parent | 64af97a33981aacf28f370a9fb85a83b2da6065d (diff) | |
download | FreeBSD-src-88e9a981725144a84636aa162d99b03a6fb8f141.zip FreeBSD-src-88e9a981725144a84636aa162d99b03a6fb8f141.tar.gz |
Fixed breakage from converting NULLFS_DEBUG to a new-style option.
Diffstat (limited to 'lkm/nullfs')
-rw-r--r-- | lkm/nullfs/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lkm/nullfs/Makefile b/lkm/nullfs/Makefile index 9f7cd12..dae6d79 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> |