From 5355cfee73ac467b6db0073c40052c71c561fdb6 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Wed, 1 Sep 2004 06:51:43 +0000 Subject: [PATCH] bsd.kmod.mk knows how to clean up opt_*.h files automatically, and has the necessary magic to create empty opt_*.h files. --- sys/modules/coda/Makefile | 5 ----- sys/modules/coda5/Makefile | 4 +--- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/sys/modules/coda/Makefile b/sys/modules/coda/Makefile index 60992c942f6..919213a0b5e 100644 --- a/sys/modules/coda/Makefile +++ b/sys/modules/coda/Makefile @@ -8,9 +8,4 @@ SRCS= vnode_if.h \ coda_venus.c coda_vfsops.c coda_vnops.c \ opt_coda.h -CLEANFILES= opt_coda.h - -opt_coda.h: - echo > ${.TARGET} - .include diff --git a/sys/modules/coda5/Makefile b/sys/modules/coda5/Makefile index c8f19562c6c..f974cc09b31 100644 --- a/sys/modules/coda5/Makefile +++ b/sys/modules/coda5/Makefile @@ -8,9 +8,7 @@ SRCS= vnode_if.h \ coda_venus.c coda_vfsops.c coda_vnops.c \ opt_coda.h -CLEANFILES= opt_coda.h - opt_coda.h: - echo "#define CODA_COMPAT_5" >> ${.TARGET} + echo "#define CODA_COMPAT_5" > ${.TARGET} .include