From 0e9915f867ec6b752973dbc3c062dec73fc483b6 Mon Sep 17 00:00:00 2001 From: Timothy Liu Date: Mon, 16 Oct 2023 09:34:01 +0800 Subject: [PATCH] build(autotools): :construction_worker: rename `Makefile.inc.am` to `Makefile.inc` --- .gitattributes | 5 ----- Makefile.am | 6 +++--- examples/{Makefile.inc.am => Makefile.inc} | 0 include/simple_logger/{Makefile.inc.am => Makefile.inc} | 0 third_party/{Makefile.inc.am => Makefile.inc} | 0 5 files changed, 3 insertions(+), 8 deletions(-) rename examples/{Makefile.inc.am => Makefile.inc} (100%) rename include/simple_logger/{Makefile.inc.am => Makefile.inc} (100%) rename third_party/{Makefile.inc.am => Makefile.inc} (100%) diff --git a/.gitattributes b/.gitattributes index 964cff1..bc49c71 100644 --- a/.gitattributes +++ b/.gitattributes @@ -43,8 +43,3 @@ # in Unix via a file share from Windows, the scripts will work. ############################################################################### *.sh text eol=lf - -############################################################################### -# Correct Github language recognition -############################################################################### -Makefile.inc.am linguist-language=Makefile diff --git a/Makefile.am b/Makefile.am index 0d3333b..7c900a7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,9 +1,9 @@ noinst_PROGRAMS = noinst_HEADERS = -include third_party/Makefile.inc.am -include include/simple_logger/Makefile.inc.am +include third_party/Makefile.inc +include include/simple_logger/Makefile.inc if BUILD_TEST_EXAMPLES -include examples/Makefile.inc.am +include examples/Makefile.inc endif diff --git a/examples/Makefile.inc.am b/examples/Makefile.inc similarity index 100% rename from examples/Makefile.inc.am rename to examples/Makefile.inc diff --git a/include/simple_logger/Makefile.inc.am b/include/simple_logger/Makefile.inc similarity index 100% rename from include/simple_logger/Makefile.inc.am rename to include/simple_logger/Makefile.inc diff --git a/third_party/Makefile.inc.am b/third_party/Makefile.inc similarity index 100% rename from third_party/Makefile.inc.am rename to third_party/Makefile.inc