Fix make 3.81 build errors
[deliverable/binutils-gdb.git] / gdb / gdbserver / Makefile.in
index fcb6e1e817f521385de3986861c430c31a1b7eec..2dbf9ae63df15502d038bcd26af6963dfa87e739 100644 (file)
@@ -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)
 
This page took 0.025717 seconds and 4 git commands to generate.