diff options
author | Steve Chamberlain <sac@cygnus> | 1993-02-08 19:46:59 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1993-02-08 19:46:59 +0000 |
commit | 47dba87afaa87bce19a6137781d8dcd490010913 (patch) | |
tree | f198274a70e7f584d3608f8fc1046c5140c4d70d /sim/configure.in | |
parent | 44c5672585d9fd2dda8d73f9b913a2dec8091870 (diff) | |
download | gdb-47dba87afaa87bce19a6137781d8dcd490010913.zip gdb-47dba87afaa87bce19a6137781d8dcd490010913.tar.gz gdb-47dba87afaa87bce19a6137781d8dcd490010913.tar.bz2 |
* Makefile.in, configure.in: if target isn't supported, build a
harmless makefile.
Diffstat (limited to 'sim/configure.in')
-rw-r--r-- | sim/configure.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sim/configure.in b/sim/configure.in index d576bce..d6fa7ba 100644 --- a/sim/configure.in +++ b/sim/configure.in @@ -3,7 +3,7 @@ # appropriate for this directory. For more information, check any # existing configure script. -configdirs="h8300 z8k" +configdirs="h8300 z8k h8500" srctrigger=Makefile.in srcname="sim" target_dependent=true @@ -20,16 +20,15 @@ target_dependent=true case "${target}" in h8300-*-*) sim_target=h8300 ;; + h8500-*-*) sim_target=h8500 ;; z8k*-*-*) sim_target=z8k ;; + *) sim_target=none ;; esac configdirs=${sim_target} if [ ! -f ${srcdir}/${sim_target}/${sim_target}.mt ] ; then - if [ -n "${sim_target}" ] ; then - echo '***' No file ${srcdir}/${sim_target}/${sim_target}.mt 1>&2 - fi - echo '***' The simulator does not support target ${target} 1>&2 +target_makefile_frag= else target_makefile_frag=${sim_target}/${sim_target}.mt fi |