bump product version to 4.1.6.2
[LibreOffice.git] / solenv / gbuild / extensions / pre_BuildTools.mk
blobb48f2c4c996084fad2523ffdf8def096fbb4054f
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 ifeq (,$(filter WNT,$(OS_FOR_BUILD)))
12 gb_GENGAL = gengal.bin
13 else # windows appends the .exe
14 gb_GENGAL = gengal
15 endif
17 # Tools we need to build for cross-compiling
18 gb_BUILD_TOOLS = \
19 $(foreach executable, \
20 autodoc \
21 bestreversemap \
22 cfgex \
23 cpp \
24 cppumaker \
25 gencoll_rule \
26 genconv_dict \
27 gendict \
28 genindex_data \
29 helpex \
30 idlc \
31 idxdict \
32 javamaker \
33 makedepend \
34 propex \
35 regcompare \
36 regmerge \
37 regview \
38 rsc \
39 saxparser \
40 stringex \
41 svidl \
42 transex3 \
43 treex \
44 uiex \
45 ulfex \
46 xrmex \
47 $(call gb_Helper_optional_for_host,DESKTOP, \
48 $(gb_GENGAL) \
49 HelpIndexer \
50 HelpLinker \
51 ) \
52 ,$(call gb_Executable_get_runtime_dependencies,$(executable))) \
53 $(foreach executable, \
54 xsltproc \
55 ,$(call gb_ExternalExecutable_get_dependencies,$(executable))) \
56 $(call gb_Helper_optional_for_host,DESKTOP,Package_xmlhelp_xsl) \
58 # vim: set noet sw=4 ts=4: