2011-12-06 21:15:10 +00:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-10-17 11:37:56 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-10-17 11:37:56 +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-10-17 11:37:56 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_Module,extensions))
|
|
|
|
|
2013-11-13 02:12:48 +01:00
|
|
|
$(eval $(call gb_Module_add_l10n_targets,extensions,\
|
2017-06-11 20:56:30 +01:00
|
|
|
AllLangMoTarget_pcr \
|
2013-11-13 02:12:48 +01:00
|
|
|
))
|
|
|
|
|
2018-10-31 19:06:30 +01:00
|
|
|
ifneq ($(filter-out iOS ANDROID,$(OS)),)
|
2012-07-20 16:55:02 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
2016-06-08 12:19:23 +02:00
|
|
|
Library_abp \
|
|
|
|
Library_scn \
|
2018-12-28 20:23:02 +03:00
|
|
|
$(if $(filter WNT,$(OS)), \
|
|
|
|
Library_WinUserInfoBe \
|
|
|
|
$(if $(filter TRUE,$(BUILD_X86)),Executable_twain32shim) \
|
|
|
|
) \
|
2017-06-11 20:56:30 +01:00
|
|
|
UIConfig_sabpilot \
|
|
|
|
UIConfig_scanner \
|
2012-07-16 17:40:25 +01:00
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2020-02-06 22:48:29 +01:00
|
|
|
ifneq ($(filter-out iOS,$(OS)),)
|
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
|
|
|
Library_log \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2019-01-08 04:53:51 -05:00
|
|
|
ifeq ($(ENABLE_LDAP),TRUE)
|
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
|
|
|
Library_ldapbe2 \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2012-02-21 12:49:09 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
|
|
|
Library_bib \
|
2019-12-31 13:35:11 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
ifneq (,$(filter DBCONNECTIVITY,$(BUILD_TYPE)))
|
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
2012-02-21 12:49:09 +01:00
|
|
|
Library_dbp \
|
|
|
|
Library_pcr \
|
2013-12-16 16:51:35 +01:00
|
|
|
UIConfig_sbibliography \
|
|
|
|
UIConfig_spropctrlr \
|
2013-11-13 02:12:48 +01:00
|
|
|
))
|
2012-02-21 12:49:09 +01:00
|
|
|
endif
|
2012-02-18 10:50:52 +02:00
|
|
|
|
|
|
|
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
|
2012-04-05 21:03:31 +02:00
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
|
|
|
Library_updatefeed \
|
|
|
|
))
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_ONLINE_UPDATE),TRUE)
|
2012-02-18 10:50:52 +02:00
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
|
|
|
Configuration_updchk \
|
2011-12-14 19:57:14 +01:00
|
|
|
Library_updatecheckui \
|
|
|
|
Library_updchk \
|
|
|
|
))
|
|
|
|
|
2012-02-18 10:50:52 +02:00
|
|
|
$(eval $(call gb_Module_add_check_targets,extensions,\
|
|
|
|
CppunitTest_extensions_test_update \
|
|
|
|
))
|
|
|
|
endif
|
2012-04-05 21:03:31 +02:00
|
|
|
endif
|
2012-02-18 10:50:52 +02:00
|
|
|
|
2011-12-14 20:10:08 +01:00
|
|
|
ifeq ($(OS),WNT)
|
2011-12-18 01:28:13 +01:00
|
|
|
|
|
|
|
ifeq ($(COM),MSC)
|
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
|
|
|
WinResTarget_activex \
|
|
|
|
Library_so_activex \
|
2012-04-04 14:14:33 +02:00
|
|
|
CustomTarget_so_activex_idl \
|
2011-12-18 01:28:13 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
ifeq ($(BUILD_X64),TRUE)
|
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
2012-04-01 14:53:13 +02:00
|
|
|
CustomTarget_so_activex_x64 \
|
2011-12-18 01:28:13 +01:00
|
|
|
Library_so_activex_x64 \
|
|
|
|
))
|
|
|
|
endif # BUILD_X64
|
|
|
|
endif # COM=MSC
|
|
|
|
|
2011-12-14 20:10:08 +01:00
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
|
|
|
Library_oleautobridge \
|
|
|
|
))
|
2011-12-18 01:28:13 +01:00
|
|
|
|
2018-05-31 17:08:47 +03:00
|
|
|
# $(eval $(call gb_Module_add_subsequentcheck_targets,extensions,\
|
|
|
|
# CustomTarget_automationtest \
|
|
|
|
# ))
|
2018-04-25 22:02:06 +03:00
|
|
|
|
2011-12-18 01:28:13 +01:00
|
|
|
endif # WNT
|
2011-12-14 20:10:08 +01:00
|
|
|
|
2011-12-17 22:29:19 +01:00
|
|
|
ifeq ($(OS),MACOSX)
|
|
|
|
$(eval $(call gb_Module_add_targets,extensions,\
|
|
|
|
Library_OOoSpotlightImporter \
|
2013-04-30 13:51:36 +02:00
|
|
|
Package_mdibundle \
|
|
|
|
Package_OOoSpotlightImporter \
|
2011-12-17 22:29:19 +01:00
|
|
|
))
|
|
|
|
endif # OS=MACOSX
|
2011-12-17 19:46:38 +01:00
|
|
|
|
2012-09-05 21:00:33 +02:00
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,extensions,\
|
|
|
|
JunitTest_extensions_unoapi \
|
|
|
|
))
|
|
|
|
|
2011-10-17 11:37:56 +02:00
|
|
|
# vim:set shiftwidth=4 softtabstop=4 noexpandtab:
|