1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
4 # This file is part of the LibreOffice project.
6 # This Source Code Form is subject to the terms of the Mozilla Public
7 # License, v. 2.0. If a copy of the MPL was not distributed with this
8 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
12 $(eval
$(call gb_Module_Module
,libreoffice
))
14 # This makefile needs to be read first because some variables like T_LIBS
15 # for libmerged are cleared there and then later we append stuff to it
16 # through e.g. gb_Library_use_external for various libraries in libmerged.
18 $(eval
$(call gb_Module_add_targets
,libreoffice
,\
23 $(eval
$(call gb_Module_add_moduledirs
,libreoffice
,\
28 $(call gb_Helper_optional
,AVMEDIA
,avmedia
) \
38 $(call gb_Helper_optional
,DESKTOP
,codemaker
) \
49 $(call gb_Helper_optional
,DICTIONARIES
,dictionaries
) \
59 $(call gb_Helper_optional
,DBCONNECTIVITY
,forms
) \
61 $(call gb_Helper_optional
,DESKTOP
,fpicker
) \
63 $(call gb_Helper_optionals_or
,HELPTOOLS XMLHELP
,helpcompiler
) \
64 $(call gb_Helper_optional
,HELP
,helpcontent2
) \
70 $(call gb_Helper_optional
,DESKTOP
,idlc
) \
77 $(call gb_Helper_optional
,LIBRELOGO
,librelogo
) \
82 $(call gb_Helper_optional
,DESKTOP
,l10ntools
) \
83 $(call gb_Helper_optional
,NLPSOLVER
,nlpsolver
) \
85 $(call gb_Helper_optional
,ODK
,odk
) \
91 $(call gb_Helper_optional
,OPENCL
,opencl
) \
95 $(call gb_Helper_optional
,PYUNO
,pyuno
) \
96 $(call gb_Helper_optional
,QADEVOOO
,qadevOOo
) \
101 $(call gb_Helper_optional
,DBCONNECTIVITY
,reportdesign
) \
109 $(call gb_Helper_optional
,DESKTOP
,scp2
) \
113 $(call gb_Helper_optional
,DESKTOP
,setup_native
) \
139 $(call gb_Helper_optional
,PYUNO
,uitest
) \
156 $(call gb_Helper_optional
,XMLHELP
,xmlhelp
) \
163 # Especially when building everything with symbols, the linking of the largest
164 # libraries takes enormous amounts of RAM. To prevent annoying OOM situations
165 # etc., try to prevent linking these in parallel by adding artificial build
166 # order dependencies here.
167 define repositorymodule_serialize1
168 $(call gb_LinkTarget_get_target
,$(call gb_Library_get_linktarget
,$(1))) \
169 :|
$(foreach lib
,$(2),$(call gb_Library_get_target
,$(lib
)))
172 define repositorymodule_serialize
173 $(if
$(filter-out 0 1,$(words $(1))),\
174 $(call repositorymodule_serialize1
,$(firstword $(1)),$(wordlist
2,$(words $(1)),$(1))))
176 $(call repositorymodule_serialize
,$(wordlist
2,$(words $(1)),$(1))))
179 # DO NOT SORT ALPHABETICALLY: the libraries must be listed in dependency order,
180 # otherwise cyclic dependencies ruin everything.
181 # do not serialize on a partial build as that may fail due to missing deps.
182 # the default goal is build (see Module.mk)
183 ifeq (,$(filter-out build
check unitcheck slowcheck screenshot subsequentcheck uicheck
,$(MAKECMDGOALS
)))
184 $(eval
$(call repositorymodule_serialize
,\
186 $(call gb_Helper_optional
,SCRIPTING
,vbaobj
) \
188 $(call gb_Helper_optional
,DESKTOP
,swui
) \
190 $(call gb_Helper_optional
,DBCONNECTIVITY
,dbu
) \
191 writerfilter cui chartcontroller chartcore oox \
192 $(if
$(MERGELIBS
), merged
, \
193 svx svxcore xo sfx fwk svt vcl
) \
197 # vim: set noet sw=4 ts=4: