diff options
author | Yao Qi <yao@codesourcery.com> | 2011-05-26 15:49:26 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2011-05-26 15:49:26 +0000 |
commit | 6938fd346aa1288a347422e96a6bc50f2673a51f (patch) | |
tree | 62ad86915825a8abf1081f298b323c0ab635e1f4 /gdb/gdbserver/Makefile.in | |
parent | 9da8c2a0faa07d6b876397bdb3e87509897c68cd (diff) | |
download | gdb-6938fd346aa1288a347422e96a6bc50f2673a51f.zip gdb-6938fd346aa1288a347422e96a6bc50f2673a51f.tar.gz gdb-6938fd346aa1288a347422e96a6bc50f2673a51f.tar.bz2 |
2011-05-26 Yao Qi <yao@codesourcery.com>
gdb/
* gdb_thread_db.h: Delete. Move to ...
* common/gdb_thread_db.h: ... here.
gdb/gdbserver/
* Makefile.in (thread-db.o): Track dependence to
common/gdb_thread_db.h.
* thread-db.c: include gdb_thread_db.h from right place.
Diffstat (limited to 'gdb/gdbserver/Makefile.in')
-rw-r--r-- | gdb/gdbserver/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 1e3781f..095c706 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -339,6 +339,8 @@ linux_low_h = $(srcdir)/linux-low.h linux_ptrace_h = $(srcdir)/../common/linux-ptrace.h +gdb_thread_db_h = $(srcdir)/../common/gdb_thread_db.h + lynx_low_h = $(srcdir)/lynx-low.h $(srcdir)/server.h nto_low_h = $(srcdir)/nto-low.h @@ -379,7 +381,8 @@ regcache.o: regcache.c $(server_h) $(regdef_h) remote-utils.o: remote-utils.c terminal.h $(server_h) server.o: server.c $(server_h) target.o: target.c $(server_h) -thread-db.o: thread-db.c $(server_h) $(linux_low_h) $(gdb_proc_service_h) +thread-db.o: thread-db.c $(server_h) $(linux_low_h) $(gdb_proc_service_h) \ + $(gdb_thread_db_h) tracepoint.o: tracepoint.c $(server_h) $(srcdir)/../common/ax.def utils.o: utils.c $(server_h) gdbreplay.o: gdbreplay.c config.h |