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=ged
TARGET=golded3
@@ -14,7 +22,7 @@ ifeq ($(TERM),cygwin)
STDLIBS=-luser32 -lwinmm
GLIBS+=glibc
else
ifeq ($(TERM),msys)
ifdef MSYS
STDLIBS=-luser32 -lwinmm
GLIBS+=glibc
endif