diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-10-27 16:20:51 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-10-27 16:20:51 +0000 |
commit | 6737e63ef792c927a0832ff5b6ced92c442c11a1 (patch) | |
tree | c985c610391b5fa6388260ac00915aae67342215 /sys/arch | |
parent | 96e6df083c6864d6c08e45c17cd87546b628eca7 (diff) |
Turning on optimization wins us an extra 15kb.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/stand/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/stand/boot/Makefile b/sys/arch/alpha/stand/boot/Makefile index 46c63dfc077..6b6501aaf1a 100644 --- a/sys/arch/alpha/stand/boot/Makefile +++ b/sys/arch/alpha/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 1997/05/05 06:01:50 millert Exp $ +# $OpenBSD: Makefile,v 1.9 1997/10/27 16:20:50 millert Exp $ # $NetBSD: Makefile,v 1.17 1997/04/17 07:27:46 thorpej Exp $ S= ${.CURDIR}/../../../.. @@ -22,7 +22,7 @@ DEFNS= -DCOMPAT_UFS -DALPHA_BOOT_ECOFF # -DALPHA_BOOT_ELF AFLAGS += -DASSEMBLER ${DEFNS} CPPFLAGS += -I${.CURDIR}/../.. -I${S} ${DEFNS} -CFLAGS = -Werror -mno-fp-regs +CFLAGS = -O2 -Werror -mno-fp-regs ${PROG}.nosym: ${PROG}.sym cp ${PROG}.sym ${PROG}.nosym |