diff options
author | Pedro Alves <palves@redhat.com> | 2009-03-22 22:19:34 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2009-03-22 22:19:34 +0000 |
commit | 67cc2626af61ad9a85dbc775f06a2220baf7ed15 (patch) | |
tree | 77df49257320f7d2c01393374b174a9e9e53ffdb /gdb/gdbserver/Makefile.in | |
parent | 418c6cb3ce12492096c4f86c10227b9d9a0971f4 (diff) | |
download | gdb-67cc2626af61ad9a85dbc775f06a2220baf7ed15.zip gdb-67cc2626af61ad9a85dbc775f06a2220baf7ed15.tar.gz gdb-67cc2626af61ad9a85dbc775f06a2220baf7ed15.tar.bz2 |
* Makefile.in (linuw_low_h): Move higher.
(thread-db.o): Depend on $(linux_low_h).
Diffstat (limited to 'gdb/gdbserver/Makefile.in')
-rw-r--r-- | gdb/gdbserver/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 8274a3b..fe00ed9 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -265,6 +265,8 @@ regcache_h = $(srcdir)/regcache.h server_h = $(srcdir)/server.h $(regcache_h) config.h $(srcdir)/target.h \ $(srcdir)/mem-break.h $(srcdir)/../common/gdb_signals.h +linux_low_h = $(srcdir)/linux-low.h + hostio.o: hostio.c $(server_h) hostio-errno.o: hostio-errno.c $(server_h) inferiors.o: inferiors.c $(server_h) @@ -274,7 +276,7 @@ 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) $(gdb_proc_service_h) +thread-db.o: thread-db.c $(server_h) $(linux_low_h) $(gdb_proc_service_h) utils.o: utils.c $(server_h) gdbreplay.o: gdbreplay.c config.h @@ -286,8 +288,6 @@ memmem.o: ../gnulib/memmem.c i387-fp.o: i387-fp.c $(server_h) -linux_low_h = $(srcdir)/linux-low.h - linux-low.o: linux-low.c $(linux_low_h) $(server_h) $(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $< @USE_THREAD_DB@ |