diff options
author | Steve Chamberlain <sac@cygnus> | 1992-12-22 21:59:06 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-12-22 21:59:06 +0000 |
commit | a154eea78c02c4b46d00a326ff14fddb6fd6d286 (patch) | |
tree | 29e0342689f8c2c18f073555af7b2643352bfb15 /sim/h8300/configure.in | |
parent | a9b37611e7f9dd8948c486b6ccecf148c27234a1 (diff) | |
download | gdb-a154eea78c02c4b46d00a326ff14fddb6fd6d286.zip gdb-a154eea78c02c4b46d00a326ff14fddb6fd6d286.tar.gz gdb-a154eea78c02c4b46d00a326ff14fddb6fd6d286.tar.bz2 |
H8/300 simulator
Diffstat (limited to 'sim/h8300/configure.in')
-rw-r--r-- | sim/h8300/configure.in | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sim/h8300/configure.in b/sim/h8300/configure.in new file mode 100644 index 0000000..8d7b0aa --- /dev/null +++ b/sim/h8300/configure.in @@ -0,0 +1,31 @@ +# This file is a shell script that supplies the information necessary +# to tailor a template configure script into the configure script +# appropriate for this directory. For more information, check any +# existing configure script. + +srctrigger=writecode.c +srcname="sim" + +# per-host: + +. ${srcdir}/../bfd/configure.host + +# Set up to make a link between the host's include file and "sysdep.h". +files="../bfd/hosts/${my_host}.h" + +links="sysdep.h" + +if [ ! -f ${srcdir}/${files} ] ; then + if [ -n "${my_host}" ] ; then + echo '***' No file ${srcdir}/${files} 1>&2 + fi + echo '***' ${srcname} does not support host ${host} 1>&2 + exit 1 +fi + +host_makefile_frag= +if [ -f ${srcdir}/../bfd/config/${my_host}.mh ] ; then + host_makefile_frag=../bfd/config/${my_host}.mh +fi + +# per-target: |