diff options
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/stand/bugcrt/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/arch/mvme68k/stand/bugcrt/Makefile b/sys/arch/mvme68k/stand/bugcrt/Makefile index ff083333abd..4cc94059476 100644 --- a/sys/arch/mvme68k/stand/bugcrt/Makefile +++ b/sys/arch/mvme68k/stand/bugcrt/Makefile @@ -1,12 +1,12 @@ -# $OpenBSD: Makefile,v 1.4 1996/05/10 18:39:12 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 1996/05/10 20:03:38 deraadt Exp $ -CFLAGS+=-I${.CURDIR}/../../include -O2 +CFLAGS+=-I${.OBJDIR} -O2 -fomit-frame-pointer OBJS=bugcrt.o -CLEANFILES+=a.out +CLEANFILES+=a.out machine -all: ${OBJS} +all: machine ${OBJS} bugcrt.o: bugcrt.c ${CC} ${CFLAGS} -c ${.ALLSRC} @@ -17,4 +17,7 @@ install: lint tags: +machine: + rm -f machine; ln -s ${.CURDIR}/../../include machine + .include <bsd.prog.mk> |