diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-07-07 15:56:08 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-07-07 15:56:08 +0000 |
commit | c139e7d9ef481d8f804dbff43ec1dc9449bfc43e (patch) | |
tree | 7d778f9b8b5cc29c8352b228bcf9b8ca768f2c1e /gdb/Makefile.in | |
parent | 58111eb706ef184e316ba397ce27abbc03c244ae (diff) | |
download | gdb-c139e7d9ef481d8f804dbff43ec1dc9449bfc43e.zip gdb-c139e7d9ef481d8f804dbff43ec1dc9449bfc43e.tar.gz gdb-c139e7d9ef481d8f804dbff43ec1dc9449bfc43e.tar.bz2 |
* Makefile.in (sparc_tdep_h): New.
(sparc-linux-nat.o, sparc-nat.o, sparc-tdep.o, sparc64nbsd-nat.o)
(sparcnbsd-nat.o, sparcnbsd-tdep.o): Depend on $(sparc_tdep_h).
* sparc-linux-nat.c: Include "sparc-tdep.h".
* sparc-nat.c: Likewise.
* sparc-tdep.c: Likewise.
* sparc64nbsd-nat.c: Likewise.
* sparcnbsd-nat.c: Likewise.
* sparcnbsd-tdep.c: Likewise.
* sparc-tdep.h: New file.
* config/sparc/tm-sparc.h: Remove prototypes for sparc_y_regnum
and sparc_npc_regnum.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 3f83118..2ae35cb 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -734,6 +734,7 @@ solib_h = solib.h solist_h = solist.h somsolib_h = somsolib.h source_h = source.h +sparc_tdep_h = sparc-tdep.h sparcnbsd_tdep_h = sparcnbsd-tdep.h srec_h = srec.h stabsread_h = stabsread.h @@ -2256,15 +2257,17 @@ source.o: source.c $(defs_h) $(symtab_h) $(expression_h) $(language_h) \ $(gdb_string_h) $(gdb_stat_h) $(gdbcore_h) $(gdb_regex_h) \ $(symfile_h) $(objfiles_h) $(annotate_h) $(gdbtypes_h) $(linespec_h) \ $(filenames_h) $(completer_h) $(ui_out_h) $(readline_h) -sparc-linux-nat.o: sparc-linux-nat.c $(defs_h) $(regcache_h) $(gregset_h) +sparc-linux-nat.o: sparc-linux-nat.c $(defs_h) $(regcache_h) $(sparc_tdep_h) \ + $(gregset_h) sparc-nat.o: sparc-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \ - $(regcache_h) $(gdb_wait_h) + $(regcache_h) $(sparc_tdep_h) $(gdb_wait_h) sparc-stub.o: sparc-stub.c sparc-tdep.o: sparc-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) $(inferior_h) \ $(target_h) $(value_h) $(bfd_h) $(gdb_string_h) $(regcache_h) \ - $(osabi_h) $(gregset_h) $(gdbcore_h) $(gdb_assert_h) $(symfile_h) + $(osabi_h) $(gregset_h) $(gdbcore_h) $(gdb_assert_h) $(symfile_h) \ + $(sparc_tdep_h) sparc64nbsd-nat.o: sparc64nbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ - $(sparcnbsd_tdep_h) + $(sparcnbsd_tdep_h) $(sparc_tdep_h) sparcl-stub.o: sparcl-stub.c sparcl-tdep.o: sparcl-tdep.c $(defs_h) $(gdbcore_h) $(breakpoint_h) \ $(target_h) $(serial_h) $(regcache_h) @@ -2273,10 +2276,10 @@ sparclet-rom.o: sparclet-rom.c $(defs_h) $(gdbcore_h) $(target_h) \ $(regcache_h) sparclet-stub.o: sparclet-stub.c sparcnbsd-nat.o: sparcnbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ - $(sparcnbsd_tdep_h) + $(sparcnbsd_tdep_h) $(sparc_tdep_h) sparcnbsd-tdep.o: sparcnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \ $(target_h) $(value_h) $(osabi_h) $(sparcnbsd_tdep_h) $(nbsd_tdep_h) \ - $(solib_svr4_h) + $(solib_svr4_h) $(sparc_tdep_h) stabsread.o: stabsread.c $(defs_h) $(gdb_string_h) $(bfd_h) $(gdb_obstack_h) \ $(symtab_h) $(gdbtypes_h) $(expression_h) $(symfile_h) $(objfiles_h) \ $(aout_stab_gnu_h) $(libaout_h) $(aout_aout64_h) $(gdb_stabs_h) \ |