diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-12 12:06:19 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-12 12:06:19 +0000 |
commit | 25fbcd7dedb2ed8db7bbcd1ba84b9d70082747af (patch) | |
tree | a024f402a5f20693c4d1fed5000b90f9630dffbd | |
parent | 29ad76a5ac4899481eb7ef288da470b5babbbcad (diff) | |
download | FreeBSD-src-25fbcd7dedb2ed8db7bbcd1ba84b9d70082747af.zip FreeBSD-src-25fbcd7dedb2ed8db7bbcd1ba84b9d70082747af.tar.gz |
Tidy up the cleanfiles.
-rw-r--r-- | gnu/usr.bin/cc/c++filt/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/cc1/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/cc1obj/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/cc1plus/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/cccp/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/cpp0/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/f771/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/tradcpp0/Makefile | 2 |
8 files changed, 10 insertions, 6 deletions
diff --git a/gnu/usr.bin/cc/c++filt/Makefile b/gnu/usr.bin/cc/c++filt/Makefile index 49a9254..31ba5c7 100644 --- a/gnu/usr.bin/cc/c++filt/Makefile +++ b/gnu/usr.bin/cc/c++filt/Makefile @@ -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> diff --git a/gnu/usr.bin/cc/cc1/Makefile b/gnu/usr.bin/cc/cc1/Makefile index ad7bc6a..2dc48a0 100644 --- a/gnu/usr.bin/cc/cc1/Makefile +++ b/gnu/usr.bin/cc/cc1/Makefile @@ -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> diff --git a/gnu/usr.bin/cc/cc1obj/Makefile b/gnu/usr.bin/cc/cc1obj/Makefile index 8c585c9..9258d0e 100644 --- a/gnu/usr.bin/cc/cc1obj/Makefile +++ b/gnu/usr.bin/cc/cc1obj/Makefile @@ -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 #----------------------------------------------------------------------- diff --git a/gnu/usr.bin/cc/cc1plus/Makefile b/gnu/usr.bin/cc/cc1plus/Makefile index 6b7c49d..44d28ca 100644 --- a/gnu/usr.bin/cc/cc1plus/Makefile +++ b/gnu/usr.bin/cc/cc1plus/Makefile @@ -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 diff --git a/gnu/usr.bin/cc/cccp/Makefile b/gnu/usr.bin/cc/cccp/Makefile index 15f5d32..a63467d 100644 --- a/gnu/usr.bin/cc/cccp/Makefile +++ b/gnu/usr.bin/cc/cccp/Makefile @@ -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 #----------------------------------------------------------------------- diff --git a/gnu/usr.bin/cc/cpp0/Makefile b/gnu/usr.bin/cc/cpp0/Makefile index 15f5d32..a63467d 100644 --- a/gnu/usr.bin/cc/cpp0/Makefile +++ b/gnu/usr.bin/cc/cpp0/Makefile @@ -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 #----------------------------------------------------------------------- diff --git a/gnu/usr.bin/cc/f771/Makefile b/gnu/usr.bin/cc/f771/Makefile index d5c065e..f37ce94 100644 --- a/gnu/usr.bin/cc/f771/Makefile +++ b/gnu/usr.bin/cc/f771/Makefile @@ -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 diff --git a/gnu/usr.bin/cc/tradcpp0/Makefile b/gnu/usr.bin/cc/tradcpp0/Makefile index 9a6b085..000eb86 100644 --- a/gnu/usr.bin/cc/tradcpp0/Makefile +++ b/gnu/usr.bin/cc/tradcpp0/Makefile @@ -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> |