2012-11-14 19:02:51 +01:00
|
|
|
# -*- 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_Module_Module,postprocess))
|
|
|
|
|
|
|
|
# UGLY: postprocess_XCDS variable from CustomTarget_registry
|
|
|
|
# is reused in Package_registry!
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_add_targets,postprocess,\
|
2012-12-16 02:06:31 +01:00
|
|
|
CustomTarget_images \
|
2012-11-14 19:02:51 +01:00
|
|
|
CustomTarget_registry \
|
2012-12-16 02:06:31 +01:00
|
|
|
Package_images \
|
2012-11-14 19:02:51 +01:00
|
|
|
Rdb_services \
|
|
|
|
))
|
2013-12-16 16:52:29 +01:00
|
|
|
$(eval $(call gb_Module_add_l10n_targets,postprocess,\
|
|
|
|
Package_registry \
|
|
|
|
))
|
2012-11-14 19:02:51 +01:00
|
|
|
|
|
|
|
ifeq ($(WINDOWS_BUILD_SIGNING),TRUE)
|
|
|
|
$(eval $(call gb_Module_add_targets,postprocess,\
|
|
|
|
CustomTarget_signing \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2017-09-24 19:59:43 +02:00
|
|
|
# For configurations that use fontconfig (cf. inclusion of
|
|
|
|
# vcl/unx/generic/fontmanager/fontconfig.cxx in Library_vcl), add
|
|
|
|
# instdir/share/fonts/truetype/fc_local.conf when it shall
|
2017-09-22 17:14:56 +02:00
|
|
|
# contain content from at least one of external/more_fonts/fc_local.snippet
|
|
|
|
# (conditional on MORE_FONTS in BUILD_TYPE) and
|
|
|
|
# extras/source/truetype/symbol/fc_local.snippet (unconditional):
|
2018-08-26 17:22:56 +02:00
|
|
|
ifneq ($(USING_X11)$(DISABLE_GUI)$(filter ANDROID,$(OS)),)
|
2017-09-22 17:14:56 +02:00
|
|
|
$(eval $(call gb_Module_add_targets,postprocess, \
|
|
|
|
CustomTarget_fontconfig \
|
|
|
|
Package_fontconfig \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2017-11-29 14:03:20 +01:00
|
|
|
ifeq ($(OS),LINUX)
|
2017-12-04 20:16:41 +01:00
|
|
|
ifneq ($(PKGFORMAT),)
|
2017-11-29 14:03:20 +01:00
|
|
|
$(eval $(call gb_Module_add_check_targets,postprocess,\
|
|
|
|
CustomTarget_check_dynamic_objects \
|
|
|
|
))
|
|
|
|
endif
|
2017-12-04 20:16:41 +01:00
|
|
|
endif
|
2017-11-29 14:03:20 +01:00
|
|
|
|
2013-12-17 10:44:59 +01:00
|
|
|
$(eval $(call gb_Module_add_check_targets,postprocess,\
|
|
|
|
CppunitTest_services \
|
2014-06-12 12:28:51 +02:00
|
|
|
))
|
2013-12-17 10:44:59 +01:00
|
|
|
|
2012-11-14 19:02:51 +01:00
|
|
|
# vim: set noet sw=4 ts=4:
|