diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-30 06:03:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-30 06:03:17 +0000 |
commit | ff77fc919bb4a2fe5f84b8f4bdb2cf38c91824ae (patch) | |
tree | 7b0dd4826bde7d0525026013a67df66898c221ea /sys/arch/mvme68k/stand | |
parent | 347898fa5965662f6b1a7636224c3d72a7a5590a (diff) |
avoid intermediate files with same name (ie. a.out) for parallel make
ok miod
Diffstat (limited to 'sys/arch/mvme68k/stand')
-rw-r--r-- | sys/arch/mvme68k/stand/bugcrt/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme68k/stand/bugcrt/Makefile b/sys/arch/mvme68k/stand/bugcrt/Makefile index d9c9df7fe61..fc2c517ead0 100644 --- a/sys/arch/mvme68k/stand/bugcrt/Makefile +++ b/sys/arch/mvme68k/stand/bugcrt/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 1997/04/22 16:05:38 gvf Exp $ +# $OpenBSD: Makefile,v 1.8 2007/10/30 06:03:14 deraadt Exp $ # # DO NOT OPTMIZE bugcrt (i.e. no "-O2") # @@ -8,14 +8,14 @@ CFLAGS=-I${.CURDIR}/../../include -I${.CURDIR}/../libbug -I${S}/lib/libsa \ OBJS=bugcrt.o -CLEANFILES+=a.out +CLEANFILES+=bugcrt.out all: ${OBJS} bugcrt.o: bugcrt.c ${COMPILE.c} -c $< - ${LD} -x -r ${.TARGET} - mv a.out ${.TARGET} + ${LD} -x -r ${.TARGET} -o ${.TARGET}ut + mv ${.TARGET}ut ${.TARGET} install: |