diff options
author | eivind <eivind@FreeBSD.org> | 1998-02-04 21:56:39 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-02-04 21:56:39 +0000 |
commit | 357ed840539f8f9a58fb8fb389bcb6e426a9252c (patch) | |
tree | e59e11ca598a7714c4c0cc521055b195a2051531 /sys/modules/nullfs | |
parent | 1c9cf806f13759df7b86517904f3a7f7b0f9c628 (diff) | |
download | FreeBSD-src-357ed840539f8f9a58fb8fb389bcb6e426a9252c.zip FreeBSD-src-357ed840539f8f9a58fb8fb389bcb6e426a9252c.tar.gz |
Make the LKMs handle DIAGNOSTIC as a new-style option.
Diffstat (limited to 'sys/modules/nullfs')
-rw-r--r-- | sys/modules/nullfs/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/modules/nullfs/Makefile b/sys/modules/nullfs/Makefile index dae6d79..7f597ce 100644 --- a/sys/modules/nullfs/Makefile +++ b/sys/modules/nullfs/Makefile @@ -1,12 +1,16 @@ -# $Id: Makefile,v 1.3 1997/02/22 12:48:43 peter Exp $ +# $Id: Makefile,v 1.4 1998/02/01 17:34:11 bde Exp $ .PATH: ${.CURDIR}/../../sys/miscfs/nullfs KMOD= null_mod -SRCS= null_subr.c null_vfsops.c null_vnops.c opt_debug_nullfs.h +SRCS= null_subr.c null_vfsops.c null_vnops.c \ + opt_debug_nullfs.h opt_diagnostic.h NOMAN= VFS_LKM= CFLAGS+= -DNULLFS -CLEANFILES= opt_debug_nullfs.h +CLEANFILES+=opt_debug_nullfs.h opt_diagnostic.h + +opt_diagnostic.h: + touch opt_diagnostic.h opt_debug_nullfs.h: touch ${.TARGET} |