diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-05-24 21:00:09 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-05-24 21:00:09 +0000 |
commit | bf2ca189e878405c46e2f3208f2b80d1ac331a53 (patch) | |
tree | e69a2c30c66edbd5612b0a3ceb31440eb7665f07 /gdb/Makefile.in | |
parent | 80fadb1152b01dde83abb97f9aeba468f9a3c2bc (diff) | |
download | gdb-bf2ca189e878405c46e2f3208f2b80d1ac331a53.zip gdb-bf2ca189e878405c46e2f3208f2b80d1ac331a53.tar.gz gdb-bf2ca189e878405c46e2f3208f2b80d1ac331a53.tar.bz2 |
Add OpenBSD/m88k support.
* NEWS (New native configurations): Mention OpenBSD/m88k.
* m88k-tdep.c, m88k-tdep.h, m88kbsd-nat.c, config/m88k/nm-obsd.h,
config/m88k/obsd.mh, config/m88k/obsd.mt: New files.
* Makefile.in (m88k_tdep_h): New variable.
(ALLDEPFILES): Add m88k-tdep.c and m88kbsd-nat.c.
(m88kbsd-nat.o, m88k-tdep.o): New dependencies.
* configure.host: Add m88*-*-openbsd*.
* configure.tgt: Add m88*-*-openbsd*.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index ec41654..46a5aea 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -707,6 +707,7 @@ linespec_h = linespec.h linux_nat_h = linux-nat.h $(target_h) m2_lang_h = m2-lang.h m68k_tdep_h = m68k-tdep.h +m88k_tdep_h = m88k-tdep.h macroexp_h = macroexp.h macroscope_h = macroscope.h $(macrotab_h) $(symtab_h) macrotab_h = macrotab.h @@ -1345,6 +1346,7 @@ ALLDEPFILES = \ m68hc11-tdep.c \ m68k-tdep.c \ m68kbsd-nat.c m68kbsd-tdep.c \ + m88k-tdep.c m88kbsd-nat.c \ mcore-tdep.c \ mips-linux-nat.c mips-linux-tdep.c \ mips-nat.c \ @@ -2032,6 +2034,12 @@ m68k-tdep.o: m68k-tdep.c $(defs_h) $(dwarf2_frame_h) $(frame_h) \ $(gdbcore_h) $(value_h) $(gdb_string_h) $(gdb_assert_h) \ $(inferior_h) $(regcache_h) $(arch_utils_h) $(osabi_h) $(dis_asm_h) \ $(m68k_tdep_h) $(gregset_h) +m88kbsd-nat.o: m88kbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ + $(gdb_assert_h) $(m88k_tdep_h) +m88k-tdep.o: m88k-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) $(frame_h) \ + $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) $(gdbtypes_h) \ + $(regcache_h) $(regset_h) $(symtab_h) $(trad_frame_h) $(value_h) \ + $(gdb_string_h) $(gdb_string_h) $(m88k_tdep_h) macrocmd.o: macrocmd.c $(defs_h) $(macrotab_h) $(macroexp_h) $(macroscope_h) \ $(command_h) $(gdbcmd_h) macroexp.o: macroexp.c $(defs_h) $(gdb_obstack_h) $(bcache_h) $(macrotab_h) \ |