From b231645131286c117a340f72a90f9054700a6455 Mon Sep 17 00:00:00 2001 From: Carsten Hartenfels Date: Sun, 23 Jun 2019 13:48:02 +0200 Subject: [PATCH] Capitalize Makefiles, sometimes matters on Linux Lowercased Makefiles don't get picked up by the .gitignore for example, which always looks odd after configuring. This commit just puts a capital 'M' in front, like it's common. --- makefile.am => Makefile.am | 0 configure.ac | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename makefile.am => Makefile.am (100%) diff --git a/makefile.am b/Makefile.am similarity index 100% rename from makefile.am rename to Makefile.am diff --git a/configure.ac b/configure.ac index 8ee6f0d..004d5bc 100644 --- a/configure.ac +++ b/configure.ac @@ -57,6 +57,6 @@ AC_TYPE_UINT8_T # Checks for library functions. AC_FUNC_ERROR_AT_LINE -AC_CONFIG_FILES([makefile cglm.pc]) +AC_CONFIG_FILES([Makefile cglm.pc]) AC_OUTPUT