summaryrefslogtreecommitdiff
path: root/solenv/gbuild/extensions/pre_BuildTools.mk
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2013-03-08 14:14:46 +0100
committerMatúš Kukan <matus.kukan@gmail.com>2013-03-13 16:26:10 +0100
commitbdfdd054bd25714f9c52c974f22228bee4bfbe67 (patch)
tree5d52309c4d07614d1e555af2e010544cdb3994a1 /solenv/gbuild/extensions/pre_BuildTools.mk
parent3909015f5dd1cbd18de80f38cd1fe675b7c59b7e (diff)
more subtle dependencies for cross-compilation
Now we build only what we really need for 'build' platform - there is new build-tools make target. The list of tools is in solenv/gbuild/extensions/pre_BuildTools.mk. Also similar is done to some extent for 'host' platform using gb_Module_add_targets_for_build which is ignored for 'host'. Change-Id: I6acd1762b16aca366aac1a0688500f27869cfca2
Diffstat (limited to 'solenv/gbuild/extensions/pre_BuildTools.mk')
-rw-r--r--solenv/gbuild/extensions/pre_BuildTools.mk46
1 files changed, 46 insertions, 0 deletions
diff --git a/solenv/gbuild/extensions/pre_BuildTools.mk b/solenv/gbuild/extensions/pre_BuildTools.mk
new file mode 100644
index 000000000000..bd80ca7a47d1
--- /dev/null
+++ b/solenv/gbuild/extensions/pre_BuildTools.mk
@@ -0,0 +1,46 @@
+# -*- 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/.
+#
+
+# Tools we need to build for cross-compiling
+gb_BUILD_TOOLS = \
+ $(foreach executable, \
+ autodoc \
+ bestreversemap \
+ cfgex \
+ cpp \
+ cppumaker \
+ gencoll_rule \
+ genconv_dict \
+ gendict \
+ genindex_data \
+ helpex \
+ idlc \
+ idxdict \
+ javamaker \
+ makedepend \
+ propex \
+ regcompare \
+ regmerge \
+ regview \
+ rsc \
+ saxparser \
+ stringex \
+ svidl \
+ transex3 \
+ treex \
+ uiex \
+ ulfex \
+ xrmex \
+ ,$(call gb_Executable_get_runtime_dependencies,$(executable))) \
+ $(foreach executable, \
+ xsltproc \
+ ,$(call gb_ExternalExecutable_get_dependencies,$(executable))) \
+ Package_xmlhelp_xsl \
+
+# vim: set noet sw=4 ts=4: