summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-04-09 19:12:42 -0600
committerMartin Roth <martinroth@google.com>2017-04-14 17:26:48 +0200
commitf411b701c5e65c9875b0ac1135fb64fbfc7f3d57 (patch)
treebfcd73485cee05bce5cb8ecd47a7f96f89a2a3ad /util
parentcfce7930520610dd91291ce54b3ef62ce7565707 (diff)
downloadcoreboot-f411b701c5e65c9875b0ac1135fb64fbfc7f3d57.tar.gz
coreboot-f411b701c5e65c9875b0ac1135fb64fbfc7f3d57.tar.bz2
coreboot-f411b701c5e65c9875b0ac1135fb64fbfc7f3d57.zip
util/blobtool & sconfig: Update GENPARSER Kconfig question
blobtool uses the same sort of update mechanism for the .l & .y files, so update the SCONFIG_GENPARSER Kconfig question to encompass both utilities. - Change the name to UTIL_GENPARSER, and update the help text. - Update sconfig's makefile. - Add the check to blobtool's makefile. - Update the makefiles to check for y, not defined. Change-Id: I6215791c9a019bce37d4a150b65d1fdbb9073156 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/19229 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util')
-rw-r--r--util/blobtool/Makefile.inc2
-rw-r--r--util/sconfig/Makefile.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/util/blobtool/Makefile.inc b/util/blobtool/Makefile.inc
index 74777a56cd52..34340412c8e7 100644
--- a/util/blobtool/Makefile.inc
+++ b/util/blobtool/Makefile.inc
@@ -16,7 +16,7 @@ $(objutil)/blobtool/%.o: $(objutil)/blobtool/%.c
printf " HOSTCC $(subst $(obj)/,,$(@))\n"
$(HOSTCC) $(BLOBTOOL_FLAGS) $(HOSTCFLAGS) -c -o $@ $<
-ifeq (0,1)
+ifeq ($(CONFIG_UTIL_GENPARSER),y)
$(top)/util/blobtool/blobtool.lex.c_shipped: $(top)/util/blobtool/blobtool.l
printf " FLEX $(subst $(top)/,,$(@))\n"
flex -L -o $@ $<
diff --git a/util/sconfig/Makefile.inc b/util/sconfig/Makefile.inc
index c6ba90f450de..76bbd45674e7 100644
--- a/util/sconfig/Makefile.inc
+++ b/util/sconfig/Makefile.inc
@@ -19,7 +19,7 @@ $(objutil)/sconfig/%.o: $(objutil)/sconfig/%.c
printf " HOSTCC $(subst $(obj)/,,$(@))\n"
$(HOSTCC) $(SCONFIGFLAGS) $(HOSTCFLAGS) -c -o $@ $<
-ifdef CONFIG_SCONFIG_GENPARSER
+ifeq ($(CONFIG_UTIL_GENPARSER),y)
$(top)/util/sconfig/lex.yy.c_shipped: $(top)/util/sconfig/sconfig.l
printf " FLEX $(subst $(top)/,,$(@))\n"
flex -L -o $@ $<