Files
UXP-Fixed/testing/mozbase/mozprocess/tests/iniparser/platform.mk
T
2018-02-02 04:16:08 -05:00

9 lines
139 B
Makefile

# System platform
# determine if windows
WIN32 := 0
UNAME := $(shell uname -s)
ifneq (,$(findstring MINGW32_NT,$(UNAME)))
WIN32 = 1
endif