diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-07-30 22:12:56 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-07-30 22:12:56 +0300 |
commit | 8ccfc00c4fa45b44438e8b8ef0151d7f78bbc424 (patch) | |
tree | 75ce9914c62531ad7a0d0a873edaf634c206a965 /solenv/gbuild | |
parent | d9ae9f37c93cb046f4e50eb5cfa8244041cfaf9a (diff) |
Include the iOS or Android platform files when appropriate
Diffstat (limited to 'solenv/gbuild')
-rw-r--r-- | solenv/gbuild/gbuild_simple.mk | 32 |
1 files changed, 11 insertions, 21 deletions
diff --git a/solenv/gbuild/gbuild_simple.mk b/solenv/gbuild/gbuild_simple.mk index 38d545a4141f..0d056dac98c3 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: |