diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-10-15 22:49:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-10-15 22:49:05 +0000 |
commit | 4bf7f0cb9cdcd64d60503a4da2ba1ecd0f785edb (patch) | |
tree | 585ba164f645c133cd55dc801880436904a70354 /sys/arch | |
parent | a29a546ff171e90082ce7cd09900c6413c54e3ef (diff) |
We do not produce "core" files, so they do not need to be deleted. they
have been *.core files for a very long time. That's a lot of unlink()
calls saved.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/stand/cdboot/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/hppa64/stand/cdboot/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/vax/stand/boot/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/vax/stand/xxboot/Makefile | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/hppa/stand/cdboot/Makefile b/sys/arch/hppa/stand/cdboot/Makefile index f8f38aa55ad..aa35b7118b7 100644 --- a/sys/arch/hppa/stand/cdboot/Makefile +++ b/sys/arch/hppa/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2012/08/31 16:13:20 pascal Exp $ +# $OpenBSD: Makefile,v 1.8 2013/10/15 22:49:03 deraadt Exp $ NOMAN= no man S =${.CURDIR}/../../../.. @@ -37,7 +37,7 @@ LDADD+= $(SALIB) all: ${PROG} clean:: - rm -f a.out [Ee]rrs mklog core *.core \ + rm -f a.out [Ee]rrs mklog *.core \ ${PROG} ${OBJS} ${LOBJS} ${CLEANFILES} realinstall: diff --git a/sys/arch/hppa64/stand/cdboot/Makefile b/sys/arch/hppa64/stand/cdboot/Makefile index 76acfb9b96e..c9be9681970 100644 --- a/sys/arch/hppa64/stand/cdboot/Makefile +++ b/sys/arch/hppa64/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2012/08/21 14:46:18 pascal Exp $ +# $OpenBSD: Makefile,v 1.4 2013/10/15 22:49:04 deraadt Exp $ NOMAN= no man S =${.CURDIR}/../../../.. @@ -37,7 +37,7 @@ LDADD+= $(SALIB) all: ${PROG} clean:: - rm -f a.out [Ee]rrs mklog core *.core \ + rm -f a.out [Ee]rrs mklog *.core \ ${PROG} ${OBJS} ${LOBJS} ${CLEANFILES} realinstall: diff --git a/sys/arch/vax/stand/boot/Makefile b/sys/arch/vax/stand/boot/Makefile index cbbf63841b3..908c930c11e 100644 --- a/sys/arch/vax/stand/boot/Makefile +++ b/sys/arch/vax/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2013/07/05 21:13:06 miod Exp $ +# $OpenBSD: Makefile,v 1.12 2013/10/15 22:49:03 deraadt Exp $ # $NetBSD: Makefile,v 1.27 2002/04/07 07:00:25 matt Exp $ S!= cd ${.CURDIR}/../../../../; pwd @@ -52,7 +52,7 @@ ${PROG}: ${OBJS} ${LIBSA} ${LIBZ} ${STRIP} -o ${PROG} ${PROG}.sym clean:: - rm -f a.out [Ee]rrs mklog core *.core ${PROG} ${OBJS} ${LOBJS} \ + rm -f a.out [Ee]rrs mklog *.core ${PROG} ${OBJS} ${LOBJS} \ ${CLEANFILES} .include <bsd.prog.mk> diff --git a/sys/arch/vax/stand/xxboot/Makefile b/sys/arch/vax/stand/xxboot/Makefile index b1d30c3f4e8..068d45e03c4 100644 --- a/sys/arch/vax/stand/xxboot/Makefile +++ b/sys/arch/vax/stand/xxboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2013/07/05 21:13:07 miod Exp $ +# $OpenBSD: Makefile,v 1.13 2013/10/15 22:49:03 deraadt Exp $ # $NetBSD: Makefile,v 1.12 2002/02/24 01:04:25 matt Exp $ S= ${.CURDIR}/../../../../ @@ -53,7 +53,7 @@ ${PROG}: ${OBJS} ${LIBSA} /usr/bin/objcopy -O binary ${PROG}.out ${PROG} clean:: - rm -f a.out [Ee]rrs mklog core *.core ${PROG} ${OBJS} ${LOBJS} \ + rm -f a.out [Ee]rrs mklog *.core ${PROG} ${OBJS} ${LOBJS} \ ${CLEANFILES} .include <bsd.prog.mk> |