Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10168
-gerrit
commit 57fc3e047a9128478590ac039fd9697ea1f9913b Author: Patrick Georgi patrick@georgi-clan.de Date: Sun May 10 17:58:48 2015 +0200
kconfig: properly build parser when LKC_GENPARSER=1
The rules didn't actually trigger to rebuild the parser.
Change-Id: Id51aaa9816b069204c119622d60f7b728b762cad Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- util/kconfig/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/util/kconfig/Makefile b/util/kconfig/Makefile index 009e245..f6ce818 100644 --- a/util/kconfig/Makefile +++ b/util/kconfig/Makefile @@ -327,11 +327,15 @@ $(obj)/zconf.hash.c: $(src)/zconf.gperf
%.tab.c: %.y bison -t -l -b $* -p $(notdir $*) $< - cp $@ $@_shipped + +%.tab.c_shipped: %.tab.c + cp $< $@
%.lex.c: %.l flex -L -P$(notdir $*) -o$@ $< - cp $@ $@_shipped + +%.lex.c_shipped: %.lex.c + cp $< $@
%.hash.c: %.gperf gperf < $< > $@