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/cbfstool | |
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/cbfstool')
-rw-r--r-- | util/cbfstool/Makefile | 2 | ||||
-rw-r--r-- | util/cbfstool/Makefile.mk (renamed from util/cbfstool/Makefile.inc) | 4 | ||||
-rw-r--r-- | util/cbfstool/bpdt_formats/Makefile.mk (renamed from util/cbfstool/bpdt_formats/Makefile.inc) | 0 | ||||
-rw-r--r-- | util/cbfstool/fpt_formats/Makefile.mk (renamed from util/cbfstool/fpt_formats/Makefile.inc) | 0 |
4 files changed, 3 insertions, 3 deletions
diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile index 034aca26a6..8dde77ba52 100644 --- a/util/cbfstool/Makefile +++ b/util/cbfstool/Makefile @@ -91,7 +91,7 @@ ifneq ($(V),1) .SILENT: endif -include Makefile.inc +include Makefile.mk $(objutil)/cbfstool/cbfstool.o: $(VBOOT_SOURCE)/firmware/include/vb2_sha.h $(objutil)/cbfstool/elogtool.o: $(VBOOT_SOURCE)/firmware/include/vb2_sha.h diff --git a/util/cbfstool/Makefile.inc b/util/cbfstool/Makefile.mk index 80aab6720d..8577874044 100644 --- a/util/cbfstool/Makefile.inc +++ b/util/cbfstool/Makefile.mk @@ -98,14 +98,14 @@ elogobj += elog.o elogobj += common.o elogobj += flashrom.o -include $(top)/util/cbfstool/fpt_formats/Makefile.inc +include $(top)/util/cbfstool/fpt_formats/Makefile.mk cse_fpt_obj := cse_fpt_obj += cse_fpt.o cse_fpt_obj += common.o cse_fpt_obj += cse_helpers.o cse_fpt_obj += $(foreach var, $(fpt_formats_obj), $(var)) -include $(top)/util/cbfstool/bpdt_formats/Makefile.inc +include $(top)/util/cbfstool/bpdt_formats/Makefile.mk cse_serger_obj := cse_serger_obj += cse_serger.o cse_serger_obj += common.o diff --git a/util/cbfstool/bpdt_formats/Makefile.inc b/util/cbfstool/bpdt_formats/Makefile.mk index a3be46be5d..a3be46be5d 100644 --- a/util/cbfstool/bpdt_formats/Makefile.inc +++ b/util/cbfstool/bpdt_formats/Makefile.mk diff --git a/util/cbfstool/fpt_formats/Makefile.inc b/util/cbfstool/fpt_formats/Makefile.mk index 11cb30d274..11cb30d274 100644 --- a/util/cbfstool/fpt_formats/Makefile.inc +++ b/util/cbfstool/fpt_formats/Makefile.mk |