diff options
author | Fred Fish <fnf@specifix.com> | 1996-04-12 06:14:46 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-04-12 06:14:46 +0000 |
commit | d8efbc667982b811782f23666ac6ce50a47848a1 (patch) | |
tree | 801850d99112529ffcfe489ddcedaee1d834ebf5 /gdb/Makefile.in | |
parent | 4eaf7c0a947cb8972ccaa8a7ee18147ace5a1155 (diff) | |
download | gdb-d8efbc667982b811782f23666ac6ce50a47848a1.zip gdb-d8efbc667982b811782f23666ac6ce50a47848a1.tar.gz gdb-d8efbc667982b811782f23666ac6ce50a47848a1.tar.bz2 |
From: Miles Bader <miles@gnu.ai.mit.edu>
* configure.in (AC_CHECK_HEADERS): check for endian.h.
Use AC_CHECK_TOOL to find AR & RANLIB. Add AC_PROG_AWK.
Add host & target cases for i[345]86-*-gnu*.
* config.in: Regenerate with autoheader.
* configure: Regenerate with autoconf.
* Makefile.in (AR, AWK): Set from corresponding autoconf substs.
(init.c): Don't scan mig-generated files.
* defs.h (endian.h): Include if HAVE_ENDIAN_H defined.
* config/nm-m3.h (ATTACH_NO_WAIT): Define.
* infcmd.c (attach_command): Use "#ifndef ATTACH_NO_WAIT"
rather than "#ifndef MACH".
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 0e5bb90..24d8d86 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -48,9 +48,10 @@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ -AR = ar +AR = @AR@ AR_FLAGS = qv RANLIB = @RANLIB@ +AWK = @AWK@ # Flags that describe where you can find the termcap library. # This can be overridden in the host Makefile fragment file. @@ -587,6 +588,7 @@ init.c: $(OBS) $(TSOBS) -e '/udip2soc.o/d' \ -e '/udi2go32.o/d' \ -e '/version.o/d' \ + -e '/^[a-z0-9A-Z_]*_[SU].o/d' \ -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \ -e 's/\.o/.c/'` ; \ case $$filename in \ |