diff options
author | Steve Chamberlain <sac@cygnus> | 1993-04-27 01:02:38 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1993-04-27 01:02:38 +0000 |
commit | 594266fc8a1c695af84c188a3cc84fa18af52584 (patch) | |
tree | 78182b7e5bdf1c7c996eeda85e2b14bdccf3d2c8 /sim/sh/configure.in | |
parent | 31568a6f4188b24e173dc22c02dbf9b3d85dd402 (diff) | |
download | gdb-594266fc8a1c695af84c188a3cc84fa18af52584.zip gdb-594266fc8a1c695af84c188a3cc84fa18af52584.tar.gz gdb-594266fc8a1c695af84c188a3cc84fa18af52584.tar.bz2 |
New stuff for SH.
Diffstat (limited to 'sim/sh/configure.in')
-rw-r--r-- | sim/sh/configure.in | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sim/sh/configure.in b/sim/sh/configure.in new file mode 100644 index 0000000..22bc10a --- /dev/null +++ b/sim/sh/configure.in @@ -0,0 +1,33 @@ +# 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=compile.c +srcname="shsim" + +# 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: + + |