Mypal/testing/mozbase/mozprocess/tests/iniparser/platform.mk

9 lines
139 B
Makefile

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