From d0037efda9e9ce855279d21b891d29edbfb664fb Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Thu, 18 Jan 2024 12:38:34 -0700 Subject: soc/*: Rename Makefiles from .inc to .mk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Change-Id: I6f502b97864fd7782e514ee2daa902d2081633a2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/80074 Reviewed-by: Maximilian Brune Reviewed-by: Michael Niewöhner Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans Reviewed-by: Felix Singer --- src/soc/ucb/riscv/Makefile.inc | 10 ---------- src/soc/ucb/riscv/Makefile.mk | 10 ++++++++++ 2 files changed, 10 insertions(+), 10 deletions(-) delete mode 100644 src/soc/ucb/riscv/Makefile.inc create mode 100644 src/soc/ucb/riscv/Makefile.mk (limited to 'src/soc/ucb/riscv') diff --git a/src/soc/ucb/riscv/Makefile.inc b/src/soc/ucb/riscv/Makefile.inc deleted file mode 100644 index 08fa740a2e0d..000000000000 --- a/src/soc/ucb/riscv/Makefile.inc +++ /dev/null @@ -1,10 +0,0 @@ -## SPDX-License-Identifier: GPL-2.0-only -ifeq ($(CONFIG_SOC_UCB_RISCV),y) - -romstage-y += cbmem.c - -ramstage-y += cbmem.c - -ramstage-y += chip.c - -endif diff --git a/src/soc/ucb/riscv/Makefile.mk b/src/soc/ucb/riscv/Makefile.mk new file mode 100644 index 000000000000..08fa740a2e0d --- /dev/null +++ b/src/soc/ucb/riscv/Makefile.mk @@ -0,0 +1,10 @@ +## SPDX-License-Identifier: GPL-2.0-only +ifeq ($(CONFIG_SOC_UCB_RISCV),y) + +romstage-y += cbmem.c + +ramstage-y += cbmem.c + +ramstage-y += chip.c + +endif -- cgit v1.2.3