diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-04-30 23:28:52 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-04-30 23:28:52 +0000 |
commit | 8f2d3ea0006e69b704208e27f31171c135a6e473 (patch) | |
tree | deddc5745c7b13b7654fb8987bb86362dbbaf8b1 /gdb/Makefile.in | |
parent | c40f49a4cd5125955faee6a98c692e40d12793bb (diff) | |
download | gdb-8f2d3ea0006e69b704208e27f31171c135a6e473.zip gdb-8f2d3ea0006e69b704208e27f31171c135a6e473.tar.gz gdb-8f2d3ea0006e69b704208e27f31171c135a6e473.tar.bz2 |
Add OpenBSD/m68k support.
* NEWS (New native configurations): Mention OpenBSD/m68k.
* m68kbsd-tdep.c: New file.
* m68kbsd-nat.c: New file.
* Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
(m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
* configure.host: Add m68k-*-openbsd.
* configure.tgt: Add m68k-*-openbsd.
* config/m68k/tm-obsd.h: New file.
* config/m68k/obsd.mt: New file.
* config/m68k/obsd.mh: New file.
* config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
m68kbsd-tdep.c.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 0262409..b4fd728 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1340,6 +1340,7 @@ ALLDEPFILES = \ lynx-nat.c m3-nat.c \ m68hc11-tdep.c \ m68k-tdep.c \ + m68kbsd-nat.c m68kbsd-tdep.c \ mcore-tdep.c \ mips-linux-nat.c mips-linux-tdep.c \ mips-nat.c \ @@ -2017,6 +2018,11 @@ m68klinux-tdep.o: m68klinux-tdep.c $(defs_h) $(gdbcore_h) $(doublest_h) \ $(floatformat_h) $(frame_h) $(target_h) $(gdb_string_h) \ $(gdbtypes_h) $(osabi_h) $(regcache_h) $(objfiles_h) $(symtab_h) \ $(m68k_tdep_h) +m68kbsd-nat.o: m68kbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ + $(gdb_assert_h) $(m68k_tdep_h) +m68kbsd-tdep.o: m68kbsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \ + $(regcache_h) $(regset_h) $(gdb_assert_h) $(gdb_string_h) \ + $(m68k_tdep_h) $(solib_svr4_h) m68knbsd-nat.o: m68knbsd-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \ $(regcache_h) m68knbsd-tdep.o: m68knbsd-tdep.c $(defs_h) $(gdbtypes_h) $(regcache_h) |