2011-09-19 11:01:15 +02:00
|
|
|
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-09-19 11:01:15 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# 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/.
|
2011-09-19 11:01:15 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_Module,scripting))
|
|
|
|
|
2012-02-27 16:31:42 +02:00
|
|
|
ifneq ($(DISABLE_SCRIPTING),TRUE)
|
2012-01-20 17:20:11 +02:00
|
|
|
|
2011-09-19 11:01:15 +02:00
|
|
|
$(eval $(call gb_Module_add_targets,scripting,\
|
2011-09-29 22:00:24 +02:00
|
|
|
$(if $(SOLAR_JAVA),\
|
|
|
|
Jar_HelloWorld \
|
|
|
|
Jar_Highlight \
|
|
|
|
Jar_MemoryUsage \
|
|
|
|
Jar_ScriptFramework \
|
2012-08-08 21:21:48 +02:00
|
|
|
$(if $(filter $(ENABLE_SCRIPTING_BEANSHELL),YES),\
|
|
|
|
Jar_ScriptProviderForBeanShell \
|
|
|
|
Rdb_scriptproviderforbeanshell \
|
|
|
|
) \
|
2011-09-29 22:00:24 +02:00
|
|
|
Jar_ScriptProviderForJava \
|
2012-08-08 21:21:48 +02:00
|
|
|
$(if $(filter $(ENABLE_SCRIPTING_JAVASCRIPT),YES),\
|
|
|
|
Jar_ScriptProviderForJavaScript \
|
|
|
|
Rdb_scriptproviderforjavascript \
|
|
|
|
) \
|
2011-09-29 22:00:24 +02:00
|
|
|
Zip_ScriptsJava \
|
|
|
|
) \
|
2013-04-19 00:15:12 +02:00
|
|
|
Package_scriptbindinglib \
|
2013-02-20 22:42:02 +01:00
|
|
|
Package_scriptproviderforpython \
|
2013-04-19 00:15:12 +02:00
|
|
|
Package_ScriptsBeanShell \
|
|
|
|
Package_ScriptsJavaScript \
|
|
|
|
Package_ScriptsPython \
|
2011-09-19 11:01:15 +02:00
|
|
|
Library_basprov \
|
|
|
|
Library_dlgprov \
|
|
|
|
Library_protocolhandler \
|
|
|
|
Library_scriptframe \
|
|
|
|
Library_stringresource \
|
|
|
|
Library_vbaevents \
|
|
|
|
Pyuno_mailmerge \
|
|
|
|
))
|
|
|
|
|
2012-01-20 17:20:11 +02:00
|
|
|
endif
|
|
|
|
|
2011-09-19 11:01:15 +02:00
|
|
|
# vim: set noet sw=4 ts=4:
|