update emoji autocorrect files from po-files
[LibreOffice.git] / Makefile.in
blob33f3963984910bb7e5c26ee5a7cd0ba9ee76afaf
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/.
10 gb_Top_MODULE_CHECK_TARGETS := slowcheck unitcheck subsequentcheck perfcheck
12 .PHONY : all bootstrap gbuild build build-non-l10n-only build-l10n-only check clean clean-build clean-host test-install distclean distro-pack-install docs download etags fetch findunusedcode get-submodules id install install-strip tags debugrun help showmodules translations packageinfo internal.clean $(gb_Top_MODULE_CHECK_TARGETS)
14 MAKECMDGOALS?=all
15 build_goal:=$(if $(filter build check,$(MAKECMDGOALS)),all)\
16 $(if $(filter build-nocheck,$(MAKECMDGOALS)),build)\
17 $(if $(filter check,$(MAKECMDGOALS)),subsequentcheck)\
18 $(filter all build-l10n-only build-non-l10n-only debugrun help showmodules translations $(gb_Top_MODULE_CHECK_TARGETS) check packageinfo,$(MAKECMDGOALS))
20 SRCDIR := @SRC_ROOT@
21 BUILDDIR := @BUILDDIR@
22 GIT_BUILD := $(if $(wildcard $(SRCDIR)/.git),T)
24 # Run autogen.sh if needed and force make to restart itself.
25 # ... but there are several cases where we do not want to run
26 # autogen.sh:
27 # 1. if we are building from tarballs, not git checkout (I do not
28 # think packagers would ever want that. I certainly do not.)
29 # 2. if we are making help, clean or distclean, because they do not
30 # need updated configuration
31 ifeq (,$(MAKE_RESTARTS)$(if $(GIT_BUILD),,T)$(if $(filter-out help showmodules clean distclean,$(MAKECMDGOALS)),,T))
33 .PHONY : force-restart
34 Makefile: $(BUILDDIR)/config_host.mk $(BUILDDIR)/config_host_lang.mk force-restart
35 @touch $@
37 # run configure in an environment not polluted by config_host.mk
38 $(BUILDDIR)/config_host.mk : $(wildcard \
39 $(SRCDIR)/config_host.mk.in \
40 $(SRCDIR)/config_host_lang.mk.in \
41 $(SRCDIR)/Makefile.in \
42 $(SRCDIR)/instsetoo_native/util/openoffice.lst.in \
43 $(SRCDIR)/configure.ac \
44 $(SRCDIR)/config_host/*.h.in \
45 $(BUILDDIR)/autogen.input \
46 $(BUILDDIR)/autogen.lastrun \
47 $(BUILDDIR)/autogen.sh \
49 sh -c $(SRCDIR)/autogen.sh
51 else # MAKE_RESTARTS
53 all: build
55 gb_Side ?= host
57 include $(BUILDDIR)/config_$(gb_Side).mk
59 export GMAKE_OPTIONS?=-r$(if $(verbose),,s)$(value $(MAKEFLAGS))
61 PARALLELISM_OPTION := $(if $(filter-out 0,$(PARALLELISM)),-j $(PARALLELISM),)
63 IWYU_OPTION := $(if $(IWYU_PATH),-k CC=$(IWYU_PATH) CXX=$(IWYU_PATH),)
65 # don't want to have a dependency to iwyudummy.generate because it's
66 # useful to manually edit the generated StaticLibrary_iwyudummy.mk
67 iwyudummy: bootstrap fetch
68 $(if $(wildcard $(BUILDDIR)/iwyudummy),,$(error first call "make iwyudummy.generate"))
69 cd $(BUILDDIR)/iwyudummy && $(MAKE) $(IWYU_OPTION) $(GMAKE_OPTIONS)
71 iwyudummy.generate:
72 $(SRCDIR)/bin/gen-iwyu-dummy-lib
75 # Partial Build
77 define gb_Top_GbuildModuleRules
78 .PHONY: $(1) $(1).all $(1).build $(1).check $(1).clean $(1).showdeliverables $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target))
80 $(1): bootstrap fetch
81 cd $(SRCDIR)/$(2) && $$(MAKE) $(IWYU_OPTION) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS)
83 $(1).build $(1).check $(1).clean $(1).showdeliverables $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target)):
84 cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)
86 $(1).all: bootstrap fetch
87 $$(MAKE) $(PARALLELISM_OPTION) $(IWYU_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $(WORKDIR)/Module/$(1) $(if $(CROSS_COMPILING),,$(WORKDIR)/Module/check/$(1) $(WORKDIR)/Module/slowcheck/$(1))
89 endef
91 define gb_Top_GbuildModulesRules
92 $(foreach m,$(1),$(call gb_Top_GbuildModuleRules,$(notdir $(m)),$(m)))
93 endef
95 gbuild_modules := $(patsubst $(SRCDIR)/%/,%,$(dir $(wildcard $(SRCDIR)/*/Module_*.mk $(SRCDIR)/external/*/Module_*.mk)))
97 gbuild_internal_modules := $(filter-out odk external,$(patsubst $(SRCDIR)/%/,%,$(dir $(wildcard $(SRCDIR)/*/Module_*.mk))))
99 internal.clean: $(addsuffix .clean,$(gbuild_internal_modules))
102 $(eval $(call gb_Top_GbuildModulesRules,$(gbuild_modules)))
104 gbuild_TARGETS := AllLangHelp \
105 AllLangPackage \
106 AllLangResTarget \
107 AutoInstall \
108 CliLibrary \
109 CliNativeLibrary \
110 CliUnoApi \
111 Configuration \
112 CppunitTest \
113 CustomTarget \
114 Dictionary \
115 Executable \
116 Extension \
117 ExtensionPackage \
118 ExtensionPackageSet \
119 ExternalPackage \
120 ExternalProject \
121 Gallery \
122 GeneratedPackage \
123 InstallModule \
124 InstallScript \
125 InternalUnoApi \
126 Jar \
127 JunitTest \
128 Library \
129 Module \
130 Package \
131 PackageSet \
132 Pagein \
133 Postprocess \
134 Pyuno \
135 PythonTest \
136 Rdb \
137 StaticLibrary \
138 UIConfig \
139 UnoApi \
140 UnpackedTarball \
141 WinResTarget \
142 Zip \
144 # build a generic gbuild target
145 $(foreach target,$(gbuild_TARGETS),$(target)_% $(foreach module,$(gbuild_modules),$(target)_$(module)/%)) %.genpatch: bootstrap fetch
146 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
149 # Clean
151 clean: clean-host clean-build
153 clean-host:
154 rm -fr $(TESTINSTALLDIR)
155 rm -fr $(INSTDIR)
156 rm -fr $(WORKDIR)
158 clean-build:
159 ifneq ($(CROSS_COMPILING),)
160 rm -fr $(INSTDIR_FOR_BUILD)
161 rm -fr $(WORKDIR_FOR_BUILD)
162 endif
164 include $(SRCDIR)/compilerplugins/Makefile.mk
167 # Distclean
169 distclean : clean compilerplugins-clean
170 rm -fr \
171 $(BUILDDIR)/Makefile \
172 $(BUILDDIR)/aclocal.m4 \
173 $(BUILDDIR)/autom4te.cache \
174 $(BUILDDIR)/config.log \
175 $(BUILDDIR)/config.Build.log \
176 $(BUILDDIR)/config.status \
177 $(BUILDDIR)/config_build.mk \
178 $(BUILDDIR)/config_build_lang.mk \
179 $(BUILDDIR)/config_build/*.h \
180 $(BUILDDIR)/config_host.mk \
181 $(BUILDDIR)/config_host.mk.stamp \
182 $(BUILDDIR)/config_host_lang.mk \
183 $(BUILDDIR)/config_host_lang.mk.stamp \
184 $(BUILDDIR)/config_host/*.h \
185 $(BUILDDIR)/configure \
186 $(BUILDDIR)/instsetoo_native/util/openoffice.lst \
187 $(BUILDDIR)/ios/lo.xcconfig \
188 $(BUILDDIR)/lo.xcent \
189 $(BUILDDIR)/sysui/desktop/macosx/Info.plist
190 $(FIND) $(SRCDIR)/solenv/gdb -name "*.pyc" -exec rm {} \;
193 # custom command
195 cmd:
196 echo "custom cmd" && ( $(cmd) )
199 # Fetch
201 ifneq ($(DO_FETCH_TARBALLS),)
202 include $(SRCDIR)/Makefile.fetch
203 fetch: download
204 fetch: get-submodules
206 ifneq (,$(wildcard $(SRCDIR)/.git))
207 get-submodules:
208 ifneq ($(foreach i,$(GIT_NEEDED_SUBMODULES),$(i)/.git),$(wildcard $(foreach i,$(GIT_NEEDED_SUBMODULES),$(i)/.git)))
209 cd $(SRCDIR) && ./g -f clone
210 endif
211 @cd $(SRCDIR) && ./g -z # make sure the git hooks are in place even if no submodules are needed
213 else # these sources are from a tarball, so get the other source tarballs
214 gb_LO_VER := $(shell . $(SRCDIR)/sources.ver && echo $$lo_sources_ver)
215 $(if $(gb_LO_VER),,$(error Error while retrieving $$lo_sources_ver from $(SRCDIR)/sources.ver))
217 get-submodules: | download
218 ifneq ($(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),$(SRCDIR)/src/libreoffice-$(i)-$(gb_LO_VER)),$(wildcard $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),$(SRCDIR)/src/libreoffice-$(i)-$(gb_LO_VER))))
219 $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
220 $(call fetch_Download_item_unchecked,http://download.documentfoundation.org/libreoffice/src/$(shell echo $(gb_LO_VER) | sed -e "s/\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/"),libreoffice-$(i)-$(gb_LO_VER).tar.xz))
221 $(SRCDIR)/bin/unpack-sources $(SRCDIR) $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
222 $(TARFILE_LOCATION)/libreoffice-$(i)-$(gb_LO_VER).tar.xz)
223 endif
225 endif
227 else
228 fetch:
229 @echo "Automatic fetching of external tarballs is disabled."
231 endif
234 # Bootstap
236 bootstrap: compilerplugins
239 # Build
241 # Note: this will pipe through all gbuild targets to ... gbuild
242 # with some translations like "build"->"all" for historic reasons
244 build: bootstrap fetch $(if $(CROSS_COMPILING),cross-toolset)
245 ifneq ($(filter-out WNT MACOSX IOS,$(OS)),)
246 mkdir -p $(INSTDIR)
247 $(SRCDIR)/solenv/bin/install-gdb-printers -a $(INSTDIR) -c
248 endif
249 $(MAKE) $(PARALLELISM_OPTION) $(IWYU_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $(build_goal)
250 ifeq ($(OS),IOS)
251 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) ios
252 endif
254 build-non-l10n-only build-l10n-only build-nocheck check debugrun translations packageinfo $(gb_Top_MODULE_CHECK_TARGETS): build
256 help showmodules:
257 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
259 cross-toolset: bootstrap fetch
260 $(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild build-tools
264 # Install
267 define gb_Top_DoInstall
268 echo "$(1) in $(INSTALLDIR) ..." && \
269 $(SRCDIR)/solenv/bin/ooinstall $(2) "$(INSTALLDIR)"
271 endef
273 ifneq ($(OS),MACOSX)
274 define gb_Top_InstallFinished
275 echo && echo "If you want to edit the .ui files with glade first execute:" && \
276 echo && echo "export GLADE_CATALOG_SEARCH_PATH=$(2)/share/glade" && \
277 echo && echo "$(1) finished, you can now execute:" && \
278 echo "$(2)/program/soffice"
280 endef
281 else
282 define gb_Top_InstallFinished
283 echo && echo "$(1) finished, you can now run: " && \
284 echo "open $(2)/$(PRODUCTNAME).app" && \
285 echo "" && \
286 echo "To debug: gdb $(2)/$(PRODUCTNAME).app/Contents/MacOS/soffice"
288 endef
289 endif
291 ifneq ($(OS),MACOSX)
292 install:
293 @$(call gb_Top_DoInstall,Installing,)
294 @$(call gb_Top_InstallFinished,Installation,$(INSTALLDIR))
296 install-strip:
297 @$(call gb_Top_DoInstall,Installing and stripping binaries,--strip)
298 @$(call gb_Top_InstallFinished,Installation,$(INSTALLDIR))
299 endif # !MACOSX
301 test-install: build
302 @rm -rf $(TESTINSTALLDIR)
303 @mkdir -p $(TESTINSTALLDIR)
304 ifeq ($(OS_FOR_BUILD),WNT)
305 cd $(SRCDIR)/instsetoo_native && $(MAKE) LIBO_TEST_INSTALL=TRUE $(GMAKE_OPTIONS)
306 else
307 @$(SRCDIR)/solenv/bin/ooinstall $(TESTINSTALLDIR)
308 ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
309 @$(SRCDIR)/solenv/bin/macosx-codesign-app-bundle $(TESTINSTALLDIR)/LibreOffice$(if $(ENABLE_RELEASE_BUILD),,Dev).app
310 endif
311 endif
312 @$(call gb_Top_InstallFinished,Test Installation,$(TESTINSTALLDIR))
314 mac-app-store-package: test-install
315 ifneq ($(MACOSX_PACKAGE_SIGNING_IDENTITY),)
316 mv "$(TESTINSTALLDIR)/$(PRODUCTNAME).app" "$(MACOSX_APP_NAME).app"
317 productbuild --component "$(MACOSX_APP_NAME).app" /Applications --sign $(MACOSX_PACKAGE_SIGNING_IDENTITY) $(shell echo "$(MACOSX_APP_NAME)" | tr ' ' '-').pkg
318 else
319 @echo You did not provide an installer signing identity with --enable-macosx-package-signing
320 @exit 1
321 endif
323 distro-pack-install: install
324 $(SRCDIR)/bin/distro-install-clean-up
325 $(SRCDIR)/bin/distro-install-desktop-integration
326 $(SRCDIR)/bin/distro-install-sdk
327 $(SRCDIR)/bin/distro-install-file-lists
329 install-package-%:
330 $(MAKE) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
333 @$(SRCDIR)/solenv/bin/create-ids
335 tags:
336 @$(SRCDIR)/solenv/bin/create-tags
338 etags:
339 @$(SRCDIR)/solenv/bin/create-tags -e
341 docs:
342 @$(SRCDIR)/solenv/bin/mkdocs.sh $(SRCDIR)/docs $(SRCDIR)/solenv/inc/doxygen.cfg
344 findunusedcode:
345 @$(SRCDIR)/bin/findunusedcode $(SRCDIR) $(MAKE)
347 findunusedheaders:
348 $(SRCDIR)/bin/find-unusedheaders.pl
351 dump-deps:
352 @$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild
354 dump-deps-png:
355 @$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild | dot -Tpng -o lo.png
357 dump-deps-sort:
358 @$(SRCDIR)/bin/module-deps.pl -t $(MAKE) $(SRCDIR)/Makefile.gbuild
360 define gb_Top_GbuildToIdeIntegration
361 $(1)-ide-integration:
362 cd $(SRCDIR) && (LC_MESSAGES=C $(MAKE) cmd="$(MAKE) -npf Makefile.gbuild all" cmd || true) | $(SRCDIR)/bin/gbuild-to-ide --ide $(1)
364 endef
366 $(foreach ide,\
367 debug \
368 kdevelop \
369 vs2012 \
370 vs2013 \
371 vim \
372 xcode \
373 qtcreator \
374 eclipsecdt,\
375 $(eval $(call gb_Top_GbuildToIdeIntegration,$(ide))))
377 endif # MAKE_RESTARTS
379 # vim: set noet sw=4 ts=4: