diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-07-25 21:58:52 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-07-25 21:58:52 +0300 |
commit | 1ebd694a5b2f6e172b6c770c908671fb3cc84b28 (patch) | |
tree | d74d6687b224808e6e990a4ed7244e9275a83235 /wizards | |
parent | 9c341f31f31c0ca1af794f8835e385104a255a41 (diff) |
Build the jars only of if SOLAR_JAVA is TRUE
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/Module_wizards.mk | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/wizards/Module_wizards.mk b/wizards/Module_wizards.mk index 65829e53ca8c..30c15692703b 100644 --- a/wizards/Module_wizards.mk +++ b/wizards/Module_wizards.mk @@ -35,16 +35,6 @@ $(eval $(call gb_Module_add_targets,wizards,\ AllLangResTarget_tpl \ AllLangResTarget_wwz \ AllLangResTarget_wzi \ - Jar_commonwizards \ - Jar_agenda \ - Jar_fax \ - Jar_form \ - Jar_letter \ - Jar_query \ - Jar_report \ - Jar_reportbuilder \ - Jar_table \ - Jar_web \ Zip_depot \ Zip_euro \ Zip_form \ @@ -61,4 +51,19 @@ $(eval $(call gb_Module_add_targets,wizards,\ Zip_web \ )) +ifeq ($(SOLAR_JAVA),TRUE) +$(eval $(call gb_Module_add_targets,wizards,\ + Jar_commonwizards \ + Jar_agenda \ + Jar_fax \ + Jar_form \ + Jar_letter \ + Jar_query \ + Jar_report \ + Jar_reportbuilder \ + Jar_table \ + Jar_web \ +)) +endif + # vim: set noet sw=4 ts=4: |