diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-07-22 19:39:41 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-07-22 19:39:41 +0000 |
commit | a643e6260e2b817cffecd200214b1fceee802ab8 (patch) | |
tree | bb6274bcd78551b72293e2a00e83d0715fc544b8 /bfd/Makefile.in | |
parent | 88b457e59a1d0d51b2950e448c5e8deffc9b9b61 (diff) | |
download | gdb-a643e6260e2b817cffecd200214b1fceee802ab8.zip gdb-a643e6260e2b817cffecd200214b1fceee802ab8.tar.gz gdb-a643e6260e2b817cffecd200214b1fceee802ab8.tar.bz2 |
* hpux-core.c: New file; backend for HP/UX style core files.
* bfd.c (struct _bfd): Renamed hppa_core_data field to
hpux_core_data.
* bfd-in2.h: Updated.
* hppa.c (make_bfd_asection, hppa_core_file_p,
hppa_core_file_failing_command, hppa_core_file_failing_signal,
hppa_core_file_matches_executable_p): Moved into hpux-core.c.
Removed from target vector.
* libhppa.h (struct hppa_core_struct and accessor macros): Moved
into hpux-core.c.
* targets.c: If HPUX_CORE is defined, add hpux_core_vec to
target list.
* config/hp300.mh (HDEFINES): Set to -DHPUX_CORE.
(HDEPFILES): Set to hpux-core.o.
* config/hppabsd.mh, config/hppahpux.mh: Likewise.
* hosts/hp300.h (HOST_HP300HPUX): Define.
* Makefile.in (OPTIONAL_BACKENDS): Added sco-core.o,
aix386-core.o, hpux-core.o.
(sco-core.o, aix386-core.o, hpux-core.o): New dependencies.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index c65c4c8..68d3fe4 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -102,7 +102,7 @@ BFD64_BACKENDS = \ nlm64.o nlm64-gen.o \ aout64.o demo64.o -OPTIONAL_BACKENDS = trad-core.o +OPTIONAL_BACKENDS = trad-core.o sco-core.o aix386-core.o hpux-core.o # These are defined by configure.in: # WORDSIZE=32 @@ -452,6 +452,11 @@ reloc.o : reloc.c $(BFD_H) \ trad-core.o : trad-core.c $(BFD_H) $(INCDIR)/obstack.h \ libbfd.h libaout.h +sco-core.o : sco-core.c $(BFD_H) libbfd.h libcoff.h \ + $(INCDIR)/obstack.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h +aix386-core.o : aix386-core.c $(BFD_H) libbfd.h libcoff.h \ + $(INCDIR)/obstack.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h +hpux-core.o : hpux-core.c $(BFD_H) libbfd.h libhppa.h coff-msym.o: coff-msym.c $(BFD_H) $(INCDIR)/coff/ecoff-ext.h \ $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h |