mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-06 07:41:55 +00:00
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
|