diff options
| author | Marcel Moolenaar <marcel@FreeBSD.org> | 2000-01-03 11:57:14 +0000 |
|---|---|---|
| committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2000-01-03 11:57:14 +0000 |
| commit | ed4674a8a8604167835792e8bafbb5497d4882e4 (patch) | |
| tree | f72cd25961817ed84969557b9a4c4bff8077a0b5 | |
| parent | 0c61940e7a8e454abe0670a9e9a76d3816cf7f31 (diff) | |
Notes
| -rw-r--r-- | sys/modules/vinum/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/modules/vinum/Makefile b/sys/modules/vinum/Makefile index 88c118925287..d7c3fae53357 100644 --- a/sys/modules/vinum/Makefile +++ b/sys/modules/vinum/Makefile @@ -14,14 +14,16 @@ NOMAN= # If you remove -DVINUMDEBUG here, you must also do it in src/sbin/Makefile. # Otherwise a number of ioctls will fail. -CFLAGS+= -DVINUMDEBUG -g -O +CFLAGS+= -DVINUMDEBUG -O all: -state.h: maketabs vinumstate.h +state.h: vinumstate.h ./maketabs >state.h +build-tools: maketabs + maketabs: maketabs.c - ${CC} -g -o maketabs maketabs.c + ${CC} -o maketabs maketabs.c .include <bsd.kmod.mk> |
