From: Simon Marchi Date: Mon, 13 Mar 2017 22:44:05 +0000 (-0400) Subject: gdbserver: Use pattern rule for the remaining %-ipa.o objects X-Git-Tag: gdb-8.0-release~411 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1a01e7c6b0eaed1bfe70d48692e1103c6e9ee2d9;p=thirdparty%2Fbinutils-gdb.git gdbserver: Use pattern rule for the remaining %-ipa.o objects gdb/gdbserver/ChangeLog: * Makefile.in (%-ipa.o: %-ipa.c): New rule. (ax-ipa.o: ax.c): Remove. (linux-i386-ipa.o: linux-i386-ipa.c): Remove. (linux-amd64-ipa.o: linux-amd64-ipa.c): Remove. (linux-aarch64-ipa.o: linux-aarch64-ipa.c): Remove. (linux-s390-ipa.o: linux-s390-ipa.c): Remove. (linux-ppc-ipa.o: linux-ppc-ipa.c): Remove. --- diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 9d56d0dac36..14594df9e5a 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,13 @@ +2017-03-13 Simon Marchi + + * Makefile.in (%-ipa.o: %-ipa.c): New rule. + (ax-ipa.o: ax.c): Remove. + (linux-i386-ipa.o: linux-i386-ipa.c): Remove. + (linux-amd64-ipa.o: linux-amd64-ipa.c): Remove. + (linux-aarch64-ipa.o: linux-aarch64-ipa.c): Remove. + (linux-s390-ipa.o: linux-s390-ipa.c): Remove. + (linux-ppc-ipa.o: linux-ppc-ipa.c): Remove. + 2017-03-13 Simon Marchi * Makefile.in (%-ipa.o: ../common/%.c): New rule. diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 87dbad14f04..9935012eb8c 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -540,26 +540,11 @@ IPAGENT_CFLAGS = $(INTERNAL_CFLAGS) $(UST_CFLAGS) \ IPAGENT_COMPILE = $(COMPILE.pre) $(IPAGENT_CFLAGS) $(COMPILE.post) -# In-process agent object rules +# Rules for special cases. + ax-ipa.o: ax.c $(IPAGENT_COMPILE) $(WARN_CFLAGS_NO_FORMAT) $< $(POSTCOMPILE) -linux-i386-ipa.o: linux-i386-ipa.c - $(IPAGENT_COMPILE) $< - $(POSTCOMPILE) -linux-amd64-ipa.o: linux-amd64-ipa.c - $(IPAGENT_COMPILE) $< - $(POSTCOMPILE) -linux-aarch64-ipa.o: linux-aarch64-ipa.c - $(IPAGENT_COMPILE) $< - $(POSTCOMPILE) -linux-s390-ipa.o: linux-s390-ipa.c - $(IPAGENT_COMPILE) $< - $(POSTCOMPILE) -linux-ppc-ipa.o: linux-ppc-ipa.c - $(IPAGENT_COMPILE) $< - $(POSTCOMPILE) - ax.o: ax.c $(COMPILE) $(WARN_CFLAGS_NO_FORMAT) $< @@ -571,6 +556,17 @@ ax.o: ax.c $(IPAGENT_COMPILE) $< $(POSTCOMPILE) +# Note: Between two matching pattern rules, GNU Make 3.81 chooses the first one. +# Therefore, this one needs to be before "%.o: %.c" for it to be considered for +# files such as linux-amd64-ipa.o generated from linux-amd64-ipa.c. +# +# Later versions of GNU Make choose the rule with the shortest stem, so it would +# work in any order. + +%-ipa.o: %-ipa.c + $(IPAGENT_COMPILE) $< + $(POSTCOMPILE) + %-ipa.o: ../common/%.c $(IPAGENT_COMPILE) $< $(POSTCOMPILE)