3a009c427f
creating the libio. All these libraries are always used together, so we can put them together in one single library. This save almost 500 kb of the size of the final library. Change-Id: Ib32fec36cc4eb80ca646ce472c1f1bcdd98ac62b Reviewed-on: https://gerrit.libreoffice.org/6567 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
# -*- 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_install,ure/services,$(LIBO_URE_SHARE_FOLDER)/misc/services.rdb))
|
|
|
|
$(eval $(call gb_Rdb_add_components,ure/services,\
|
|
binaryurp/source/binaryurp \
|
|
io/source/io \
|
|
stoc/util/bootstrap \
|
|
stoc/source/inspect/introspection \
|
|
stoc/source/invocation_adapterfactory/invocadapt \
|
|
stoc/source/invocation/invocation \
|
|
stoc/source/namingservice/namingservice \
|
|
stoc/source/proxy_factory/proxyfac \
|
|
stoc/source/corereflection/reflection \
|
|
stoc/util/stocservices \
|
|
remotebridges/source/unourl_resolver/uuresolver \
|
|
))
|
|
|
|
ifneq ($(ENABLE_JAVA),)
|
|
$(eval $(call gb_Rdb_add_components,ure/services,\
|
|
stoc/source/javaloader/javaloader \
|
|
stoc/source/javavm/javavm \
|
|
))
|
|
endif
|
|
|
|
# vim:set noet sw=4 ts=4:
|