mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-06 13:01:14 +00:00
95180e18e6
already. For some reason, a stock install of MinGW doesn't define it, but if you compile your own GCC, it installs headers that do. - Changed the way that the makefiles detect MSYS to a method that should be more foolproof, thanks to changes in MSYS. SVN r737 (trunk)
12 lines
194 B
Makefile
12 lines
194 B
Makefile
ifeq (Windows_NT,$(OS))
|
|
WIN=1
|
|
endif
|
|
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
|
WIN=1
|
|
endif
|
|
|
|
ifeq (1,$(WIN))
|
|
include Makefile.mgw
|
|
else
|
|
include Makefile.linux
|
|
endif
|