diff options
author | K. Richard Pixley <rich@cygnus> | 1991-12-07 08:03:27 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-12-07 08:03:27 +0000 |
commit | bc0287661651904abf099d93efb7066a19aa4b7e (patch) | |
tree | a8c84a09d45b372c0152d9a111cad71f41f081d3 /gdb/configure.in | |
parent | 570e17331e8223647c2767ad45b60bf089080896 (diff) | |
download | gdb-bc0287661651904abf099d93efb7066a19aa4b7e.zip gdb-bc0287661651904abf099d93efb7066a19aa4b7e.tar.gz gdb-bc0287661651904abf099d93efb7066a19aa4b7e.tar.bz2 |
Sat Dec 7 00:00:15 1991 K. Richard Pixley (rich at rtl.cygnus.com)
* Makefile.in: install using INSTALL_PROGRAM and INSTALL_DATA.
added clean-info. added some standards.text support and made it
look like our other Makefiles.
* configure.in: mark this directory target dependent. configure
now runs entirely in objdir so make existence tests and
references against ${srcdir}.
Thu Dec 5 22:46:13 1991 K. Richard Pixley (rich at rtl.cygnus.com)
* Makefile.in: idestdir and ddestdir go away. Added copyrights
and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
and mandir now keyed off datadir by default.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 81d1193..e261aab 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -1,6 +1,8 @@ configdirs="doc" srcname="GDB" srctrigger=main.c +target_dependent=true + # per-host: # map host info into gdb names. @@ -134,13 +136,13 @@ arm | vax | merlin | none | np1 | pn | pyramid | tahoe) esac -if [ ! -f config/mh-${gdb_host} ]; then +if [ ! -f ${srcdir}/config/mh-${gdb_host} ]; then echo '***' "Gdb does not support host ${host}" 1>&2 exit 1 fi # We really shouldn't depend on there being a space after XM_FILE= ... -hostfile=`awk '$1 == "XM_FILE=" { print $2 }' <config/mh-${gdb_host}` +hostfile=`awk '$1 == "XM_FILE=" { print $2 }' <${srcdir}/config/mh-${gdb_host}` # per-target: @@ -275,7 +277,7 @@ rs6000) esac -if [ ! -f config/mt-${gdb_target} ]; then +if [ ! -f ${srcdir}/config/mt-${gdb_target} ]; then echo '***' "Gdb does not support target ${target}" 1>&2 exit 1 fi @@ -286,7 +288,7 @@ if [ -z "${removing}" ] ; then fi # We really shouldn't depend on there being a space after TM_FILE= ... -targetfile=`awk '$1 == "TM_FILE=" { print $2 }' <config/mt-${gdb_target}` +targetfile=`awk '$1 == "TM_FILE=" { print $2 }' <${srcdir}/config/mt-${gdb_target}` host_makefile_frag=config/mh-${gdb_host} target_makefile_frag=config/mt-${gdb_target} |