diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2016-11-21 16:05:57 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2016-11-21 16:05:57 -0500 |
commit | d0de53e251ce60057d91536a4c71740b047be040 (patch) | |
tree | ff5797b0bd60b02b7e58d236fde048433627a76f /gdb/Makefile.in | |
parent | b32e1756d9932eebcca5f276290841a859ef2d6d (diff) | |
download | gdb-d0de53e251ce60057d91536a4c71740b047be040.zip gdb-d0de53e251ce60057d91536a4c71740b047be040.tar.gz gdb-d0de53e251ce60057d91536a4c71740b047be040.tar.bz2 |
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.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
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) $< |