mirror of https://github.com/wb2osz/direwolf.git
Detect MINGW, as well as CYGWIN, for Windows build environment. #76
This commit is contained in:
parent
e0c2c31181
commit
edaf661bb1
4
Makefile
4
Makefile
|
@ -5,6 +5,10 @@
|
||||||
# equal to some value. Your mileage my vary.
|
# equal to some value. Your mileage my vary.
|
||||||
|
|
||||||
win := $(shell uname | grep CYGWIN)
|
win := $(shell uname | grep CYGWIN)
|
||||||
|
ifeq ($(win),)
|
||||||
|
win := $(shell uname | grep MINGW)
|
||||||
|
endif
|
||||||
|
|
||||||
dar := $(shell uname | grep Darwin)
|
dar := $(shell uname | grep Darwin)
|
||||||
|
|
||||||
ifneq ($(win),)
|
ifneq ($(win),)
|
||||||
|
|
Loading…
Reference in New Issue