diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-10-06 20:58:18 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-10-06 20:58:18 +0000 |
commit | b50063e7723d8a96f3eaeb641e59f7f161dcd917 (patch) | |
tree | 912a3440a1bc70d7ac987e099524134196c40874 /Makefile.cross | |
parent | bf3a6255750ff2254e0357e9e01506962b1f316f (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 'Makefile.cross')
-rw-r--r-- | Makefile.cross | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.cross b/Makefile.cross index 28520fd65cd..f0a46276cab 100644 --- a/Makefile.cross +++ b/Makefile.cross @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.cross,v 1.20 2006/09/27 08:38:58 mickey Exp $ +# $OpenBSD: Makefile.cross,v 1.21 2006/10/06 20:58:15 miod Exp $ cross-tools: cross-includes cross-binutils cross-gcc cross-lib cross-distrib: cross-tools cross-bin cross-etc-root-var @@ -17,6 +17,8 @@ TARGET_ARCH= m88k TARGET_ARCH= mips64 .elif (${TARGET} == "macppc" || ${TARGET} == "mvmeppc") TARGET_ARCH= powerpc +.elif (${TARGET} == "landisk") +TARGET_ARCH= sh .else TARGET_ARCH= ${TARGET} .endif |