diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-01-12 21:54:13 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-01-12 21:54:13 +0000 |
commit | fa565c2b2dd66437423a588c87d1d67cf54e34bd (patch) | |
tree | 414465bee836b8777276519b8d1ecaf55dcdb97c /gdb/Makefile.in | |
parent | 82f5c14f4fab9af295a0469431772046d060174a (diff) | |
download | gdb-fa565c2b2dd66437423a588c87d1d67cf54e34bd.zip gdb-fa565c2b2dd66437423a588c87d1d67cf54e34bd.tar.gz gdb-fa565c2b2dd66437423a588c87d1d67cf54e34bd.tar.bz2 |
* i386fbsd-tdep.c: Update copyright year. Include "gdbcore.h",
"regcache.h", "gdb_assert.h" and "bsd-uthread.h".
(i386fbsd_jmp_buf_reg_offset): New variable.
(i386fbsd_supply_uthread, i386fbsd_collect_uthread): New
functions.
(i386fbsdaout_init_abi): Set supply_uthread and collect_uthread.
* Makefile.in (i386fbsd-tdep.o): Update dependency.
* config/i386/fbsd.mt (TDEPFILES): Add bsd-uthread.o.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 71ffbc5..66f189a 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -641,6 +641,7 @@ bfd_target_h = bfd-target.h block_h = block.h breakpoint_h = breakpoint.h $(frame_h) $(value_h) $(gdb_events_h) bsd_kvm_h = bsd-kvm.h +bsd_uthread_h = bsd-uthread.h buildsym_h = buildsym.h call_cmds_h = call-cmds.h charset_h = charset.h @@ -1367,7 +1368,7 @@ ALLDEPFILES = \ arm-linux-nat.c arm-linux-tdep.c arm-tdep.c \ armnbsd-nat.c armnbsd-tdep.c \ avr-tdep.c \ - bsd-kvm.c \ + bsd-uthread.c bsd-kvm.c \ coff-solib.c \ core-regset.c core-aout.c corelow.c \ dcache.c exec.c \ @@ -1757,6 +1758,10 @@ breakpoint.o: breakpoint.c $(defs_h) $(symtab_h) $(frame_h) $(breakpoint_h) \ $(objfiles_h) $(source_h) $(linespec_h) $(completer_h) $(gdb_h) \ $(ui_out_h) $(cli_script_h) $(gdb_assert_h) $(block_h) $(solist_h) \ $(observer_h) $(exceptions_h) $(gdb_events_h) +bsd-uthread.o: bsd-uthread.c $(defs_h) $(gdb_core_h) $(gdbthread_h) \ + $(inferior_h) $(objfiles_h) $(observer_h) $(regcache_h) \ + $(solist_h) $(symfile_h) $(target_h) $(gdb_assert_h) \ + $(gdb_obstack_h) $(bsd_uthread_h) bsd-kvm.o: bsd-kvm.c $(defs_h) $(cli_cmds_h) $(command_h) $(frame_h) \ $(regcache_h) $(target_h) $(value_h) $(gdbcore_h) $(gdb_assert_h) \ $(readline_h) $(bsd_kvm_h) @@ -2008,8 +2013,9 @@ i386-cygwin-tdep.o: i386-cygwin-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \ i386fbsd-nat.o: i386fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ $(target_h) $(fbsd_nat_h) $(i386_tdep_h) $(i386bsd_nat_h) \ $(bsd_kvm_h) -i386fbsd-tdep.o: i386fbsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \ - $(i386_tdep_h) $(i387_tdep_h) $(solib_svr4_h) +i386fbsd-tdep.o: i386fbsd-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \ + $(osabi_h) $(regcache_h) $(gdb_assert_h) $(i386_tdep_h) \ + $(i387_tdep_h) $(bsd_uthread_h) $(solib_svr4_h) i386gnu-nat.o: i386gnu-nat.c $(defs_h) $(inferior_h) $(floatformat_h) \ $(regcache_h) $(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) \ $(gnu_nat_h) $(i387_tdep_h) $(gregset_h) |