2014-04-28 23:33:04 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-09-19 11:01:15 +02:00
|
|
|
#
|
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
|
|
|
#
|
|
|
|
|
2011-10-22 16:54:01 +02:00
|
|
|
$(eval $(call gb_Jar_Jar,ScriptProviderForJava))
|
2011-09-19 11:01:15 +02:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Jar_use_jars,ScriptProviderForJava,\
|
2012-08-17 11:02:49 +02:00
|
|
|
juh \
|
|
|
|
jurt \
|
|
|
|
ridl \
|
|
|
|
unoil \
|
|
|
|
ScriptFramework \
|
2011-09-29 22:00:24 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Jar_set_componentfile,ScriptProviderForJava,scripting/java/ScriptProviderForJava,OOO))
|
|
|
|
|
2012-03-22 23:27:32 +01:00
|
|
|
$(eval $(call gb_Jar_set_manifest,ScriptProviderForJava,$(SRCDIR)/scripting/java/com/sun/star/script/framework/provider/java/MANIFEST.MF))
|
|
|
|
|
2011-09-29 22:00:24 +02:00
|
|
|
$(eval $(call gb_Jar_set_packageroot,ScriptProviderForJava,com))
|
|
|
|
|
|
|
|
$(eval $(call gb_Jar_add_sourcefiles,ScriptProviderForJava,\
|
|
|
|
scripting/java/com/sun/star/script/framework/provider/java/Resolver \
|
|
|
|
scripting/java/com/sun/star/script/framework/provider/java/ScriptDescriptor \
|
|
|
|
scripting/java/com/sun/star/script/framework/provider/java/ScriptProviderForJava \
|
|
|
|
scripting/java/com/sun/star/script/framework/provider/java/ScriptProxy \
|
|
|
|
scripting/java/com/sun/star/script/framework/provider/java/StrictResolver \
|
2011-09-19 11:01:15 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|