From a24e54d7d506d4ac38516143b25593922a9959cf Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Wed, 22 Apr 2020 11:26:16 +0200 Subject: Makefile detect MinGW 64 as well as MinGW 32 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7d2cf17..1e9f70e 100644 --- a/Makefile +++ b/Makefile @@ -20,8 +20,8 @@ N=1000 _TARGET_DIR=src/lanes TIME=time -ifeq "$(findstring MINGW32,$(shell uname -s))" "MINGW32" - # MinGW MSYS on XP +ifeq "$(findstring MINGW,$(shell uname -s))" "MINGW" + # MinGW MSYS on Windows # _SO=dll _LUAEXT=.exe -- cgit v1.2.3-55-g6feb