aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/gdbserver/Makefile.in')
-rw-r--r--gdb/gdbserver/Makefile.in26
1 files changed, 13 insertions, 13 deletions
diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in
index fcb6e1e..2dbf9ae 100644
--- a/gdb/gdbserver/Makefile.in
+++ b/gdb/gdbserver/Makefile.in
@@ -537,11 +537,15 @@ ax.o: ax.c
$(COMPILE) $(WARN_CFLAGS_NO_FORMAT) $<
$(POSTCOMPILE)
-arch/%.o: ../arch/%.c
- $(COMPILE) $<
+# Rules for objects that go in the in-process agent.
+
+arch/%-ipa.o: ../arch/%.c
+ $(IPAGENT_COMPILE) $<
$(POSTCOMPILE)
-# Rules for objects that go in the in-process agent.
+common/%-ipa.o: ../common/%.c
+ $(IPAGENT_COMPILE) $<
+ $(POSTCOMPILE)
%-ipa.o: %-generated.c
$(IPAGENT_COMPILE) $<
@@ -562,25 +566,21 @@ arch/%.o: ../arch/%.c
$(IPAGENT_COMPILE) $<
$(POSTCOMPILE)
-common/%-ipa.o: ../common/%.c
- $(IPAGENT_COMPILE) $<
- $(POSTCOMPILE)
+# Rules for objects that go in the gdbserver binary.
-arch/%-ipa.o: ../arch/%.c
- $(IPAGENT_COMPILE) $<
+arch/%.o: ../arch/%.c
+ $(COMPILE) $<
$(POSTCOMPILE)
-# Rules for objects that go in the gdbserver binary.
-
-%.o: %-generated.c
+common/%.o: ../common/%.c
$(COMPILE) $<
$(POSTCOMPILE)
-%.o: %.c
+%.o: %-generated.c
$(COMPILE) $<
$(POSTCOMPILE)
-common/%.o: ../common/%.c
+%.o: %.c
$(COMPILE) $<
$(POSTCOMPILE)