diff options
author | Steve Chamberlain <sac@cygnus> | 1995-05-24 21:45:01 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1995-05-24 21:45:01 +0000 |
commit | 2494eaf6fd2a4656ae9cf5a943ea8720cd86ecd4 (patch) | |
tree | d9c74c7864fab015b40b647ef6c4336bc5142fb7 /sim/arm/configure.in | |
parent | 1ff71ed037f735b59963372751bf73ab8214c4f3 (diff) | |
download | gdb-2494eaf6fd2a4656ae9cf5a943ea8720cd86ecd4.zip gdb-2494eaf6fd2a4656ae9cf5a943ea8720cd86ecd4.tar.gz gdb-2494eaf6fd2a4656ae9cf5a943ea8720cd86ecd4.tar.bz2 |
Wed May 24 14:37:31 1995 Steve Chamberlain <sac@slash.cygnus.com>
* New.
Diffstat (limited to 'sim/arm/configure.in')
-rw-r--r-- | sim/arm/configure.in | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sim/arm/configure.in b/sim/arm/configure.in new file mode 100644 index 0000000..bbe0360 --- /dev/null +++ b/sim/arm/configure.in @@ -0,0 +1,35 @@ +# 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=bag.c +srcname="arm 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 + files=../../bfd/hosts/std-host.h + echo "[${srcname} has no specific support for host ${host} -- using std-host]" +fi + +host_makefile_frag= +if [ -f ${srcdir}/../../bfd/config/${my_host}.mh ] ; then + host_makefile_frag=../../bfd/config/${my_host}.mh +fi + +# per-target: + + +case "${target}" in + arm-*-*) sim_target=arm ;; +esac + +target_makefile_frag=${sim_target}.mt |