diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-08-08 21:21:48 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-08-09 16:16:50 +0200 |
commit | 772d15fb8ccdaa46fab0961712177baf915ed70d (patch) | |
tree | 298a37ddbf55a30d4078dd63cb55b58e40228cbf | |
parent | 82d8a500448fd5a5ed77a90dfd2dd79163c7979d (diff) |
create these rdbs directly in scripting
Change-Id: I8a44de06f9a16308a5ff82ad77d059e5dde544f9
-rw-r--r-- | postprocess/packcomponents/makefile.mk | 33 | ||||
-rw-r--r-- | scripting/Module_scripting.mk | 12 | ||||
-rw-r--r-- | scripting/Rdb_scriptproviderforbeanshell.mk | 16 | ||||
-rw-r--r-- | scripting/Rdb_scriptproviderforjavascript.mk | 16 |
4 files changed, 40 insertions, 37 deletions
diff --git a/postprocess/packcomponents/makefile.mk b/postprocess/packcomponents/makefile.mk index 92139ec25a13..4ced4c1317c8 100644 --- a/postprocess/packcomponents/makefile.mk +++ b/postprocess/packcomponents/makefile.mk @@ -412,36 +412,3 @@ $(MISC)/services.input : makefile.mk '<list>$(my_components:^"<filename>":+".component</filename>")</list>' \ > $@ -.IF "$(ENABLE_SCRIPTING_BEANSHELL)" == "YES" -ALLTAR : $(MISC)/scriptproviderforbeanshell.rdb - -$(MISC)/scriptproviderforbeanshell.rdb .ERRREMOVE : \ - $(SOLARENV)/bin/packcomponents.xslt \ - $(MISC)/scriptproviderforbeanshell.input \ - $(SOLARXMLDIR)/component/scripting/java/ScriptProviderForBeanShell.component - $(XSLTPROC) --nonet --stringparam prefix $(SOLARXMLDIR)/ -o $@ \ - $(SOLARENV)/bin/packcomponents.xslt \ - $(MISC)/scriptproviderforbeanshell.input - -$(MISC)/scriptproviderforbeanshell.input : makefile.mk - echo \ - '<list><filename>component/scripting/java/ScriptProviderForBeanShell.component</filename></list>' \ - > $@ -.END - -.IF "$(ENABLE_SCRIPTING_JAVASCRIPT)" == "YES" -ALLTAR : $(MISC)/scriptproviderforjavascript.rdb - -$(MISC)/scriptproviderforjavascript.rdb .ERRREMOVE : \ - $(SOLARENV)/bin/packcomponents.xslt \ - $(MISC)/scriptproviderforjavascript.input \ - $(SOLARXMLDIR)/component/scripting/java/ScriptProviderForJavaScript.component - $(XSLTPROC) --nonet --stringparam prefix $(SOLARXMLDIR)/ -o $@ \ - $(SOLARENV)/bin/packcomponents.xslt \ - $(MISC)/scriptproviderforjavascript.input - -$(MISC)/scriptproviderforjavascript.input : makefile.mk - echo \ - '<list><filename>component/scripting/java/ScriptProviderForJavaScript.component</filename></list>' \ - > $@ -.END diff --git a/scripting/Module_scripting.mk b/scripting/Module_scripting.mk index 7312f51124e1..bf385cd78c46 100644 --- a/scripting/Module_scripting.mk +++ b/scripting/Module_scripting.mk @@ -36,11 +36,15 @@ $(eval $(call gb_Module_add_targets,scripting,\ Jar_Highlight \ Jar_MemoryUsage \ Jar_ScriptFramework \ - $(if $(filter $(ENABLE_SCRIPTING_BEANSHELL),YES),\ - Jar_ScriptProviderForBeanShell) \ + $(if $(filter $(ENABLE_SCRIPTING_BEANSHELL),YES),\ + Jar_ScriptProviderForBeanShell \ + Rdb_scriptproviderforbeanshell \ + ) \ Jar_ScriptProviderForJava \ - $(if $(filter $(ENABLE_SCRIPTING_JAVASCRIPT),YES),\ - Jar_ScriptProviderForJavaScript) \ + $(if $(filter $(ENABLE_SCRIPTING_JAVASCRIPT),YES),\ + Jar_ScriptProviderForJavaScript \ + Rdb_scriptproviderforjavascript \ + ) \ Zip_ScriptsJava \ ) \ $(if $(filter $(ENABLE_SCRIPTING_PYTHON),YES),\ diff --git a/scripting/Rdb_scriptproviderforbeanshell.mk b/scripting/Rdb_scriptproviderforbeanshell.mk new file mode 100644 index 000000000000..ef52d7660bc0 --- /dev/null +++ b/scripting/Rdb_scriptproviderforbeanshell.mk @@ -0,0 +1,16 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Rdb_Rdb,scriptproviderforbeanshell)) + +$(eval $(call gb_Rdb_add_components,scriptproviderforbeanshell,\ + scripting/java/ScriptProviderForBeanShell \ +)) + +# vim: set noet sw=4 ts=4: diff --git a/scripting/Rdb_scriptproviderforjavascript.mk b/scripting/Rdb_scriptproviderforjavascript.mk new file mode 100644 index 000000000000..aec5dc6b1be9 --- /dev/null +++ b/scripting/Rdb_scriptproviderforjavascript.mk @@ -0,0 +1,16 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Rdb_Rdb,scriptproviderforjavascript)) + +$(eval $(call gb_Rdb_add_components,scriptproviderforjavascript,\ + scripting/java/ScriptProviderForJavaScript \ +)) + +# vim: set noet sw=4 ts=4: |