Detect msys by OSTYPE as well

This commit is contained in:
Alexander S. Aganichev
2003-12-22 08:02:19 +00:00
parent 3b37290f9c
commit 49adbfab72
5 changed files with 45 additions and 5 deletions

View File

@@ -1,5 +1,13 @@
# -*- makefile -*-
ifeq ($(TERM),msys)
MSYS=true
else
ifeq ($(OSTYPE),msys)
MSYS=true
endif
endif
TOP=..
SHORTTARGET=rddt
TARGET=rddt
@@ -10,7 +18,7 @@ else
ifeq ($(TERM),cygwin)
STDLIBS=-luser32
else
ifeq ($(TERM),msys)
ifdef MSYS
STDLIBS=-luser32
endif
endif