diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-05-22 20:36:19 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-05-22 20:36:19 +0000 |
commit | 2b73aeb128527461d3647f36fe1d5ee700fbd384 (patch) | |
tree | 6cee0fb770e1944e5e73b5d66548acd894dd88ef /gdb/Makefile.in | |
parent | 5238cf52e73e106f9e11a30e2fc32e8ed0f4d288 (diff) | |
download | gdb-2b73aeb128527461d3647f36fe1d5ee700fbd384.zip gdb-2b73aeb128527461d3647f36fe1d5ee700fbd384.tar.gz gdb-2b73aeb128527461d3647f36fe1d5ee700fbd384.tar.bz2 |
* armnbsd-nat.c: Include "gdb_string.h" and "inf_ptrace.h".
Reorder includes. Don't require FETCH_INFERIOR_REGISTERS to be
defined.
(armnbsd_fetch_registers): Rename from armnbsd_fetch_registers.
Make static.
(armnbsd_store_registers): Rename from armnbsd_store_registers.
Make static.
(_initialize_arm_netbsd_nat): Construct and add target vector.
* Makefile.in (armnbsd-nat.o): Update dependencies.
* config/arm/nbsdaout.mh (NATDEPFILES): Remove infptrace.o and
intarg.o, add inf-ptrace.o.
(NAT_FILE): Set to solib.h.
* config/arm/nbsdelf.mh (NATDEPFILES): Remove infptrace.o and
inftarg.o, add inf-ptrace.o.
(NAT_FILE): Remove.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index c8ce2fe..eea8b14 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1739,8 +1739,8 @@ arm-linux-tdep.o: arm-linux-tdep.c $(defs_h) $(target_h) $(value_h) \ $(gdbtypes_h) $(floatformat_h) $(gdbcore_h) $(frame_h) $(regcache_h) \ $(doublest_h) $(solib_svr4_h) $(osabi_h) $(arm_tdep_h) \ $(glibc_tdep_h) -armnbsd-nat.o: armnbsd-nat.c $(defs_h) $(arm_tdep_h) $(inferior_h) \ - $(regcache_h) $(gdbcore_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) armnbsd-tdep.o: armnbsd-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \ $(arm_tdep_h) $(nbsd_tdep_h) $(solib_svr4_h) arm-tdep.o: arm-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcmd_h) \ |