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>
This commit is contained in:
Martin Roth 2024-01-18 18:46:58 -07:00 committed by Felix Singer
parent ba3a719668
commit 1f30b244b2
19 changed files with 8 additions and 8 deletions

View file

@ -768,7 +768,7 @@ gitconfig:
install-git-commit-clangfmt: install-git-commit-clangfmt:
cp util/scripts/prepare-commit-msg.clang-format .git/hooks/prepare-commit-msg cp util/scripts/prepare-commit-msg.clang-format .git/hooks/prepare-commit-msg
include util/crossgcc/Makefile.inc include util/crossgcc/Makefile.mk
.PHONY: tools .PHONY: tools
tools: $(objutil)/kconfig/conf $(objutil)/kconfig/toada $(CBFSTOOL) $(objutil)/cbfstool/cbfs-compression-tool $(FMAPTOOL) $(RMODTOOL) $(IFWITOOL) $(objutil)/nvramtool/nvramtool $(objutil)/sconfig/sconfig $(IFDTOOL) $(CBOOTIMAGE) $(AMDFWTOOL) $(AMDCOMPRESS) $(FUTILITY) $(BINCFG) $(IFITTOOL) $(objutil)/supermicro/smcbiosinfo $(CSE_FPT) $(CSE_SERGER) $(AMDFWREAD) tools: $(objutil)/kconfig/conf $(objutil)/kconfig/toada $(CBFSTOOL) $(objutil)/cbfstool/cbfs-compression-tool $(FMAPTOOL) $(RMODTOOL) $(IFWITOOL) $(objutil)/nvramtool/nvramtool $(objutil)/sconfig/sconfig $(IFDTOOL) $(CBOOTIMAGE) $(AMDFWTOOL) $(AMDCOMPRESS) $(FUTILITY) $(BINCFG) $(IFITTOOL) $(objutil)/supermicro/smcbiosinfo $(CSE_FPT) $(CSE_SERGER) $(AMDFWREAD)

View file

@ -91,7 +91,7 @@ ifneq ($(V),1)
.SILENT: .SILENT:
endif endif
include Makefile.inc include Makefile.mk
$(objutil)/cbfstool/cbfstool.o: $(VBOOT_SOURCE)/firmware/include/vb2_sha.h $(objutil)/cbfstool/cbfstool.o: $(VBOOT_SOURCE)/firmware/include/vb2_sha.h
$(objutil)/cbfstool/elogtool.o: $(VBOOT_SOURCE)/firmware/include/vb2_sha.h $(objutil)/cbfstool/elogtool.o: $(VBOOT_SOURCE)/firmware/include/vb2_sha.h

View file

@ -98,14 +98,14 @@ elogobj += elog.o
elogobj += common.o elogobj += common.o
elogobj += flashrom.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_obj += cse_fpt.o cse_fpt_obj += cse_fpt.o
cse_fpt_obj += common.o cse_fpt_obj += common.o
cse_fpt_obj += cse_helpers.o cse_fpt_obj += cse_helpers.o
cse_fpt_obj += $(foreach var, $(fpt_formats_obj), $(var)) 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_obj += cse_serger.o cse_serger_obj += cse_serger.o
cse_serger_obj += common.o cse_serger_obj += common.o

View file

@ -23,4 +23,4 @@ ifneq ($(Q),)
endif endif
endif endif
include Makefile.inc include Makefile.mk

View file

@ -10,7 +10,7 @@ HOSTCC ?= $(CC)
HOSTCFLAGS ?= $(CFLAGS) HOSTCFLAGS ?= $(CFLAGS)
top := ../.. top := ../..
objutil := .. objutil := ..
include Makefile.inc include Makefile.mk
PROGRAM=$(objutil)/ifdtool/ifdtool PROGRAM=$(objutil)/ifdtool/ifdtool

View file

@ -2,10 +2,10 @@
# This automatically adds a `qemu` make target if a compatible # This automatically adds a `qemu` make target if a compatible
# configuration is selected. There are some notable variables # configuration is selected. There are some notable variables
# that can be set or adapted in `Makefile.inc` files, the make # that can be set or adapted in `Makefile.mk` files, the make
# command line or the environment: # command line or the environment:
# #
# Primarily for `Makefile.inc` use: # Primarily for `Makefile.mk` use:
# QEMU-y the QEMU executable # QEMU-y the QEMU executable
# QEMU_CFG-y a QEMU config that sets the available default devices, # QEMU_CFG-y a QEMU config that sets the available default devices,
# used to run more comprehensive tests by default, # used to run more comprehensive tests by default,