diff options
| author | Scott Long <scottl@FreeBSD.org> | 2004-08-31 13:37:51 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2004-08-31 13:37:51 +0000 |
| commit | 2c098cd60fcc80e68d7294928fc88997aa2e020c (patch) | |
| tree | 44a7a7c5d22006a342ad37e0ee4f4262a5a3a75c | |
| parent | 8bd82895dfb6e79c2565cf6a99db3ee1ce922625 (diff) | |
Notes
| -rw-r--r-- | sys/modules/coda5/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/modules/coda5/Makefile b/sys/modules/coda5/Makefile index 595e65eb1ce2..f97ccd4e11e1 100644 --- a/sys/modules/coda5/Makefile +++ b/sys/modules/coda5/Makefile @@ -5,15 +5,13 @@ KMOD= coda5 SRCS= vnode_if.h \ coda_fbsd.c coda_namecache.c coda_psdev.c coda_subr.c \ - coda_venus.c coda_vfsops.c coda_vnops.c vcoda.h \ + coda_venus.c coda_vfsops.c coda_vnops.c \ opt_coda.h -CLEANFILES= vcoda.h opt_coda.h - -vcoda.h: - echo "#define NVCODA 4" > vcoda.h +CLEANFILES= opt_coda.h opt_coda.h: - echo "#define CODA_COMPAT_5" >opt_coda.h + echo "#define NVCODA 4" > ${.TARGET} + echo "#define CODA_COMPAT_5" >> ${.TARGET} .include <bsd.kmod.mk> |
