diff options
Diffstat (limited to 'testing/mozbase/mozprocess/tests/iniparser/platform.mk')
-rw-r--r-- | testing/mozbase/mozprocess/tests/iniparser/platform.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testing/mozbase/mozprocess/tests/iniparser/platform.mk b/testing/mozbase/mozprocess/tests/iniparser/platform.mk new file mode 100644 index 000000000..bff0296fe --- /dev/null +++ b/testing/mozbase/mozprocess/tests/iniparser/platform.mk @@ -0,0 +1,8 @@ +# System platform + +# determine if windows +WIN32 := 0 +UNAME := $(shell uname -s) +ifneq (,$(findstring MINGW32_NT,$(UNAME))) +WIN32 = 1 +endif |