[Libreoffice-commits] .: codemaker/source

Tor Lillqvist tml at kemper.freedesktop.org
Sun Jun 12 16:44:09 PDT 2011


 codemaker/source/cppumaker/makefile.mk |    6 ++++++
 codemaker/source/javamaker/makefile.mk |    6 ++++++
 2 files changed, 12 insertions(+)

New commits:
commit 47903e1adb54fe7b1ac123a1d433dda4b01cd916
Author: Tor Lillqvist <tml at iki.fi>
Date:   Mon Jun 13 02:43:35 2011 +0300

    No point building build-time executables for iOS

diff --git a/codemaker/source/cppumaker/makefile.mk b/codemaker/source/cppumaker/makefile.mk
index a3ff38c..c05773e 100644
--- a/codemaker/source/cppumaker/makefile.mk
+++ b/codemaker/source/cppumaker/makefile.mk
@@ -36,6 +36,12 @@ ENABLE_EXCEPTIONS=TRUE
 
 # --- Settings -----------------------------------------------------
 .INCLUDE : settings.mk
+
+.IF "$(OS)" == "IOS"
+all:
+    @echo No build-time tools for this platform
+.ENDIF
+
 .INCLUDE : $(PRJ)$/codemaker.pmk
 
 # --- Files --------------------------------------------------------
diff --git a/codemaker/source/javamaker/makefile.mk b/codemaker/source/javamaker/makefile.mk
index 297f35b..cf8a298 100644
--- a/codemaker/source/javamaker/makefile.mk
+++ b/codemaker/source/javamaker/makefile.mk
@@ -37,6 +37,12 @@ ENABLE_EXCEPTIONS=TRUE
 # --- Settings -----------------------------------------------------
 
 .INCLUDE : settings.mk
+
+.IF "$(OS)" == "IOS"
+all:
+    @echo No build-time tools for this platform
+.ENDIF
+
 .INCLUDE : $(PRJ)$/codemaker.pmk
 
 # --- Files --------------------------------------------------------


More information about the Libreoffice-commits mailing list