diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1999-11-26 21:01:03 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1999-11-26 21:01:03 +0000 |
commit | a704009d8ae8531057cef91face602cab4d1941f (patch) | |
tree | e7582ab3e71be9e37f8f38d3ed31a3eed3c52739 /sys/modules/md/Makefile | |
parent | 86e88eb49247987c033a6ed299b41631f188d530 (diff) | |
download | src-a704009d8ae8531057cef91face602cab4d1941f.tar.gz src-a704009d8ae8531057cef91face602cab4d1941f.zip |
This fell out of a previous commit: create the opt_md.h and opt_mfs.h
files for the md module.
Notes
Notes:
svn path=/head/; revision=53729
Diffstat (limited to 'sys/modules/md/Makefile')
-rw-r--r-- | sys/modules/md/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/modules/md/Makefile b/sys/modules/md/Makefile index 169b0e7edc60..0c1cbe5177d4 100644 --- a/sys/modules/md/Makefile +++ b/sys/modules/md/Makefile @@ -2,8 +2,16 @@ .PATH: ${.CURDIR}/../../dev/md KMOD= md -SRCS= md.c +SRCS= md.c opt_mfs.h opt_md.h NOMAN= +CLEANFILES += opt_mfs.h opt_md.h + +opt_md.h: + touch opt_md.h + +opt_mfs.h: + touch opt_mfs.h .include <bsd.kmod.mk> + |