diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-07-14 19:20:53 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-07-14 19:20:53 +0000 |
commit | cdf7137776a86fca4f62f9add8316032c580db14 (patch) | |
tree | 149e9e411eb950935d7f7d770e0bd7d38e148a0a /ld/configure.in | |
parent | 259e35d4e9be9544d4606bf842d89afd6848b1b3 (diff) | |
download | gdb-cdf7137776a86fca4f62f9add8316032c580db14.zip gdb-cdf7137776a86fca4f62f9add8316032c580db14.tar.gz gdb-cdf7137776a86fca4f62f9add8316032c580db14.tar.bz2 |
ns32k port from Ian Dall
Diffstat (limited to 'ld/configure.in')
-rw-r--r-- | ld/configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ld/configure.in b/ld/configure.in index 51c8cf3..7c32540 100644 --- a/ld/configure.in +++ b/ld/configure.in @@ -20,8 +20,8 @@ fi # per-target: # Canonicalize the secondary target names. -if [ -n "$with_targets" ]; then - for targ in `echo $with_targets | sed 's/,/ /g'` +if [ -n "$enable_targets" ]; then + for targ in `echo $enable_targets | sed 's/,/ /g'` do result=`$configsub $targ 2>/dev/null` if [ -n "$result" ]; then @@ -106,6 +106,8 @@ case "${targ}" in alpha-*-osf*) ld_target=alpha ;; alpha-*-netware*) ld_target=alpha ;; z8k-*-sim | z8k-*-coff) ld_target=z8ksim ;; + ns32k-pc532-mach) ld_target=pc532mach ;; + ns32k-pc532-netbsd*) ld_target=netbsd532 ;; powerpc-*-elf*) ld_target=ppc-elf32 ;; powerpc-*-netware*) ld_target=ppc-elf32 ;; *-*-aout) ld_target=${target_cpu}-${target_vendor} ;; @@ -147,6 +149,7 @@ if [ x${all_targets} = xfalse ]; then # The emulations in all the configured targets. tb=`sed -n ' s/EMUL[ ]*=[ ]*\([^ ]*\)/e\1.o/p + s/EMUL_EXTRA.*=[ ]*\([^ ]*\)/e\1.o/p ' $allfrags` # uniq the list. f="" |