diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-06-14 22:30:41 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-06-14 22:30:41 +0000 |
commit | 5179e78f8bb61cc27284146d64b0f74b1c7db623 (patch) | |
tree | 47bf18c7628235c0955ec58325f877a26c5732d3 /gdb/Makefile.in | |
parent | edf393acc9a1db260b52316bc7840f1d0c28cba1 (diff) | |
download | gdb-5179e78f8bb61cc27284146d64b0f74b1c7db623.zip gdb-5179e78f8bb61cc27284146d64b0f74b1c7db623.tar.gz gdb-5179e78f8bb61cc27284146d64b0f74b1c7db623.tar.bz2 |
* Makefile.in (i386_linux_tdep_h): Define.
(i386_tdep_h, i387_tdep_h): Define.
(i386-linux-nat.o): Add $(i386_linux_tdep_h),
$(i386_tdep_h) and $(i387_tdep_h).
* i386-linux-nat.c: Include "i386-linux-tdep.h".
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index a95117e..7b353bf 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -637,6 +637,9 @@ gdbcmd_h = gdbcmd.h $(command_h) $(ui_out_h) gdbcore_h = gdbcore.h $(bfd_h) gdbthread_h = gdbthread.h $(breakpoint_h) gdbtypes_h = gdbtypes.h +i386_tdep_h = i386-tdep.h +i386_linux_tdep_h = i386-linux-tdep.h +i387_tdep_h = i387-tdep.h inf_loop_h = inf-loop.h inferior_h = inferior.h $(breakpoint_h) language_h = language.h @@ -1677,7 +1680,8 @@ i386v-nat.o: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \ $(inferior_h) $(language_h) $(target_h) i386-linux-nat.o: i386-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \ - $(symtab_h) $(symfile_h) $(objfiles_h) $(regcache_h) + $(symtab_h) $(symfile_h) $(objfiles_h) $(regcache_h) \ + $(i386_linux_tdep_h) $(i386_tdep_h) $(i387_tdep_h) i386-linux-tdep.o: i386-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \ $(value_h) $(regcache_h) |