0adc9b615f
See instructions in solenv/gbuild/Trace.mk . This generates a file than can be viewed e.g. in the Chromium tracing view. Change-Id: I5f90647c58ca729375525b6daed2d4918adc8188 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88754 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
70 lines
2.3 KiB
Makefile
70 lines
2.3 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/.
|
|
#
|
|
|
|
gb_Rdb__get_install_target = $(INSTROOT)/$(LIBO_ETC_FOLDER)/services/$(1).rdb
|
|
|
|
define gb_Rdb__command
|
|
$(call gb_Helper_abbreviate_dirs,\
|
|
RESPONSEFILE=$(call var2file,$(shell $(call gb_MKTEMP)),70,\
|
|
<list> \
|
|
$(foreach component,$(COMPONENTS),\
|
|
<filename>$(call gb_ComponentTarget_get_target,$(component))</filename>) \
|
|
</list>) && \
|
|
mkdir -p $(dir $@) && \
|
|
$(call gb_ExternalExecutable_get_command,xsltproc) --nonet -o $(1) \
|
|
$(SRCDIR)/solenv/bin/packcomponents.xslt $$RESPONSEFILE && \
|
|
rm $$RESPONSEFILE)
|
|
endef
|
|
|
|
$(call gb_Rdb_get_target,%) :| $(call gb_ExternalExecutable_get_dependencies,xsltproc)
|
|
$(call gb_Output_announce,$*,$(true),RDB,1)
|
|
$(call gb_Trace_StartRange,$*,RDB)
|
|
$(call gb_Rdb__command,$@,$*,$?,$^)
|
|
$(call gb_Trace_EndRange,$*,RDB)
|
|
|
|
.PHONY : $(call gb_Rdb_get_clean_target,%)
|
|
$(call gb_Rdb_get_clean_target,%) :
|
|
$(call gb_Output_announce,$*,$(false),RDB,1)
|
|
$(call gb_Helper_abbreviate_dirs,\
|
|
rm -f $(call gb_Rdb__get_install_target,$*) $(call gb_Rdb_get_target,$*))
|
|
|
|
define gb_Rdb__Rdb_impl
|
|
$(call gb_Rdb_get_target,$(1)) : COMPONENTS :=
|
|
$(call gb_Rdb_get_target,$(1)) : $(gb_Module_CURRENTMAKEFILE)
|
|
$$(eval $$(call gb_Module_register_target,$(2),$(call gb_Rdb_get_clean_target,$(1))))
|
|
$(call gb_Helper_make_userfriendly_targets,$(1),Rdb,$(2))
|
|
|
|
endef
|
|
|
|
define gb_Rdb_Rdb
|
|
$(call gb_Rdb__Rdb_impl,$(1),$(call gb_Rdb_get_target,$(1)))
|
|
|
|
endef
|
|
|
|
# FIXME this needs some layer-like thing for the special case in URE
|
|
define gb_Rdb_Rdb_install
|
|
$(call gb_Rdb__Rdb_impl,$(1),$(if $(2),$(INSTROOT)/$(2),$(call gb_Rdb__get_install_target,$(1))))
|
|
$(call gb_Helper_install_final, \
|
|
$(if $(2),$(INSTROOT)/$(2),$(call gb_Rdb__get_install_target,$(1))), \
|
|
$(call gb_Rdb_get_target,$(1)))
|
|
|
|
endef
|
|
|
|
define gb_Rdb_add_component
|
|
$(call gb_Rdb_get_target,$(1)) : $(call gb_ComponentTarget_get_target,$(2))
|
|
$(call gb_Rdb_get_target,$(1)) : COMPONENTS += $(2)
|
|
|
|
endef
|
|
|
|
define gb_Rdb_add_components
|
|
$(foreach component,$(2),$(call gb_Rdb_add_component,$(1),$(component)))
|
|
|
|
endef
|
|
|
|
# vim: set noet sw=4 ts=4:
|