diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-10-03 23:21:14 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-10-03 23:21:14 +0200 |
commit | 41bb9104804fa6f75e8862a1240c705d4fb29412 (patch) | |
tree | f0866533c02c1c9e5e6b05a4888e1552b070213e | |
parent | 32775e64bab47dc798f7d62953f93840acdcfa02 (diff) |
Making sure the mingw32 makefile works on all msys distributions.
-rw-r--r-- | Makefile.mingw32 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.mingw32 b/Makefile.mingw32 index 70210b8..3695f48 100644 --- a/Makefile.mingw32 +++ b/Makefile.mingw32 @@ -1,11 +1,12 @@ SYSTEM=$(shell uname) +SUBSYSTEM=$(shell uname | cut -f 1 -d_ ) ifeq ($(SYSTEM),Darwin) CC = i386-mingw32-gcc CXX = i386-mingw32-g++ LD = i386-mingw32-g++ STRIP = i386-mingw32-strip --strip-unneeded else -ifeq ($(SYSTEM),MINGW32_NT-5.1) +ifeq ($(SUBSYSTEM),MINGW32) CC = gcc CXX = g++ LD = g++ |