diff options
author | Jeff Law <law@redhat.com> | 1994-08-19 16:48:51 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-08-19 16:48:51 +0000 |
commit | 98c0e047bdd9407ada8b5ba18f89418bb6351614 (patch) | |
tree | 5c19e92f9d98edd62f0de6229f6cddcd51f80fb4 /gdb/Makefile.in | |
parent | 36d4f4d8516c9293d633ad65dadf8e2f52c7a7b1 (diff) | |
download | gdb-98c0e047bdd9407ada8b5ba18f89418bb6351614.zip gdb-98c0e047bdd9407ada8b5ba18f89418bb6351614.tar.gz gdb-98c0e047bdd9407ada8b5ba18f89418bb6351614.tar.bz2 |
* Makefile.in (ALLDEPFILES): Add hpread.c.
(hpread.o): Add dependencies.
* somread.c: Do not include "aout/aout64.h". SOM has nothing to
do with a.out.
(BYTES_IN_WORD): Delete.
(som_symfile_read): Call hpread_build_psymtabs to build any
minimal symbols based on the HP C native debug symbols.
(som_symfile_finish): Call hpread_symfile_finish.
(som_symfile_init): Call hpread_symfile_init.
* config/pa/tm-hppa.h (HPREAD_ADJUST_STACK_ADDRESS): Define.
* hppa-tdep.c (hpread_adjust_stack_address): New function.
* config/pa/hppabsd.mh (NATDEPFILES): Add hpread.o
* config/pa/hppahpux.mh (NATDEPFILES): Likewise.
* hpread.c: New file.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index cb54b34..213f294 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -860,6 +860,11 @@ unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET : # These are things from config/*/*.m? fragments. There is no good reason # why they are separate from the lists of files above. +HPREAD_SOURCE= +# start-sanitize-hpread +HPREAD_SOURCE=hpread.c +# end-sanitize-hpread + ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \ 29k-share/udi/udi2go32.c \ a29k-pinsn.c a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \ @@ -882,7 +887,7 @@ ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \ nindy-share/Onindy.c nindy-share/nindy.c \ nindy-share/ttyflush.c nindy-tdep.c \ ns32k-pinsn.c ns32km3-nat.c osfsolib.c \ - somread.c procfs.c pyr-pinsn.c pyr-tdep.c pyr-xdep.c \ + somread.c $(HPREAD_SOURCE) procfs.c pyr-pinsn.c pyr-tdep.c pyr-xdep.c \ remote-adapt.c remote-bug.c remote-e7000.c remote-eb.c remote-es.c \ remote-hms.c remote-mips.c \ remote-mm.c remote-mon.c remote-nindy.c remote-os9k.c remote-sim.c \ @@ -1240,6 +1245,11 @@ osfsolib.o: osfsolib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \ somread.o: somread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \ gdb-stabs.h objfiles.h symfile.h $(symtab_h) +# start-sanitize-hpread +hpread.o: hpread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \ + gdb-stabs.h objfiles.h symfile.h $(symtab_h) +# end-sanitize-hpread + parse.o: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \ $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) |