summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-07-30 22:12:56 +0300
committerTor Lillqvist <tml@iki.fi>2011-07-30 22:12:56 +0300
commit72d6f61ef3a48d25ca2bcc6d0372f38d8697323a (patch)
treeb216de46a017f815b0303e58451b79f6b577a552
parentfb497d56ed6baed2f79e2bfbac171756478fd407 (diff)
Include the iOS or Android platform files when appropriate
-rw-r--r--solenv/gbuild/gbuild_simple.mk32
1 files changed, 11 insertions, 21 deletions
diff --git a/solenv/gbuild/gbuild_simple.mk b/solenv/gbuild/gbuild_simple.mk
index 38d545a41..0d056dac9 100644
--- a/solenv/gbuild/gbuild_simple.mk
+++ b/solenv/gbuild/gbuild_simple.mk
@@ -37,40 +37,30 @@ include $(GBUILDDIR)/Helper.mk
ifeq ($(OS),LINUX)
include $(GBUILDDIR)/platform/linux.mk
-else
-ifeq ($(OS),WNT)
+else ifeq ($(OS),WNT)
ifneq ($(USE_MINGW),)
include $(GBUILDDIR)/platform/winmingw.mk
else
include $(GBUILDDIR)/platform/windows.mk
endif
-else
-ifeq ($(OS),SOLARIS)
+else ifeq ($(OS),SOLARIS)
include $(GBUILDDIR)/platform/solaris.mk
-else
-ifeq ($(OS),MACOSX)
+else ifeq ($(OS),MACOSX)
include $(GBUILDDIR)/platform/macosx.mk
-else
-ifeq ($(OS),OPENBSD)
+else ifeq ($(OS),OPENBSD)
include $(GBUILDDIR)/platform/openbsd.mk
-else
-ifeq ($(OS),FREEBSD)
+else ifeq ($(OS),FREEBSD)
include $(GBUILDDIR)/platform/freebsd.mk
-else
-ifeq ($(OS),NETBSD)
+else ifeq ($(OS),NETBSD)
include $(GBUILDDIR)/platform/netbsd.mk
-else
-ifeq ($(OS),DRAGONFLY)
+else ifeq ($(OS),DRAGONFLY)
include $(GBUILDDIR)/platform/dragonfly.mk
+else ifeq ($(OS),IOS)
+include $(GBUILDDIR)/platform/ios.mk
+else ifeq ($(OS),ANDROID)
+include $(GBUILDDIR)/platform/android.mk
else
$(eval $(call gb_Output_error,Unsupported OS: $(OS)))
endif
-endif
-endif
-endif
-endif
-endif
-endif
-endif
# vim: set noet sw=4 ts=4: