e930174225
I was wondering why removing instdir stuff forced a rebuild of the cross toolset. Turned out some cross-toolset bits were wrongly depending on host build stuff. It even had FIXME... As a consequence, gb_CPPU_ENV was replaced by config_host.mk flags to provide an CPPU_ENV_FOR_BUILD and also uses the correct OS_FOR_BUILD. Change-Id: I50e8e8dca50ab1ad3164948a585a792a52e4a39a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116359 Tested-by: Jenkins Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
63 lines
2.8 KiB
Makefile
63 lines
2.8 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/.
|
|
#
|
|
# This file incorporates work covered by the following license notice:
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed
|
|
# with this work for additional information regarding copyright
|
|
# ownership. The ASF licenses this file to you under the Apache
|
|
# License, Version 2.0 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
#
|
|
|
|
gb_ComponentTarget_XSLTCOMMANDFILE := $(SRCDIR)/solenv/bin/createcomponent.xslt
|
|
gb_ComponentTarget_get_source = $(SRCDIR)/$(1).component
|
|
|
|
# In the DISABLE_DYNLOADING case we don't need any COMPONENTPREFIX, we
|
|
# put just the static library filename into the uri parameter. For
|
|
# each statically linked app using some subset of LO components, there
|
|
# is a mapping from library filenames to direct pointers to the
|
|
# corresponding PREFIX_component_getFactory functions.
|
|
define gb_ComponentTarget__command
|
|
$(if $(LIBFILENAME),,$(call gb_Output_error,No LIBFILENAME set at component target: $(1)))
|
|
mkdir -p $(dir $(1)) && \
|
|
$(call gb_ExternalExecutable_get_command,xsltproc) --nonet \
|
|
--stringparam uri '$(if $(filter TRUE,$(DISABLE_DYNLOADING)),,$(subst \d,$$,$(COMPONENTPREFIX)))$(LIBFILENAME)' \
|
|
--stringparam cppu_env $(CPPU_ENV) -o $(1) \
|
|
$(gb_ComponentTarget_XSLTCOMMANDFILE) $(COMPONENTSOURCE)
|
|
endef
|
|
|
|
|
|
$(call gb_ComponentTarget_get_clean_target,%) :
|
|
$(call gb_Output_announce,$*,$(false),CMP,1)
|
|
rm -f $(call gb_ComponentTarget_get_target,$*) \
|
|
|
|
|
|
# when a library is renamed, the component file needs to be rebuilt to match.
|
|
# hence simply depend on Repository{,Fixes}.mk since the command runs quickly.
|
|
$(call gb_ComponentTarget_get_target,%) : \
|
|
$(SRCDIR)/Repository.mk \
|
|
$(SRCDIR)/RepositoryFixes.mk \
|
|
| $(call gb_ExternalExecutable_get_dependencies,xsltproc)
|
|
$(call gb_Output_announce,$*,$(true),CMP,1)
|
|
$(call gb_Trace_StartRange,$*,CMP)
|
|
$(call gb_ComponentTarget__command,$@,$*)
|
|
$(call gb_Trace_EndRange,$*,CMP)
|
|
|
|
define gb_ComponentTarget_ComponentTarget
|
|
$(call gb_ComponentTarget_get_target,$(1)) : COMPONENTPREFIX := $(2)
|
|
$(call gb_ComponentTarget_get_target,$(1)) : LIBFILENAME := $(3)
|
|
$(call gb_ComponentTarget_get_target,$(1)) : COMPONENTSOURCE := $(call gb_ComponentTarget_get_source,$(patsubst CppunitTest/%,%,$(1)))
|
|
|
|
$(call gb_ComponentTarget_get_target,$(1)) : $(call gb_ComponentTarget_get_source,$(patsubst CppunitTest/%,%,$(1)))
|
|
|
|
endef
|
|
|
|
# vim: set noet sw=4:
|