This is the mail archive of the gdb-cvs@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]

[binutils-gdb] Add missing POSTCOMPILE step to mi/ file generation rules


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=d0de53e251ce60057d91536a4c71740b047be040

commit d0de53e251ce60057d91536a4c71740b047be040
Author: Simon Marchi <simon.marchi@ericsson.com>
Date:   Mon Nov 21 16:05:57 2016 -0500

    Add missing POSTCOMPILE step to mi/ file generation rules
    
    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.

Diff:
---
 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) $<


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