From f845adc2448c56096f4ba64f676937d9fbdd061b Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Thu, 18 Jan 2024 12:34:16 -0700 Subject: [PATCH] lib,console,sbom: 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: I9eabe84d55fd9f434e4128866810c0e4970f2ae7 Reviewed-on: https://review.coreboot.org/c/coreboot/+/80081 Reviewed-by: Michael Niewöhner Tested-by: build bot (Jenkins) Reviewed-by: Maximilian Brune Reviewed-by: Felix Singer --- src/console/{Makefile.inc => Makefile.mk} | 0 src/lib/{Makefile.inc => Makefile.mk} | 0 src/lib/gnat/{Makefile.inc => Makefile.mk} | 0 src/sbom/{Makefile.inc => Makefile.mk} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename src/console/{Makefile.inc => Makefile.mk} (100%) rename src/lib/{Makefile.inc => Makefile.mk} (100%) rename src/lib/gnat/{Makefile.inc => Makefile.mk} (100%) rename src/sbom/{Makefile.inc => Makefile.mk} (100%) diff --git a/src/console/Makefile.inc b/src/console/Makefile.mk similarity index 100% rename from src/console/Makefile.inc rename to src/console/Makefile.mk diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.mk similarity index 100% rename from src/lib/Makefile.inc rename to src/lib/Makefile.mk diff --git a/src/lib/gnat/Makefile.inc b/src/lib/gnat/Makefile.mk similarity index 100% rename from src/lib/gnat/Makefile.inc rename to src/lib/gnat/Makefile.mk diff --git a/src/sbom/Makefile.inc b/src/sbom/Makefile.mk similarity index 100% rename from src/sbom/Makefile.inc rename to src/sbom/Makefile.mk