diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-12 12:06:19 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-12 12:06:19 +0000 |
| commit | a0eb22834dfd773f8f77fed2cb7ccd57e776de1c (patch) | |
| tree | a024f402a5f20693c4d1fed5000b90f9630dffbd | |
| parent | 79c021244b41480d03dc02fd9a65a552b52028c9 (diff) | |
Notes
| -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 49a9254f42bc9..31ba5c7aeff8a 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 ad7bc6affa196..2dc48a0f5f20c 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 8c585c9d36bd6..9258d0ead18ea 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 6b7c49d4d05d7..44d28ca1dbdcd 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 15f5d327d2894..a63467d8ac0e0 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 15f5d327d2894..a63467d8ac0e0 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 d5c065e6c9159..f37ce94b65ce7 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 9a6b085ad6a6b..000eb86f04a11 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> |
