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
) \
47 $(call gb_Helper_optional
,DBCONNECTIVITY
,dbaccess
) \
49 $(call gb_Helper_optional
,DICTIONARIES
,dictionaries
) \
60 $(call gb_Helper_optional
,DBCONNECTIVITY
,forms
) \
62 $(call gb_Helper_optional
,DESKTOP
,fpicker
) \
64 $(call gb_Helper_optional
,DESKTOP
,helpcompiler
) \
65 $(call gb_Helper_optional
,HELP
,helpcontent2
) \
71 $(call gb_Helper_optional
,DESKTOP
,idlc
) \
83 $(call gb_Helper_optional
,DESKTOP
,l10ntools
) \
84 $(call gb_Helper_optional
,MARIADBC
,mysqlc
) \
85 $(call gb_Helper_optional
,NLPSOLVER
,nlpsolver
) \
87 $(call gb_Helper_optional
,ODK
,odk
) \
93 $(call gb_Helper_optional
,OPENCL
,opencl
) \
96 $(call gb_Helper_optional
,PYUNO
,pyuno
) \
97 $(call gb_Helper_optional
,QADEVOOO
,qadevOOo
) \
102 $(call gb_Helper_optional
,DBCONNECTIVITY
,reportdesign
) \
111 $(call gb_Helper_optional
,DESKTOP
,scp2
) \
115 $(call gb_Helper_optional
,DESKTOP
,setup_native
) \
141 $(call gb_Helper_optional
,PYUNO
,uitest
) \
158 $(call gb_Helper_optional
,DESKTOP
,xmlhelp
) \
165 # Especially when building everything with symbols, the linking of the largest
166 # libraries takes enormous amounts of RAM. To prevent annoying OOM situations
167 # etc., try to prevent linking these in parallel by adding artificial build
168 # order dependencies here.
169 define repositorymodule_serialize1
170 $(call gb_LinkTarget_get_target
,$(call gb_Library_get_linktarget
,$(1))) \
171 :|
$(foreach lib
,$(2),$(call gb_Library_get_target
,$(lib
)))
174 define repositorymodule_serialize
175 $(if
$(filter-out 0 1,$(words $(1))),\
176 $(call repositorymodule_serialize1
,$(firstword $(1)),$(wordlist
2,$(words $(1)),$(1))))
178 $(call repositorymodule_serialize
,$(wordlist
2,$(words $(1)),$(1))))
181 # DO NOT SORT ALPHABETICALLY: the libraries must be listed in dependency order,
182 # otherwise cyclic dependencies ruin everything.
183 # do not serialize on a partial build as that may fail due to missing deps.
184 # the default goal is all (see Module.mk)
185 ifeq (,$(filter-out all build
check unitcheck slowcheck screenshot subsequentcheck uicheck
,$(MAKECMDGOALS
)))
186 $(eval
$(call repositorymodule_serialize
,\
188 $(call gb_Helper_optional
,SCRIPTING
,vbaobj
) \
190 $(call gb_Helper_optional
,DESKTOP
,swui
) \
192 $(call gb_Helper_optional
,DBCONNECTIVITY
,dbu
) \
193 writerfilter cui chartcontroller chartcore oox \
194 $(if
$(MERGELIBS
), merged
, \
195 svx svxcore xo sfx fwk svt vcl
) \
199 # vim: set noet sw=4 ts=4: