o Add build-tools target for maketabs although it doesn't seem to

be used. I therefore won't add it to Makefile.inc1.
o  Remove -g compilation flags.
This commit is contained in:
Marcel Moolenaar 2000-01-03 11:57:14 +00:00
parent 0c61940e7a
commit ed4674a8a8

View File

@ -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>