diff options
author | David McCullough <davidm@snapgear.com> | 2002-01-17 06:06:54 +0000 |
---|---|---|
committer | David McCullough <davidm@snapgear.com> | 2002-01-17 06:06:54 +0000 |
commit | 47e0a8060499c822772437a3ca1765297857c131 (patch) | |
tree | 830367474f56b50cebc98336a282e98258966ae0 | |
parent | 0dd9fe33ab1a23585d6acd89817cde20371f991f (diff) |
Clean up builds on "sh" to use the right ARCH dirs
-rw-r--r-- | Rules.mak | 24 |
1 files changed, 18 insertions, 6 deletions
@@ -36,13 +36,25 @@ LIBC=$(TOPDIR)libc/libc.a BUILDTIME = ${shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z"} GCCINCDIR = ${shell $(CC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp"} -NATIVE_ARCH = ${shell uname -m | sed -e 's/i.86/i386/' -e 's/sparc.*/sparc/' \ - -e 's/arm.*/arm/g' -e 's/m68k.*/m68k/' -e 's/ppc/powerpc/g' \ - -e 's/v850.*/v850/g'} +NATIVE_ARCH = ${shell uname -m | sed \ + -e 's/i.86/i386/' \ + -e 's/sparc.*/sparc/' \ + -e 's/arm.*/arm/g' \ + -e 's/m68k.*/m68k/' \ + -e 's/ppc/powerpc/g' \ + -e 's/v850.*/v850/g' \ + -e 's/sh[234]/sh/' \ + } ifeq ($(strip $(TARGET_ARCH)),) -TARGET_ARCH=${shell $(CC) -dumpmachine | sed -e s'/-.*//' -e 's/i.86/i386/' -e 's/sparc.*/sparc/' \ - -e 's/arm.*/arm/g' -e 's/m68k.*/m68k/' -e 's/ppc/powerpc/g' \ - -e 's/v850.*/v850/g'} +TARGET_ARCH=${shell $(CC) -dumpmachine | sed -e s'/-.*//' \ + -e 's/i.86/i386/' \ + -e 's/sparc.*/sparc/' \ + -e 's/arm.*/arm/g' \ + -e 's/m68k.*/m68k/' \ + -e 's/ppc/powerpc/g' \ + -e 's/v850.*/v850/g' \ + -e 's/sh[234]/sh/' \ + } endif # Some nice architecture specific optimizations |