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.
This commit is contained in:
Clownacy 2019-09-04 14:01:51 +00:00
parent 7a5eb3993c
commit 3a40e9eb36

View file

@ -8,12 +8,12 @@ ASSETS_DIRECTORY = assets
ifeq ($(RELEASE), 1) ifeq ($(RELEASE), 1)
CXXFLAGS = -O3 CXXFLAGS = -O3
LDFLAGS = -s LDFLAGS = -s
FILENAME_DEF = CSE2 FILENAME_DEF = CSE2.exe
DOCONFIG_FILENAME_DEF = DoConfig DOCONFIG_FILENAME_DEF = DoConfig.exe
else else
CXXFLAGS = -Og -ggdb3 CXXFLAGS = -Og -ggdb3
FILENAME_DEF = CSE2_debug FILENAME_DEF = CSE2_debug.exe
DOCONFIG_FILENAME_DEF = DoConfig_debug DOCONFIG_FILENAME_DEF = DoConfig_debug.exe
endif endif
ifeq ($(JAPANESE), 1) ifeq ($(JAPANESE), 1)