mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
8 lines
139 B
Makefile
8 lines
139 B
Makefile
# System platform
|
|
|
|
# determine if windows
|
|
WIN32 := 0
|
|
UNAME := $(shell uname -s)
|
|
ifneq (,$(findstring MINGW32_NT,$(UNAME)))
|
|
WIN32 = 1
|
|
endif
|