diff options
author | ru <ru@FreeBSD.org> | 2002-05-13 15:28:00 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-05-13 15:28:00 +0000 |
commit | 661f00368be03434325c007f9c533c9195ae6df1 (patch) | |
tree | f004896fe6dc0f9bc5ab93a30a5dd7dcedecb549 /lib/csu | |
parent | 6afcf3299e38cf80d5ca6b237e0c6311911f25c4 (diff) | |
download | FreeBSD-src-661f00368be03434325c007f9c533c9195ae6df1.zip FreeBSD-src-661f00368be03434325c007f9c533c9195ae6df1.tar.gz |
Fixed CLEANFILES after bsd.lib.mk sweep.
Diffstat (limited to 'lib/csu')
-rw-r--r-- | lib/csu/alpha/Makefile | 2 | ||||
-rw-r--r-- | lib/csu/amd64/Makefile | 2 | ||||
-rw-r--r-- | lib/csu/i386-elf/Makefile | 2 | ||||
-rw-r--r-- | lib/csu/ia64/Makefile | 2 | ||||
-rw-r--r-- | lib/csu/powerpc/Makefile | 2 | ||||
-rw-r--r-- | lib/csu/sparc64/Makefile | 2 |
6 files changed, 12 insertions, 0 deletions
diff --git a/lib/csu/alpha/Makefile b/lib/csu/alpha/Makefile index 32b7f68..46c0277 100644 --- a/lib/csu/alpha/Makefile +++ b/lib/csu/alpha/Makefile @@ -11,6 +11,8 @@ CFLAGS+= -Wall -Wno-unused \ all: ${OBJS} +CLEANFILES= ${OBJS} + gcrt1.o: crt1.c ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC} diff --git a/lib/csu/amd64/Makefile b/lib/csu/amd64/Makefile index 594ab7e..a780693 100644 --- a/lib/csu/amd64/Makefile +++ b/lib/csu/amd64/Makefile @@ -12,6 +12,8 @@ LDFLAGS+= -elf all: ${OBJS} +CLEANFILES= ${OBJS} + gcrt1.o: crt1.c ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c diff --git a/lib/csu/i386-elf/Makefile b/lib/csu/i386-elf/Makefile index 594ab7e..a780693 100644 --- a/lib/csu/i386-elf/Makefile +++ b/lib/csu/i386-elf/Makefile @@ -12,6 +12,8 @@ LDFLAGS+= -elf all: ${OBJS} +CLEANFILES= ${OBJS} + gcrt1.o: crt1.c ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c diff --git a/lib/csu/ia64/Makefile b/lib/csu/ia64/Makefile index 32b7f68..46c0277 100644 --- a/lib/csu/ia64/Makefile +++ b/lib/csu/ia64/Makefile @@ -11,6 +11,8 @@ CFLAGS+= -Wall -Wno-unused \ all: ${OBJS} +CLEANFILES= ${OBJS} + gcrt1.o: crt1.c ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC} diff --git a/lib/csu/powerpc/Makefile b/lib/csu/powerpc/Makefile index 32b7f68..46c0277 100644 --- a/lib/csu/powerpc/Makefile +++ b/lib/csu/powerpc/Makefile @@ -11,6 +11,8 @@ CFLAGS+= -Wall -Wno-unused \ all: ${OBJS} +CLEANFILES= ${OBJS} + gcrt1.o: crt1.c ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC} diff --git a/lib/csu/sparc64/Makefile b/lib/csu/sparc64/Makefile index 09057e3..3d1904c 100644 --- a/lib/csu/sparc64/Makefile +++ b/lib/csu/sparc64/Makefile @@ -9,6 +9,8 @@ CFLAGS+= -I${.CURDIR}/../common -I${.CURDIR}/../../libc/include all: ${OBJS} +CLEANFILES= ${OBJS} + gcrt1.o: crt1.c ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC} |