diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-04-20 10:15:04 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-04-20 10:15:39 +0300 |
commit | cf0186de2df4ad2ffeb39088638aefafc5d4a823 (patch) | |
tree | 064a328c226604868fe64aa36b7074b6054f5726 | |
parent | 503c8fdb1705f0b91e5181b250a6dc94e94e835d (diff) |
Don't build these command-line tools for non-desktop OSes
-rw-r--r-- | codemaker/Module_codemaker.mk | 4 | ||||
-rw-r--r-- | rdbmaker/Module_rdbmaker.mk | 4 | ||||
-rw-r--r-- | unodevtools/Module_unodevtools.mk | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/codemaker/Module_codemaker.mk b/codemaker/Module_codemaker.mk index d2b60600465a..9a67e39027e3 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 0145b2385ae4..c5683e089715 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 9819bfd2c38d..09ca03a16cba 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: |