diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-06 10:55:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-06 10:55:08 +0000 |
commit | d7fe77d409b59d5cd7ab6c78c920bdc9a41dd2c2 (patch) | |
tree | 2c2e30a471e64be1397b698ac498a46535fc1bd1 /sys/arch/mvme68k/stand/bugcrt/Makefile | |
parent | 9f62fcdc18d30f4b202d2089fc93c17f8f553380 (diff) |
various changes to once again shrink the bootblocks to a useable size.
Diffstat (limited to 'sys/arch/mvme68k/stand/bugcrt/Makefile')
-rw-r--r-- | sys/arch/mvme68k/stand/bugcrt/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvme68k/stand/bugcrt/Makefile b/sys/arch/mvme68k/stand/bugcrt/Makefile index 9efe6b2d092..6348eb31d5d 100644 --- a/sys/arch/mvme68k/stand/bugcrt/Makefile +++ b/sys/arch/mvme68k/stand/bugcrt/Makefile @@ -1,6 +1,6 @@ -# $Id: Makefile,v 1.1 1995/10/18 10:44:45 deraadt Exp $ +# $Id: Makefile,v 1.2 1995/12/06 10:55:03 deraadt Exp $ -CFLAGS+=-I${.CURDIR}/../../include +CFLAGS+=-I${.CURDIR}/../../include -O2 .include "${MACHINE_ARCH}/Makefile.inc" @@ -13,7 +13,7 @@ CLEANFILES+=a.out all: ${OBJS} bugcrt.o: bugcrt.c - ${CC} ${CFLAGS} -c -O ${.ALLSRC} + ${CC} ${CFLAGS} -c ${.ALLSRC} ${LD} -x -r ${.TARGET} mv a.out ${.TARGET} |