summaryrefslogtreecommitdiff
path: root/share/mk/sys.mk
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2004-04-05 19:17:26 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2004-04-05 19:17:26 +0000
commite33fdae7d8a5cb18db9766f0c68ab329c73a8618 (patch)
tree2449bc96f80a968e35f715292583762609b4da96 /share/mk/sys.mk
parenta85aa144b5f3995e98e81071dd81b293b4c51cbe (diff)
Switch mvme88k to -O2 optimization by default.
(the perl chunk discussed with millert@ and pushed upstream)
Diffstat (limited to 'share/mk/sys.mk')
-rw-r--r--share/mk/sys.mk6
1 files changed, 1 insertions, 5 deletions
diff --git a/share/mk/sys.mk b/share/mk/sys.mk
index c560a3cd606..f493e8f8ad3 100644
--- a/share/mk/sys.mk
+++ b/share/mk/sys.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: sys.mk,v 1.36 2004/02/27 18:02:47 deraadt Exp $
+# $OpenBSD: sys.mk,v 1.37 2004/04/05 19:17:25 miod Exp $
# $NetBSD: sys.mk,v 1.27 1996/04/10 05:47:19 mycroft Exp $
# @(#)sys.mk 5.11 (Berkeley) 3/13/91
@@ -32,11 +32,7 @@ LINK.S?= ${CC} ${AFLAGS} ${CPPFLAGS} ${LDFLAGS}
CC?= cc
-.if (${MACHINE_ARCH} == "m88k")
-CFLAGS?= -O1 ${PIPE} ${DEBUG}
-.else
CFLAGS?= -O2 ${PIPE} ${DEBUG}
-.endif
COMPILE.c?= ${CC} ${CFLAGS} ${CPPFLAGS} -c
LINK.c?= ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}