diff options
author | Joel Brobecker <brobecker@gnat.com> | 2006-02-10 20:56:15 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2006-02-10 20:56:15 +0000 |
commit | 1f82754b119f92e76335667e98be68ed79586a8e (patch) | |
tree | 5b8f4ba2f685f3ec83567d7a21bf5649b77ac3b6 /gdb/Makefile.in | |
parent | 577b70472619cc7e34c521607193a9a4e040221a (diff) | |
download | gdb-1f82754b119f92e76335667e98be68ed79586a8e.zip gdb-1f82754b119f92e76335667e98be68ed79586a8e.tar.gz gdb-1f82754b119f92e76335667e98be68ed79586a8e.tar.bz2 |
* defs.h (gdb_osabi): New enum value GDB_OSABI_AIX.
* osabi.c (gdb_osabi_name): Add name of new value GDB_OSABI_AIX.
* rs6000-tdep.h: New file.
* rs6000-tdep.c: Include "rs6000-tdep.h".
(rs6000_gdbarch_init): Remove enabling of software single step.
Will be done in the AIX-specific initialization routine.
* rs6000-aix-tdep.c: New file.
* config/powerpc/aix.mt (TDEPFILES): Add rs6000-aix-tdep.o.
* Makefile.in (rs6000_tdep_h): New variable.
(rs6000-tdep.o): Update dependencies.
(rs6000-aix-tdep.o): New rule.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 14188bd..16e7bf7 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -760,6 +760,7 @@ regset_h = regset.h remote_fileio_h = remote-fileio.h remote_h = remote.h remote_utils_h = remote-utils.h $(target_h) +rs6000_tdep_h = rs6000-tdep.h $(defs_h) s390_tdep_h = s390-tdep.h scm_lang_h = scm-lang.h $(scm_tags_h) scm_tags_h = scm-tags.h @@ -2488,7 +2489,8 @@ rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(symtab_h) \ $(reggroups_h) $(libbfd_h) $(coff_internal_h) $(libcoff_h) \ $(coff_xcoff_h) $(libxcoff_h) $(elf_bfd_h) $(solib_svr4_h) \ $(ppc_tdep_h) $(gdb_assert_h) $(dis_asm_h) $(trad_frame_h) \ - $(frame_unwind_h) $(frame_base_h) $(reggroups_h) + $(frame_unwind_h) $(frame_base_h) $(reggroups_h) $(rs6000_tdep_h) +rs6000-aix-tdep.o: rs6000-aix-tdep.c $(defs_h) $(osabi_h) $(rs6000_tdep_h) s390-nat.o: s390-nat.c $(defs_h) $(tm_h) $(regcache_h) $(inferior_h) \ $(s390_tdep_h) $(target_h) $(linux_nat_h) s390-tdep.o: s390-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) $(inferior_h) \ |