Tidy up the cleanfiles.

This commit is contained in:
David E. O'Brien 2002-05-12 12:06:19 +00:00
parent 79c021244b
commit a0eb22834d
8 changed files with 10 additions and 6 deletions

View file

@ -20,4 +20,6 @@ cplus-dem+%DIKED.c: cplus-dem.c
-e 's/^xrealloc[ ]/_DONT_xrealloc /g' \
${.ALLSRC} > ${.TARGET}
CLEANFILES= cplus-dem+%DIKED.c
.include <bsd.prog.mk>

View file

@ -28,6 +28,6 @@ c-parse.c: c-parse.in
-e "s/realloc/xrealloc/g" \
c-parse.c.in >c-parse.c
CLEANFILES+= c-parse.c c-parse.y # insurance
CLEANFILES= c-parse.c c-parse.y
.include <bsd.prog.mk>

View file

@ -28,7 +28,7 @@ objc-parse.c: c-parse.in
-e "s/realloc/xrealloc/g" \
objc-parse.c.in >objc-parse.c
CLEANFILES+= objc-parse.c objc-parse.y # insurance
CLEANFILES= objc-parse.c objc-parse.y
#-----------------------------------------------------------------------

View file

@ -20,7 +20,7 @@ CFLAGS+= -I${GCCDIR}/cp -I.
DPADD+= ${LIBCC_INT}
LDADD+= ${LIBCC_INT}
CLEANFILES+= parse.c parse.h y.tab.c y.tab.h cfns.h
CLEANFILES= parse.c parse.h y.tab.c y.tab.h cfns.h
.ORDER: parse.c parse.h
parse.c: parse.y

View file

@ -27,7 +27,7 @@ c-parse.c: c-parse.in
-e "s/realloc/xrealloc/g" \
c-parse.c.in >c-parse.c
CLEANFILES+= c-parse.c c-parse.y # insurance
CLEANFILES= c-parse.c c-parse.y
#-----------------------------------------------------------------------

View file

@ -27,7 +27,7 @@ c-parse.c: c-parse.in
-e "s/realloc/xrealloc/g" \
c-parse.c.in >c-parse.c
CLEANFILES+= c-parse.c c-parse.y # insurance
CLEANFILES= c-parse.c c-parse.y
#-----------------------------------------------------------------------

View file

@ -21,7 +21,7 @@ build-tools: fini
fini: fini.o
${CC} -static ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
CLEANFILES+= fini fini.o
CLEANFILES= fini fini.o
#-----------------------------------------------------------------------
# str-* gunk

View file

@ -19,4 +19,6 @@ tradcif.c: tradcif.y
-e "s/realloc/xrealloc/g" \
y.tab.c >${.TARGET}
CLEANFILES= y.tab.c tradcif.c
.include <bsd.prog.mk>