The problem arises when makefile needs be run on different OS and various setting should be properly set up (escaping, path separator, etc) depending on OS.
The first approach was to use Windows COMSPEC:
ifneq ($(COMSPEC)$(ComSpec),)
## in windows
else
## in linux
endif
This is false positive for Cygwin, because it sees Windows’ environment variables and detects Cygwin as Windows.
Then we tried Linux PWD:
ifeq ($(PWD),)
## in windows
else
## in linux, cygwin
endif
However, as a result of integration of off-site tool we have PWD set in windows (one of the perl’s modules). So, the detection fails again.
I wonder, what is the best approach to differentiate between Cygwin, Linux, Windows using environment variables?
Cygwin and (tested on Ubuntu) Linux provide an
$OSTYPEenvironment variable, set tocygwinfor Cygwin andlinux-gnufor (Ubuntu) Linux.Windows does not have this variable, and so it appears to be the only one you’ll need. I suppose it’s possible that your Linux doesn’t provide it, in which case you can use
$OSTYPEto distinguish between Windows and Cygwin and then fall back tounamefor Cygwin vs. Linux.