summaryrefslogtreecommitdiff
path: root/share/mk/bsd.own.mk
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-10-06 20:58:18 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-10-06 20:58:18 +0000
commitb50063e7723d8a96f3eaeb641e59f7f161dcd917 (patch)
tree912a3440a1bc70d7ac987e099524134196c40874 /share/mk/bsd.own.mk
parentbf3a6255750ff2254e0357e9e01506962b1f316f (diff)
Early bits for a 32-bit SuperH toolchain, currently for little-endian
systems only; more work is necessary in ld land.
Diffstat (limited to 'share/mk/bsd.own.mk')
-rw-r--r--share/mk/bsd.own.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index cf9fb2b68c6..641de0a5f98 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: bsd.own.mk,v 1.96 2006/09/26 23:14:52 martin Exp $
+# $OpenBSD: bsd.own.mk,v 1.97 2006/10/06 20:58:17 miod Exp $
# $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $
# Host-specific overrides
@@ -116,7 +116,8 @@ STATIC?= -static
# don't try to generate PIC versions of libraries on machines
# which don't support PIC.
-.if ${MACHINE_ARCH} == "m88k" || ${MACHINE_ARCH} == "vax"
+.if ${MACHINE_ARCH} == "m88k" || ${MACHINE_ARCH} == "vax" || \
+ ${MACHINE_ARCH} == "sh"
NOPIC=
.endif