diff options
author | Martin Roth <gaumless@gmail.com> | 2024-01-18 18:46:58 -0700 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-01-26 12:43:18 +0000 |
commit | 1f30b244b296a131f4eaf95962bab048f8b3d481 (patch) | |
tree | 390c0dd1e31cd11ce4f2b664445f445d1f1f8996 /util/sconfig/Makefile.mk | |
parent | ba3a71966876aad1c720d7c385dd4058f844f5e8 (diff) |
util: Rename Makefiles from .inc to .mk
The .inc suffix is confusing to various tools as it's not specific to
Makefiles. This means that editors don't recognize the files, and don't
open them with highlighting and any other specific editor functionality.
This issue is also seen in the release notes generation script where
Makefiles get renamed before running cloc.
Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: I434940ebb46853980596f7ad55d27a62c90280fa
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80123
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'util/sconfig/Makefile.mk')
-rw-r--r-- | util/sconfig/Makefile.mk | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/util/sconfig/Makefile.mk b/util/sconfig/Makefile.mk new file mode 100644 index 0000000000..c3da29d199 --- /dev/null +++ b/util/sconfig/Makefile.mk @@ -0,0 +1,47 @@ +## SPDX-License-Identifier: GPL-2.0-only +sconfigobj := +sconfigobj += lex.yy.o +sconfigobj += sconfig.tab.o +sconfigobj += main.o + +SCONFIGFLAGS += -I$(top)/util/sconfig -I$(objutil)/sconfig +SCONFIGFLAGS += -I$(top)/src/commonlib/include -I$(top)/src/commonlib/bsd/include + +$(objutil)/sconfig: + mkdir -p $@ + +$(objutil)/sconfig/.generated: $(objutil)/sconfig + touch $@ + +$(objutil)/sconfig/%.o: util/sconfig/%.c | $(objutil)/sconfig/.generated + printf " HOSTCC $(subst $(obj)/,,$(@))\n" + $(HOSTCC) $(SCONFIGFLAGS) $(HOSTCFLAGS) -c -o $@ $< + +$(objutil)/sconfig/%.o: $(objutil)/sconfig/%.c + printf " HOSTCC $(subst $(obj)/,,$(@))\n" + $(HOSTCC) $(SCONFIGFLAGS) $(HOSTCFLAGS) -c -o $@ $< + +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 $@ $< + +# the .c rule also creates .h +$(top)/util/sconfig/sconfig.tab.h_shipped: $(top)/util/sconfig/sconfig.tab.c_shipped +$(top)/util/sconfig/sconfig.tab.c_shipped: $(top)/util/sconfig/sconfig.y + printf " BISON $(subst $(top)/,,$(@))\n" + bison -l --defines=$(top)/util/sconfig/sconfig.tab.h_shipped -o $@ $< + +endif + +$(objutil)/sconfig/lex.yy.o: $(objutil)/sconfig/sconfig.tab.h + +$(objutil)/sconfig/%: $(top)/util/sconfig/%_shipped + mkdir -p $(dir $@) + cp $< $@ + +$(objutil)/sconfig/sconfig: $(addprefix $(objutil)/sconfig/,$(sconfigobj)) + printf " HOSTCC $(subst $(obj)/,,$(@)) (link)\n" + $(HOSTCC) $(SCONFIGFLAGS) -o $@ $(addprefix $(objutil)/sconfig/,$(sconfigobj)) + +$(addprefix $(objutil)/sconfig/,$(sconfigobj)) : $(objutil)/sconfig/sconfig.tab.h $(objutil)/sconfig/sconfig.tab.c $(objutil)/sconfig/lex.yy.c |