diff options
author | Steve Chamberlain <sac@cygnus> | 1995-01-16 00:53:05 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1995-01-16 00:53:05 +0000 |
commit | 321a78a5a059e2769166ccbb3de8233dfb0d33dc (patch) | |
tree | ac5e3410c3edb1161fffd7709a2699d16c199b26 /sim/w65/configure.in | |
parent | 506f4ede9c1e5ae444a496854fdec7db869a2f53 (diff) | |
download | gdb-321a78a5a059e2769166ccbb3de8233dfb0d33dc.zip gdb-321a78a5a059e2769166ccbb3de8233dfb0d33dc.tar.gz gdb-321a78a5a059e2769166ccbb3de8233dfb0d33dc.tar.bz2 |
New files.
Diffstat (limited to 'sim/w65/configure.in')
-rwxr-xr-x | sim/w65/configure.in | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sim/w65/configure.in b/sim/w65/configure.in new file mode 100755 index 0000000..9ae02275 --- /dev/null +++ b/sim/w65/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=gencode.c +srcname="w65sim" + +# 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: + + |