diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-09-08 11:26:21 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-09-08 11:26:21 +0000 |
commit | 55ff77acc2da4c8aeb9086e43e80989b7ffa076e (patch) | |
tree | 70c4739276402110e3ba5faad263d56f53cb6c04 /gdb/Makefile.in | |
parent | d8a2d9e7ba999f27a6116a72291a7e1603cd321d (diff) | |
download | gdb-55ff77acc2da4c8aeb9086e43e80989b7ffa076e.zip gdb-55ff77acc2da4c8aeb9086e43e80989b7ffa076e.tar.gz gdb-55ff77acc2da4c8aeb9086e43e80989b7ffa076e.tar.bz2 |
* Makefile.in (ALLDEPFILES): Add sh64-tdep.c.
(sh64-tdep.o): Add dependencies.
* configure.tgt: Add FIXME to sh-*-linux*.
* sh-tdep.c: Move sh64 support to sh64-tdep.c.
(sh_gdbarch_init): Always set correct sh_show_regs function
pointer. Call sh64_gdbarch_init() if machine type is sh5.
* sh-tdep.h: Move sh64 support to sh64-tdep.c.
* sh64-tdep.c: New file, containing all sh64 related code from
sh-tdep.c.
* config/sh/embed.mt (TDEPFILES): Add sh64-tdep.o.
* config/sh/linux.mt (TDEPFILES): Ditto.
* config/sh/nbsd.mt (TDEPFILES): Ditto.
* config/sh/tm-sh.h: Drop REGISTER_TYPE definition.
* config/sh/wince.mt (TDEPFILES): Ditto.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 082856d..c93f2fd 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1295,7 +1295,7 @@ ALLDEPFILES = \ rs6000-nat.c rs6000-tdep.c \ s390-tdep.c s390-nat.c \ ser-go32.c ser-pipe.c ser-tcp.c \ - sh-tdep.c shnbsd-tdep.c shnbsd-nat.c \ + sh-tdep.c sh64-tdep.c shnbsd-tdep.c shnbsd-nat.c \ solib.c solib-irix.c solib-svr4.c solib-sunos.c sparc-linux-nat.c \ sparc-nat.c \ sparc64nbsd-nat.c sparcnbsd-nat.c sparcnbsd-tdep.c \ @@ -2261,6 +2261,11 @@ sh-tdep.o: sh-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(symfile_h) \ $(inferior_h) $(gdb_string_h) $(arch_utils_h) $(floatformat_h) \ $(regcache_h) $(doublest_h) $(osabi_h) $(sh_tdep_h) $(elf_bfd_h) \ $(solib_svr4_h) $(elf_sh_h) $(gdb_sim_sh_h) +sh64-tdep.o: sh64-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(symfile_h) \ + $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) $(value_h) $(dis_asm_h) \ + $(inferior_h) $(gdb_string_h) $(arch_utils_h) $(floatformat_h) \ + $(regcache_h) $(doublest_h) $(osabi_h) $(elf_bfd_h) \ + $(solib_svr4_h) $(elf_sh_h) $(gdb_sim_sh_h) solib-aix5.o: solib-aix5.c $(defs_h) $(gdb_string_h) $(elf_external_h) \ $(symtab_h) $(bfd_h) $(symfile_h) $(objfiles_h) $(gdbcore_h) \ $(command_h) $(target_h) $(frame_h) $(gdb_regex_h) $(inferior_h) \ |