[Libreoffice-commits] .: codemaker/Module_codemaker.mk rdbmaker/Module_rdbmaker.mk unodevtools/Module_unodevtools.mk
Tor Lillqvist
tml at kemper.freedesktop.org
Fri Apr 20 00:21:23 PDT 2012
codemaker/Module_codemaker.mk | 4 ++++
rdbmaker/Module_rdbmaker.mk | 4 ++++
unodevtools/Module_unodevtools.mk | 4 ++++
3 files changed, 12 insertions(+)
New commits:
commit cf0186de2df4ad2ffeb39088638aefafc5d4a823
Author: Tor Lillqvist <tlillqvist at suse.com>
Date: Fri Apr 20 10:15:04 2012 +0300
Don't build these command-line tools for non-desktop OSes
diff --git a/codemaker/Module_codemaker.mk b/codemaker/Module_codemaker.mk
index d2b6060..9a67e39 100644
--- a/codemaker/Module_codemaker.mk
+++ b/codemaker/Module_codemaker.mk
@@ -26,6 +26,8 @@
$(eval $(call gb_Module_Module,codemaker))
+ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
+
$(eval $(call gb_Module_add_targets,codemaker,\
Package_inc \
StaticLibrary_codemaker \
@@ -35,4 +37,6 @@ $(eval $(call gb_Module_add_targets,codemaker,\
Executable_cppumaker \
))
+endif
+
# vim:set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/rdbmaker/Module_rdbmaker.mk b/rdbmaker/Module_rdbmaker.mk
index 0145b23..c5683e0 100644
--- a/rdbmaker/Module_rdbmaker.mk
+++ b/rdbmaker/Module_rdbmaker.mk
@@ -26,8 +26,12 @@
$(eval $(call gb_Module_Module,rdbmaker))
+ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
+
$(eval $(call gb_Module_add_targets,rdbmaker,\
Executable_rdbmaker \
))
+endif
+
# vim:set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/unodevtools/Module_unodevtools.mk b/unodevtools/Module_unodevtools.mk
index 9819bfd..09ca03a 100644
--- a/unodevtools/Module_unodevtools.mk
+++ b/unodevtools/Module_unodevtools.mk
@@ -26,8 +26,12 @@
$(eval $(call gb_Module_Module,unodevtools))
+ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
+
$(eval $(call gb_Module_add_targets,unodevtools,\
Executable_skeletonmaker \
))
+endif
+
# vim:set shiftwidth=4 softtabstop=4 expandtab:
More information about the Libreoffice-commits
mailing list