diff options
author | K. Richard Pixley <rich@cygnus> | 1991-08-14 22:10:12 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-08-14 22:10:12 +0000 |
commit | 21c9f6261afc0643366f45a612a38f35fe527327 (patch) | |
tree | 965d54547b225542e3551929956d73016ebfd559 /bfd/configure.in | |
parent | 1fc712b856b9a6d36d0b2e29815897a4f74f6bc9 (diff) | |
download | gdb-21c9f6261afc0643366f45a612a38f35fe527327.zip gdb-21c9f6261afc0643366f45a612a38f35fe527327.tar.gz gdb-21c9f6261afc0643366f45a612a38f35fe527327.tar.bz2 |
Added fatal checks for missing host and target makefile fragments.
Diffstat (limited to 'bfd/configure.in')
-rw-r--r-- | bfd/configure.in | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bfd/configure.in b/bfd/configure.in new file mode 100644 index 0000000..43f5acd --- /dev/null +++ b/bfd/configure.in @@ -0,0 +1,25 @@ +# 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=libbfd.c +srcname="bfd" +commontargets=true + +# per-host: + +if [ ! -f config/hmake-${host} ] ; then + echo No such host available: ${host} + exit 1 +fi + +# per-target: + +if [ ! -f config/tmake-${target} ] ; then + echo No such target available: ${target} + exit 1 +fi + +files= +links= |