Skip to content

Commit edaf661

Browse files
committed
Detect MINGW, as well as CYGWIN, for Windows build environment. #76
1 parent e0c2c31 commit edaf661

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
# equal to some value. Your mileage my vary.
66

77
win := $(shell uname | grep CYGWIN)
8+
ifeq ($(win),)
9+
win := $(shell uname | grep MINGW)
10+
endif
11+
812
dar := $(shell uname | grep Darwin)
913

1014
ifneq ($(win),)

0 commit comments

Comments
 (0)