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:
parent
7a5eb3993c
commit
3a40e9eb36
1 changed files with 4 additions and 4 deletions
8
Makefile
8
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)
|
||||
|
|
Loading…
Add table
Reference in a new issue