This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH obv] Add missing POSTCOMPILE step to mi/ file generation rules


FYI, I just pushed this as obvious.

A little oversight from my part, it caused the Makefile not to track
the dependencies from mi/*.c files.

gdb/ChangeLog:

	* Makefile.in (%o: $(srcdir)/mi/%.c): Add missing POSTCOMPILE
	step.
---
 gdb/ChangeLog   | 5 +++++
 gdb/Makefile.in | 1 +
 2 files changed, 6 insertions(+)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 768a1b3..dfaddd1 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2016-11-21  Simon Marchi  <simon.marchi@ericsson.com>
+
+	* Makefile.in (%o: $(srcdir)/mi/%.c): Add missing POSTCOMPILE
+	step.
+
 2016-11-21  Yao Qi  <yao.qi@linaro.org>
 
 	* guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index b68cf58..3ea47a7 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1160,6 +1160,7 @@ all: gdb$(EXEEXT) $(CONFIG_ALL)
 
 %.o: $(srcdir)/mi/%.c
 	$(COMPILE) $<
+	$(POSTCOMPILE)
 
 %.o: ${srcdir}/nat/%.c
 	$(COMPILE) $<
-- 
2.10.2


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]