mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-19 09:58:41 +00:00
9 lines
139 B
Makefile
9 lines
139 B
Makefile
# System platform
|
|
|
|
# determine if windows
|
|
WIN32 := 0
|
|
UNAME := $(shell uname -s)
|
|
ifneq (,$(findstring MINGW32_NT,$(UNAME)))
|
|
WIN32 = 1
|
|
endif
|