[en-GB] Added 13 words to autocorrect
[LibreOffice.git] / Makefile.in
blob860240a8aa512b50f6b6bf2ce2c118ee252d7d97
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 uicheck screenshot
12 .PHONY : check-if-root 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 get-submodules id install install-gdb-printers install-strip tags debugrun help showmodules translations packageinfo internal.clean $(gb_Top_MODULE_CHECK_TARGETS)
14 MAKECMDGOALS?=build
15 build_goal:=$(if $(filter build build-nocheck uicheck,$(MAKECMDGOALS)),build)\
16 $(if $(filter check,$(MAKECMDGOALS)),unitcheck slowcheck subsequentcheck $(if $(filter Linux, $(shell uname)), uicheck))\
17 $(filter build-l10n-only build-non-l10n-only debugrun help showmodules translations $(gb_Top_MODULE_CHECK_TARGETS) check packageinfo gbuildtojson,$(MAKECMDGOALS))
19 SRCDIR := @SRC_ROOT@
20 BUILDDIR := @BUILDDIR@
21 COMPILER_PLUGINS := @COMPILER_PLUGINS@
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 # note: this must touch both Makefile and $(BUILDDIR)/Makefile, because make
34 # may be invoked using either of these paths, and it will restart itself only
35 # if the updated target is exactly the same path as the Makefile it is using
36 .PHONY : force-restart
37 Makefile $(BUILDDIR)/Makefile: $(BUILDDIR)/config_host.mk $(BUILDDIR)/config_host_lang.mk force-restart
38 @touch $@
40 # run configure in an environment not polluted by config_host.mk
41 $(BUILDDIR)/config_host.mk : $(wildcard \
42 $(SRCDIR)/config_host.mk.in \
43 $(SRCDIR)/config_host_lang.mk.in \
44 $(SRCDIR)/Makefile.in \
45 $(SRCDIR)/instsetoo_native/util/openoffice.lst.in \
46 $(SRCDIR)/configure.ac \
47 $(SRCDIR)/config_host/*.h.in \
48 $(SRCDIR)/download.lst \
49 $(BUILDDIR)/autogen.input \
50 $(BUILDDIR)/autogen.lastrun \
51 $(BUILDDIR)/autogen.sh \
52 ) \
53 $(shell . $(SRCDIR)/bin/get_config_variables JAVA_HOME && \
54 if test -n "$${JAVA_HOME}" -a ! -d "$${JAVA_HOME}/bin"; then echo force-restart; fi)
55 sh -c $(SRCDIR)/autogen.sh
57 else # MAKE_RESTARTS
59 .DEFAULT_GOAL := build
61 check-if-root:
62 @if test ! `uname` = 'Haiku' -a `id -u` = 0 && test -z $$container && ! grep -q 'lxc\|docker' /proc/self/cgroup && ! grep -q 'libpod_parent' /proc/self/cgroup; then \
63 echo; \
64 echo 'Building LibreOffice as root is a very bad idea, use a regular user.'; \
65 echo; \
66 exit 1; \
69 gb_Side ?= host
71 include $(BUILDDIR)/config_$(gb_Side).mk
73 export GMAKE_OPTIONS?=-r$(if $(verbose),,s)$(value $(MAKEFLAGS))
75 PARALLELISM_OPTION := $(if $(filter-out 0,$(PARALLELISM)),-j $(PARALLELISM),)
77 IWYU_OPTION := $(if $(IWYU_PATH),-k CC=$(IWYU_PATH) CXX=$(IWYU_PATH),)
79 # don't want to have a dependency to iwyudummy.generate because it's
80 # useful to manually edit the generated StaticLibrary_iwyudummy.mk
81 iwyudummy: bootstrap fetch
82 $(if $(wildcard $(BUILDDIR)/iwyudummy),,$(error first call "make iwyudummy.generate"))
83 cd $(BUILDDIR)/iwyudummy && $(MAKE) $(IWYU_OPTION) $(GMAKE_OPTIONS)
85 iwyudummy.generate:
86 $(SRCDIR)/bin/gen-iwyu-dummy-lib
89 # Partial Build
91 define gb_Top_GbuildModuleRules
92 .PHONY: $(1) $(1).build $(1).all $(1).check $(1).clean $(1).showdeliverables $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target))
94 $(1): bootstrap fetch
95 cd $(SRCDIR)/$(2) && $$(MAKE) $(IWYU_OPTION) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS)
97 $(1).build $(1).check $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target)): bootstrap fetch
98 cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)
100 $(1).clean $(1).showdeliverables:
101 cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)
103 $(1).all: bootstrap fetch
104 $$(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))
106 endef
108 define gb_Top_GbuildModulesRules
109 $(foreach m,$(1),$(call gb_Top_GbuildModuleRules,$(notdir $(m)),$(m)))
110 endef
112 gbuild_modules := $(patsubst $(SRCDIR)/%/,%,$(dir $(wildcard $(SRCDIR)/*/Module_*.mk $(SRCDIR)/external/*/Module_*.mk)))
114 gbuild_internal_modules := $(filter-out odk external,$(patsubst $(SRCDIR)/%/,%,$(dir $(wildcard $(SRCDIR)/*/Module_*.mk))))
116 internal.clean: $(addsuffix .clean,$(gbuild_internal_modules))
119 $(eval $(call gb_Top_GbuildModulesRules,$(gbuild_modules)))
121 gbuild_TARGETS := AllLangHelp \
122 AllLangMoTarget \
123 AllLangPackage \
124 AutoInstall \
125 CliLibrary \
126 CliNativeLibrary \
127 CliUnoApi \
128 CompilerTest \
129 Configuration \
130 CppunitTest \
131 CustomTarget \
132 Dictionary \
133 Executable \
134 Extension \
135 ExtensionPackage \
136 ExtensionPackageSet \
137 ExternalPackage \
138 ExternalProject \
139 Gallery \
140 GeneratedPackage \
141 InstallModule \
142 InstallScript \
143 InternalUnoApi \
144 Jar \
145 JunitTest \
146 Library \
147 Module \
148 Package \
149 PackageSet \
150 Pagein \
151 Postprocess \
152 Pyuno \
153 PythonTest \
154 Rdb \
155 SdiTarget \
156 StaticLibrary \
157 UIConfig \
158 UITest \
159 UnoApi \
160 UnpackedTarball \
161 WinResTarget \
162 Zip \
164 # build a generic gbuild target
165 $(foreach target,$(gbuild_TARGETS),$(target)_% $(foreach module,$(gbuild_modules),$(target)_$(module)/%)) UIConfig_modules/% %.genpatch: bootstrap fetch
166 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
168 $(gbuild_TARGETS):
169 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
172 # Clean
174 clean: clean-host clean-build
176 clean-host:
177 rm -fr $(TESTINSTALLDIR)
178 rm -fr $(INSTDIR)
179 rm -fr $(WORKDIR)
181 clean-build:
182 ifneq ($(CROSS_COMPILING),)
183 rm -fr $(INSTDIR_FOR_BUILD)
184 rm -fr $(WORKDIR_FOR_BUILD)
185 ifeq ($(OS),ANDROID)
186 rm -fr $(BUILDDIR)/android/obj
187 rm -fr $(BUILDDIR)/android/jniLibs
188 rm -fr $(SRCDIR)/android/source/build
189 rm -fr $(SRCDIR)/android/source/assets
190 rm -fr $(SRCDIR)/android/source/assets_fullUI
191 rm -fr $(SRCDIR)/android/source/assets_strippedUI
192 endif
193 endif
195 include $(SRCDIR)/compilerplugins/Makefile.mk
198 # Distclean
200 distclean : clean compilerplugins-clean
201 rm -fr \
202 $(BUILDDIR)/Makefile \
203 $(BUILDDIR)/aclocal.m4 \
204 $(BUILDDIR)/autom4te.cache \
205 $(BUILDDIR)/bin/bffvalidator.sh \
206 $(BUILDDIR)/bin/odfvalidator.sh \
207 $(BUILDDIR)/bin/officeotron.sh \
208 $(BUILDDIR)/config.log \
209 $(BUILDDIR)/config.Build.log \
210 $(BUILDDIR)/config.status \
211 $(BUILDDIR)/config_build.mk \
212 $(BUILDDIR)/config_build_lang.mk \
213 $(BUILDDIR)/config_build \
214 $(BUILDDIR)/config_host.mk \
215 $(BUILDDIR)/config_host.mk.stamp \
216 $(BUILDDIR)/config_host_lang.mk \
217 $(BUILDDIR)/config_host_lang.mk.stamp \
218 $(BUILDDIR)/config_host/*.h \
219 $(BUILDDIR)/configure \
220 $(BUILDDIR)/hardened_runtime.xcent \
221 $(BUILDDIR)/instsetoo_native/util/openoffice.lst \
222 $(BUILDDIR)/sysui/desktop/macosx/Info.plist \
223 $(BUILDDIR)/vs-code-template.code-workspace
224 $(if $(filter WNT,$(OS)),env -i PATH="$$PATH") $(FIND) $(SRCDIR)/solenv/gdb -name \*.pyc -exec rm {} \;
227 # custom command
229 cmd:
230 echo "custom cmd" && ( $(cmd) )
233 # Fetch
235 ifneq ($(DO_FETCH_TARBALLS),)
236 include $(SRCDIR)/Makefile.fetch
237 fetch: download
238 fetch: get-submodules
240 ifneq (,$(wildcard $(SRCDIR)/.git))
241 get-submodules:
242 ifneq ($(foreach i,$(GIT_NEEDED_SUBMODULES),$(SRCDIR)/$(i)/.git),$(wildcard $(foreach i,$(GIT_NEEDED_SUBMODULES),$(SRCDIR)/$(i)/.git)))
243 cd $(SRCDIR) && ./g -f clone
244 endif
245 ifeq ($(shell test -d $(SRCDIR)/.git; echo $$?),0)
246 @cd $(SRCDIR) && ./g -z # make sure the git hooks are in place even if no submodules are needed
247 endif
249 else # these sources are from a tarball, so get the other source tarballs
250 gb_LO_VER := $(shell . $(SRCDIR)/sources.ver && echo $$lo_sources_ver)
251 $(if $(gb_LO_VER),,$(error Error while retrieving $$lo_sources_ver from $(SRCDIR)/sources.ver))
253 get-submodules: | download
254 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))))
255 $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
256 $(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))
257 $(SRCDIR)/bin/unpack-sources $(SRCDIR) $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
258 $(TARFILE_LOCATION)/libreoffice-$(i)-$(gb_LO_VER).tar.xz)
259 endif
261 endif
263 else
264 fetch:
265 @echo "Automatic fetching of external tarballs is disabled."
267 endif
270 # Bootstrap
272 bootstrap: check-if-root compilerplugins
275 # Build
277 # Note: this will pipe through all gbuild targets to ... gbuild
278 # with some translations like "check"->"unitcheck subsequentcheck uicheck" for historic reasons
280 build: bootstrap fetch $(if $(CROSS_COMPILING),cross-toolset) \
281 $(if $(filter check,$(MAKECMDGOALS)),$(if $(COMPILER_PLUGINS),$(if $(LODE_HOME),clang-format-check))) \
282 install-gdb-printers
283 $(MAKE) $(PARALLELISM_OPTION) $(IWYU_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $(build_goal)
284 ifeq ($(OS),iOS)
285 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) ios
286 endif
288 build-non-l10n-only build-l10n-only build-nocheck check debugrun translations packageinfo $(gb_Top_MODULE_CHECK_TARGETS): build
290 help showmodules gbuildtojson:
291 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
293 cross-toolset: bootstrap fetch
294 # fetch again in case there are externals only needed on build platform
295 ifneq ($(OS),iOS)
296 $(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(BUILDDIR)/Makefile fetch
297 endif
298 $(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild build-tools
300 install-gdb-printers:
301 ifneq ($(filter-out WNT MACOSX iOS,$(OS)),)
302 mkdir -p $(INSTDIR)
303 $(SRCDIR)/solenv/bin/install-gdb-printers -a $(INSTDIR) -c
304 endif
308 # Install
311 define gb_Top_DoInstall
312 echo "$(1) in $(INSTALLDIR) ..." && \
313 $(SRCDIR)/solenv/bin/ooinstall $(2) "$(INSTALLDIR)"
315 endef
317 ifneq ($(OS),MACOSX)
318 define gb_Top_InstallFinished
319 echo && echo "If you want to edit the .ui files with glade first execute:" && \
320 echo && echo "export GLADE_CATALOG_SEARCH_PATH=$(2)/share/glade" && \
321 echo && echo "$(1) finished, you can now execute:" && \
322 echo "$(2)/program/soffice"
324 endef
325 else
326 define gb_Top_InstallFinished
327 echo && echo "$(1) finished, you can now run: " && \
328 echo "open $(2)/$(PRODUCTNAME).app" && \
329 echo "" && \
330 echo "To debug: gdb $(2)/$(PRODUCTNAME).app/Contents/MacOS/soffice"
332 endef
333 endif
335 ifneq ($(OS),MACOSX)
336 install:
337 @$(call gb_Top_DoInstall,Installing,)
338 @$(call gb_Top_InstallFinished,Installation,$(INSTALLDIR))
340 install-strip:
341 @$(call gb_Top_DoInstall,Installing and stripping binaries,--strip)
342 @$(call gb_Top_InstallFinished,Installation,$(INSTALLDIR))
343 endif # !MACOSX
345 test-install: build
346 @rm -rf $(TESTINSTALLDIR)
347 @mkdir -p $(TESTINSTALLDIR)
348 ifeq ($(OS_FOR_BUILD),WNT)
349 cd $(SRCDIR)/instsetoo_native && $(MAKE) LIBO_TEST_INSTALL=TRUE $(GMAKE_OPTIONS)
350 else
351 @$(SRCDIR)/solenv/bin/ooinstall $(TESTINSTALLDIR)
353 # Create Resources/*.lproj directories for languages supported by macOS
354 set -x; for lang in ca cs da de el en es fi fr hr hu id it ja ko ms nl no pl pt pt_PT ro ru sk sv th tr uk vi zh_CN zh_TW; do \
355 lproj=$(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Resources/$$lang.lproj; \
356 mkdir "$$lproj"; \
357 done
359 # Remove unnecessary executables in the LibreOfficePython framework
360 rm -rf $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Frameworks/LibreOfficePython.framework/Versions/[1-9]*/bin
362 # Remove the python.o object file which is weird and interferes with app store uploading
363 # And with it removed, presumably the other stuff in the Python lib/python3.3/config-3.3m probably does not make sense either.
364 rm -rf $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Frameworks/LibreOfficePython.framework/Versions/[1-9]*/lib/python[1-9]*/config-[1-9]*
366 ifneq ($(ENABLE_MACOSX_SANDBOX),)
368 # Remove the gengal binary that we hardly need and the shell scripts
369 # for which code signatures (stored as extended attributes) won't
370 # survive upload to the App Store anyway. See
371 # https://developer.apple.com/library/content/documentation/Security/Conceptual/CodeSigningGuide/Procedures/Procedures.html#//apple_ref/doc/uid/TP40005929-CH4-TNTAG201
372 # We could put the shell scripts somewhere in Resources instead, but
373 # no 3rd-party code that would be interested in them would look there
374 # anyway.
375 rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/gengal
376 rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unopkg
377 rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unoinfo
378 endif
380 ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
381 # Then use the macosx-codesign-app-bundle script
382 @$(SRCDIR)/solenv/bin/macosx-codesign-app-bundle $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app
383 endif
384 endif
385 @$(call gb_Top_InstallFinished,Test Installation,$(TESTINSTALLDIR))
387 mac-app-store-package: test-install
388 ifneq ($(MACOSX_PACKAGE_SIGNING_IDENTITY),)
389 rm -rf "$(PRODUCTNAME).app"
390 mv "$(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app" "$(PRODUCTNAME).app"
391 productbuild --component "$(PRODUCTNAME).app" /Applications --sign $(MACOSX_PACKAGE_SIGNING_IDENTITY) $(PRODUCTNAME_WITHOUT_SPACES).pkg
392 else
393 @echo You did not provide an installer signing identity with --enable-macosx-package-signing
394 @exit 1
395 endif
397 distro-pack-install: install
398 $(SRCDIR)/bin/distro-install-clean-up
399 $(SRCDIR)/bin/distro-install-desktop-integration
400 $(SRCDIR)/bin/distro-install-sdk
401 $(SRCDIR)/bin/distro-install-file-lists
403 install-package-%:
404 $(MAKE) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
407 @$(SRCDIR)/solenv/bin/create-ids
409 tags:
410 @$(SRCDIR)/solenv/bin/create-tags
412 etags:
413 @$(SRCDIR)/solenv/bin/create-tags -e
415 docs:
416 @$(SRCDIR)/solenv/bin/mkdocs.sh $(SRCDIR)/docs $(SRCDIR)/solenv/inc/doxygen.cfg
418 findunusedheaders:
419 $(SRCDIR)/bin/find-unusedheaders.py
421 symbols:
422 rm -fr $(WORKDIR)/symbols/
423 mkdir -p $(WORKDIR)/symbols/
424 ifeq ($(OS),WNT)
425 $(SRCDIR)/bin/symbolstore.py $(WORKDIR)/UnpackedTarball/breakpad/src/tools/windows/binaries/dump_syms.exe $(WORKDIR)/symbols/ $(INSTDIR)/program/*
426 $(SRCDIR)/bin/symstore.sh
427 else
428 $(SRCDIR)/bin/symbolstore.py $(WORKDIR)/UnpackedTarball/breakpad/src/tools/linux/dump_syms/dump_syms $(WORKDIR)/symbols/ $(INSTDIR)/program/*
429 endif
431 cd $(WORKDIR)/symbols/ && zip -r $(WORKDIR)/symbols.zip *
433 create-mar:
434 rm -fr $(WORKDIR)/installation/mar/
435 rm -fr $(WORKDIR)/installation/temp/
436 mkdir -p $(WORKDIR)/installation/temp/
437 mkdir -p $(WORKDIR)/installation/mar/
438 tar -xzf $(WORKDIR)/installation/LibreOfficeDev/archive/install/en-US/LibreOffice* -C $(WORKDIR)/installation/temp/
439 $(SRCDIR)/bin/update/make_full_update.sh $(WORKDIR)/installation/mar/test.mar $(WORKDIR)/installation/temp/*/
441 upload-symbols:
442 $(MAKE) -f $(SRCDIR)/Makefile.gbuild upload-symbols
444 create-update-info:
445 $(MAKE) -f $(SRCDIR)/Makefile.gbuild create-update-info
447 upload-update-info:
448 $(MAKE) -f $(SRCDIR)/Makefile.gbuild upload-update-info
450 create-partial-info:
451 $(MAKE) -f $(SRCDIR)/Makefile.gbuild create-partial-info
453 dump-deps:
454 @$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild
456 dump-deps-png:
457 @$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild | dot -Tpng -o lo.png
459 dump-deps-sort:
460 @$(SRCDIR)/bin/module-deps.pl -t $(MAKE) $(SRCDIR)/Makefile.gbuild
462 clang-format-check:
463 @$(SRCDIR)/solenv/clang-format/check-last-commit
465 define gb_Top_GbuildToIdeIntegration
466 $(1)-ide-integration: gbuildtojson $(if $(filter MACOSX,$(OS_FOR_BUILD)),python3.all)
467 cd $(SRCDIR) && \
468 $(if $(filter MACOSX,$(OS_FOR_BUILD)),PATH="$(INSTROOT_FOR_BUILD)/Frameworks/LibreOfficePython.framework/Versions/Current/bin:$(PATH)") \
469 $(SRCDIR)/bin/gbuild-to-ide --ide $(1) --make $(MAKE)
471 endef
473 $(foreach ide,\
474 codelite \
475 vs2017 \
476 vs2019 \
477 kdevelop \
478 vim \
479 qtcreator \
480 xcode \
481 eclipsecdt,\
482 $(eval $(call gb_Top_GbuildToIdeIntegration,$(ide))))
484 fuzzers: StaticLibrary_dtoa StaticLibrary_zlib Library_sal Library_salhelper Library_reg Library_store Library_unoidl codemaker Library_cppu Library_i18nlangtag Library_cppuhelper Library_comphelper StaticLibrary_ulingu StaticLibrary_findsofficepath Library_tl Library_basegfx Library_canvastools Library_cppcanvas Library_dbtools Library_deploymentmisc Library_editeng Library_i18nutil Library_localebe1 Library_sax Library_sofficeapp Library_ucbhelper Rdb_services udkapi offapi Library_gie Library_icg Library_reflection Library_invocadapt Library_bootstrap Library_introspection Library_stocservices Library_xmlreader Library_gcc3_uno instsetoo_native more_fonts StaticLibrary_boost_locale StaticLibrary_fuzzerstubs StaticLibrary_fuzzer_core StaticLibrary_fuzzer_calc StaticLibrary_fuzzer_draw StaticLibrary_fuzzer_writer StaticLibrary_fuzzer_math Library_forui Library_binaryurp Library_io Library_invocation Library_namingservice Library_proxyfac Library_uuresolver Module_ure Library_wpftwriter Executable_pptfuzzer Executable_cgmfuzzer Executable_ww2fuzzer Executable_ww6fuzzer Executable_ww8fuzzer Executable_qpwfuzzer Executable_slkfuzzer Executable_fodtfuzzer Executable_fodsfuzzer Executable_fodpfuzzer Executable_xlsfuzzer Executable_scrtffuzzer Executable_wksfuzzer Executable_diffuzzer Executable_docxfuzzer Executable_xlsxfuzzer Executable_pptxfuzzer Executable_htmlfuzzer Executable_rtffuzzer Executable_mmlfuzzer Executable_mtpfuzzer Executable_olefuzzer Executable_lwpfuzzer Executable_hwpfuzzer Executable_wmffuzzer Executable_dxffuzzer Executable_sftfuzzer Executable_svmfuzzer Executable_tiffuzzer Executable_epsfuzzer Executable_jpgfuzzer Executable_metfuzzer Executable_bmpfuzzer Executable_giffuzzer Executable_pngfuzzer Executable_602fuzzer Executable_tgafuzzer Executable_pcxfuzzer Executable_psdfuzzer Executable_ppmfuzzer Executable_pcdfuzzer Executable_rasfuzzer Executable_pctfuzzer Executable_xpmfuzzer Executable_xbmfuzzer
486 endif # MAKE_RESTARTS
488 # vim: set noet sw=4 ts=4: