summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/mozprocess/tests/iniparser/platform.mk
blob: bff0296fe1d6b47719ad65db02ab4e8406f582bf (plain)
1
2
3
4
5
6
7
8
# System platform

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