aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2020-04-22 11:26:16 +0200
committerBenoit Germain <bnt.germain@gmail.com>2020-04-22 11:26:16 +0200
commita24e54d7d506d4ac38516143b25593922a9959cf (patch)
tree43be32f77cdb0c29128fa5c95af3d8d3b06dc26f /Makefile
parent237c642fb50ee0d4c777fc9cd0e7a5b0ead7cabd (diff)
downloadlanes-a24e54d7d506d4ac38516143b25593922a9959cf.tar.gz
lanes-a24e54d7d506d4ac38516143b25593922a9959cf.tar.bz2
lanes-a24e54d7d506d4ac38516143b25593922a9959cf.zip
Makefile detect MinGW 64 as well as MinGW 32
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7d2cf17..1e9f70e 100644
--- a/Makefile
+++ b/Makefile
@@ -20,8 +20,8 @@ N=1000
20_TARGET_DIR=src/lanes 20_TARGET_DIR=src/lanes
21TIME=time 21TIME=time
22 22
23ifeq "$(findstring MINGW32,$(shell uname -s))" "MINGW32" 23ifeq "$(findstring MINGW,$(shell uname -s))" "MINGW"
24 # MinGW MSYS on XP 24 # MinGW MSYS on Windows
25 # 25 #
26 _SO=dll 26 _SO=dll
27 _LUAEXT=.exe 27 _LUAEXT=.exe