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 /lkm/msdos | |
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 'lkm/msdos')
-rw-r--r-- | lkm/msdos/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lkm/msdos/Makefile b/lkm/msdos/Makefile index 7bc833a..5c9c428 100644 --- a/lkm/msdos/Makefile +++ b/lkm/msdos/Makefile @@ -1,11 +1,15 @@ -# $Id$ +# $Id: Makefile,v 1.4 1997/02/22 12:48:38 peter Exp $ .PATH: ${.CURDIR}/../../sys/msdosfs KMOD= msdos_mod SRCS= msdosfs_conv.c msdosfs_denode.c msdosfs_fat.c msdosfs_lookup.c \ - msdosfs_vfsops.c msdosfs_vnops.c + msdosfs_vfsops.c msdosfs_vnops.c opt_diagnostic.h NOMAN= VFS_LKM= CFLAGS+= -DMSDOSFS +CLEANFILES+=opt_diagnostic.h + +opt_diagnostic.h: + touch opt_diagnostic.h .include <bsd.kmod.mk> |