diff options
author | Mark Kettenis <kettenis@gnu.org> | 2006-08-02 21:32:37 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2006-08-02 21:32:37 +0000 |
commit | 47ccd04848b5dac105ea353a2a98019c49d3000a (patch) | |
tree | feb00c96dc77ff51bfc35e08e335eb9aa66b65b0 /gdb/Makefile.in | |
parent | 9d7cbccda0d0b223261e33efb609a7a43401ec5e (diff) | |
download | gdb-47ccd04848b5dac105ea353a2a98019c49d3000a.zip gdb-47ccd04848b5dac105ea353a2a98019c49d3000a.tar.gz gdb-47ccd04848b5dac105ea353a2a98019c49d3000a.tar.bz2 |
* arm-tdep.h: Add multiple inclusion protection.
(struct gdbarch): Add forward declaration.
(armobsd_regset_from_core_section): New prototype.
* armbsd-tdep.c: New file.
* armobsd-tdep.c: Include "gdb_string.h".
(armobsd_init_abi): Set regset_from_core_section.
(armobsd_core_osabi_sniffer): New function.
(_initialize_armobsd_tdep): Register armobsd_core_osabi_sniffer.
* Makefile.in (ALLDEPFILES): Add armbsd-tdep.c.
(armbsd-tdep.o): New dependency.
(armnbsd-tdep.o): Update dependencies.
* config/arm/obsd.mt (TDEPFILES): Add armbsd-tdep.o and corelow.o.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 3f3673f..f114df8 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1418,7 +1418,7 @@ ALLDEPFILES = \ amd64-linux-nat.c amd64-linux-tdep.c \ amd64-sol2-tdep.c \ arm-linux-nat.c arm-linux-tdep.c arm-tdep.c \ - armnbsd-nat.c armnbsd-tdep.c armobsd-tdep.c \ + armnbsd-nat.c armbsd-tdep.c armnbsd-tdep.c armobsd-tdep.c \ avr-tdep.c \ bsd-uthread.c bsd-kvm.c \ coff-solib.c \ @@ -1778,10 +1778,13 @@ arm-linux-tdep.o: arm-linux-tdep.c $(defs_h) $(target_h) $(value_h) \ $(glibc_tdep_h) $(trad_frame_h) $(tramp_frame_h) $(gdb_string_h) armnbsd-nat.o: armnbsd-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) \ $(regcache_h) $(target_h) $(gdb_string_h) $(arm_tdep_h) $(inf_ptrace_h) +armbsd-tdep.o: armbsd-tdep.c $(defs_h) $(osabi_h) $(regcache_h) $(regset_h) \ + $(gdb_assert_h) $(gdb_string_h) $(arm_tdep_h) armnbsd-tdep.o: armnbsd-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \ $(arm_tdep_h) $(solib_svr4_h) armobsd-tdep.o: armobsd-tdep.c $(defs_h) $(osabi_h) $(trad_frame_h) \ - $(tramp_frame_h) $(obsd_tdep_h) $(arm_tdep_h) $(solib_svr4_h) + $(tramp_frame_h) $(gdb_string_h) $(obsd_tdep_h) $(arm_tdep_h) \ + $(solib_svr4_h) arm-tdep.o: arm-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcmd_h) \ $(gdbcore_h) $(gdb_string_h) $(dis_asm_h) $(regcache_h) \ $(doublest_h) $(value_h) $(arch_utils_h) $(osabi_h) \ |