From 3a40e9eb363b8c8955f79f15b982f5cb13c6dc3b Mon Sep 17 00:00:00 2001 From: Clownacy Date: Wed, 4 Sep 2019 14:01:51 +0000 Subject: [PATCH] Add .exe file extensions to the Makefile 32-bit MinGW-w64 has this stupid thing where the Makefile can't detect that executable depedencies may end with '.exe', causing it to regenerate them every time it's ran. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 288bdcd1..6d1229c2 100644 --- a/Makefile +++ b/Makefile @@ -8,12 +8,12 @@ ASSETS_DIRECTORY = assets ifeq ($(RELEASE), 1) CXXFLAGS = -O3 LDFLAGS = -s - FILENAME_DEF = CSE2 - DOCONFIG_FILENAME_DEF = DoConfig + FILENAME_DEF = CSE2.exe + DOCONFIG_FILENAME_DEF = DoConfig.exe else CXXFLAGS = -Og -ggdb3 - FILENAME_DEF = CSE2_debug - DOCONFIG_FILENAME_DEF = DoConfig_debug + FILENAME_DEF = CSE2_debug.exe + DOCONFIG_FILENAME_DEF = DoConfig_debug.exe endif ifeq ($(JAPANESE), 1)