diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-13 22:00:51 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-13 22:00:51 +0000 |
commit | fbe45f6d783a63ed3421a0144d7a3d1048723849 (patch) | |
tree | d4de7f608abae4d6395553da612c158d35db8208 /sys/arch | |
parent | e4d405ae92d2a34d3aedf5415332f39976811bd6 (diff) |
Realistic COPTS handling. Plus it gets in sync with other m68k arches.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amiga/conf/Makefile.amiga | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/amiga/conf/Makefile.amiga b/sys/arch/amiga/conf/Makefile.amiga index ac1b2c63468..1ed1067283a 100644 --- a/sys/arch/amiga/conf/Makefile.amiga +++ b/sys/arch/amiga/conf/Makefile.amiga @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.amiga,v 1.27 2001/08/30 22:10:14 miod Exp $ +# $OpenBSD: Makefile.amiga,v 1.28 2001/12/13 22:00:50 miod Exp $ # $NetBSD: Makefile.amiga,v 1.60 1997/07/23 10:19:42 is Exp $ # Makefile for OpenBSD @@ -29,6 +29,7 @@ LD?= ld MKDEP?= mkdep STRIP?= strip TOUCH?= touch -f -c +COPTS?= -O2 # source tree is located via $S relative to the compilation directory .ifndef S @@ -50,7 +51,7 @@ CMACHFLAGS= -m68060 -Wa,-m68030 .endif CMACHFLAGS+= -msoft-float -CFLAGS= ${DEBUG} -O2 ${CWARNFLAGS} ${CMACHFLAGS} ${COPTS} +CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} ${CMACHFLAGS} AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE LINKFLAGS= -n -Ttext 0 -e start STRIPFLAGS= -d |