diff options
author | Steve Chamberlain <steve@cygnus> | 1991-10-24 21:36:40 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-10-24 21:36:40 +0000 |
commit | 4b39ad32c103e7588720e843fb6c1ab0f8dfa82f (patch) | |
tree | acf9665a0bc95a09f5e4d88200809627b1326a28 /bfd/configure.in | |
parent | fa4248e31591eacf93bc42de33e3819e7eef9761 (diff) | |
download | gdb-4b39ad32c103e7588720e843fb6c1ab0f8dfa82f.zip gdb-4b39ad32c103e7588720e843fb6c1ab0f8dfa82f.tar.gz gdb-4b39ad32c103e7588720e843fb6c1ab0f8dfa82f.tar.bz2 |
Now uses mt- and mh- rather than tmake and hmake files
Diffstat (limited to 'bfd/configure.in')
-rw-r--r-- | bfd/configure.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bfd/configure.in b/bfd/configure.in index 91ef063..0852d9c 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -99,10 +99,11 @@ if [ ! -f ${files} ] ; then fi host_makefile_frag= -if [ -f config/h-${my_host} ] ; then - host_makefile_frag=config/h-${my_host} +if [ -f config/mh-${my_host} ] ; then + host_makefile_frag=config/mh-${my_host} fi +echo ${host_makefile_frag} # per-target: case "${target_vendor}" in @@ -160,9 +161,9 @@ sgi) bfd_target=irix3 ;; esac ;; -none|nyu) +none|nyu|sco) case "${target_cpu}" in - i386) bfd_target=i386-coff ;; + i386) bfd_target=i386_coff ;; a29k) case "${target_os}" in aout) bfd_target=a29k-aout ;; coff) bfd_target=a29k-coff ;; @@ -179,15 +180,14 @@ none|nyu) ;; esac -if [ ! -f config/t-${bfd_target} ] ; then +if [ ! -f config/mt-${bfd_target} ] ; then if [ -n "${bfd_target}" ] ; then - echo '***' No file config/t-${bfd_target} + echo '***' No file config/mt-${bfd_target} fi echo '***' BFD does not support target ${target} exit 1 fi - -target_makefile_frag=config/t-${bfd_target} +target_makefile_frag=config/mt-${bfd_target} # We don't do any links based on the target system, just very minor makefile # config. |