aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile4
-rw-r--r--src/Makefile4
2 files changed, 4 insertions, 4 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
diff --git a/src/Makefile b/src/Makefile
index 9dc75a1..8729c29 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -19,12 +19,12 @@ OPT_FLAGS=-O2
19 # -O0 -g 19 # -O0 -g
20 20
21_SO=so 21_SO=so
22ifeq "$(findstring MINGW32,$(shell uname -s))" "MINGW32" 22ifeq "$(findstring MINGW,$(shell uname -s))" "MINGW"
23 _SO=dll 23 _SO=dll
24endif 24endif
25 25
26ifeq "$(LUAROCKS)" "" 26ifeq "$(LUAROCKS)" ""
27 ifeq "$(findstring MINGW32,$(shell uname -s))" "MINGW32" 27 ifeq "$(findstring MINGW,$(shell uname -s))" "MINGW"
28 # MinGW MSYS on Windows 28 # MinGW MSYS on Windows
29 # 29 #
30 # - 'lua' and 'luac' expected to be on the path 30 # - 'lua' and 'luac' expected to be on the path