mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 20:40:30 +00:00
55e299e4b3
SVN r286 (trunk)
12 lines
158 B
Makefile
12 lines
158 B
Makefile
ifeq (Windows_NT,$(OS))
|
|
WIN=1
|
|
endif
|
|
ifeq (msys,$(OSTYPE))
|
|
WIN=1
|
|
endif
|
|
|
|
ifeq (1,$(WIN))
|
|
include Makefile.mgw
|
|
else
|
|
include Makefile.linux
|
|
endif
|