diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-02-20 15:34:09 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-02-20 15:34:09 +0000 |
commit | f17556d13bd4a06d65712d7669d7519329a545f2 (patch) | |
tree | 0941454edd28ee67fd817a099d8da57c069bb2c9 /sys/arch/mvme68k/conf | |
parent | f81f45231aa9d070340f9af9d6c598dc2e8f7cb6 (diff) |
Do not pass 68060-specific compiler flags anymore.
Diffstat (limited to 'sys/arch/mvme68k/conf')
-rw-r--r-- | sys/arch/mvme68k/conf/Makefile.mvme68k | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/arch/mvme68k/conf/Makefile.mvme68k b/sys/arch/mvme68k/conf/Makefile.mvme68k index f9615dad660..ea9176f8e79 100644 --- a/sys/arch/mvme68k/conf/Makefile.mvme68k +++ b/sys/arch/mvme68k/conf/Makefile.mvme68k @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.mvme68k,v 1.25 2004/10/08 07:11:04 grange Exp $ +# $OpenBSD: Makefile.mvme68k,v 1.26 2005/02/20 15:34:03 miod Exp $ # This makefile is constructed from a machine description: # config machineid @@ -38,16 +38,10 @@ CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ -Wno-uninitialized -Wno-format -Wno-main -.if empty(IDENT:M-DM68060) -CMACHFLAGS= -m68020 -.else -CMACHFLAGS= -m68060 -Wa,-m68030 -.endif -CMACHFLAGS+= -msoft-float +CMACHFLAGS+= -msoft-float -fno-builtin-printf -fno-builtin-log .if ${IDENT:M-DNO_PROPOLICE} CMACHFLAGS+= -fno-stack-protector .endif -CMACHFLAGS+= -fno-builtin-printf -fno-builtin-log COPTS?= -O2 CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} ${CMACHFLAGS} ${PIPE} |