Don't search for old (<= 2.0) .NET SDK anymore
[LibreOffice.git] / Makefile.in
blob4c1d09ee77db292d06322f4c34db9d0e5a8e60ec
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 : all 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?=all
15 build_goal:=$(if $(filter build check,$(MAKECMDGOALS)),all)\
16 $(if $(filter build-nocheck uicheck,$(MAKECMDGOALS)),build)\
17 $(if $(filter check,$(MAKECMDGOALS)),subsequentcheck $(if $(filter Linux, $(shell uname)), uicheck))\
18 $(filter all build-l10n-only build-non-l10n-only debugrun help showmodules translations $(gb_Top_MODULE_CHECK_TARGETS) check packageinfo gbuildtojson,$(MAKECMDGOALS))
20 SRCDIR := @SRC_ROOT@
21 BUILDDIR := @BUILDDIR@
22 COMPILER_PLUGINS := @COMPILER_PLUGINS@
23 GIT_BUILD := $(if $(wildcard $(SRCDIR)/.git),T)
25 # Run autogen.sh if needed and force make to restart itself.
26 # ... but there are several cases where we do not want to run
27 # autogen.sh:
28 # 1. if we are building from tarballs, not git checkout (I do not
29 # think packagers would ever want that. I certainly do not.)
30 # 2. if we are making help, clean or distclean, because they do not
31 # need updated configuration
32 ifeq (,$(MAKE_RESTARTS)$(if $(GIT_BUILD),,T)$(if $(filter-out help showmodules clean distclean,$(MAKECMDGOALS)),,T))
34 # note: this must touch both Makefile and $(BUILDDIR)/Makefile, because make
35 # may be invoked using either of these paths, and it will restart itself only
36 # if the updated target is exactly the same path as the Makefile it is using
37 .PHONY : force-restart
38 Makefile $(BUILDDIR)/Makefile: $(BUILDDIR)/config_host.mk $(BUILDDIR)/config_host_lang.mk force-restart
39 @touch $@
41 # run configure in an environment not polluted by config_host.mk
42 $(BUILDDIR)/config_host.mk : $(wildcard \
43 $(SRCDIR)/config_host.mk.in \
44 $(SRCDIR)/config_host_lang.mk.in \
45 $(SRCDIR)/Makefile.in \
46 $(SRCDIR)/instsetoo_native/util/openoffice.lst.in \
47 $(SRCDIR)/configure.ac \
48 $(SRCDIR)/config_host/*.h.in \
49 $(SRCDIR)/download.lst \
50 $(BUILDDIR)/autogen.input \
51 $(BUILDDIR)/autogen.lastrun \
52 $(BUILDDIR)/autogen.sh \
53 ) \
54 $(shell . $(SRCDIR)/bin/get_config_variables JAVA_HOME && \
55 if test -n "$${JAVA_HOME}" -a ! -d "$${JAVA_HOME}/bin"; then echo force-restart; fi)
56 sh -c $(SRCDIR)/autogen.sh
58 else # MAKE_RESTARTS
60 all: build
62 check-if-root:
63 @if test ! `uname` = 'Haiku' -a `id -u` = 0 && ! grep -q 'lxc\|docker' /proc/self/cgroup; then \
64 echo; \
65 echo 'No. You make ME a sandwich.'; \
66 echo; \
67 exit 1; \
70 gb_Side ?= host
72 include $(BUILDDIR)/config_$(gb_Side).mk
74 export GMAKE_OPTIONS?=-r$(if $(verbose),,s)$(value $(MAKEFLAGS))
76 PARALLELISM_OPTION := $(if $(filter-out 0,$(PARALLELISM)),-j $(PARALLELISM),)
78 IWYU_OPTION := $(if $(IWYU_PATH),-k CC=$(IWYU_PATH) CXX=$(IWYU_PATH),)
80 # don't want to have a dependency to iwyudummy.generate because it's
81 # useful to manually edit the generated StaticLibrary_iwyudummy.mk
82 iwyudummy: bootstrap fetch
83 $(if $(wildcard $(BUILDDIR)/iwyudummy),,$(error first call "make iwyudummy.generate"))
84 cd $(BUILDDIR)/iwyudummy && $(MAKE) $(IWYU_OPTION) $(GMAKE_OPTIONS)
86 iwyudummy.generate:
87 $(SRCDIR)/bin/gen-iwyu-dummy-lib
90 # Partial Build
92 define gb_Top_GbuildModuleRules
93 .PHONY: $(1) $(1).all $(1).build $(1).check $(1).clean $(1).showdeliverables $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target))
95 $(1): bootstrap fetch
96 cd $(SRCDIR)/$(2) && $$(MAKE) $(IWYU_OPTION) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS)
98 $(1).build $(1).check $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target)): bootstrap fetch
99 cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)
101 $(1).clean $(1).showdeliverables:
102 cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)
104 $(1).all: bootstrap fetch
105 $$(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))
107 endef
109 define gb_Top_GbuildModulesRules
110 $(foreach m,$(1),$(call gb_Top_GbuildModuleRules,$(notdir $(m)),$(m)))
111 endef
113 gbuild_modules := $(patsubst $(SRCDIR)/%/,%,$(dir $(wildcard $(SRCDIR)/*/Module_*.mk $(SRCDIR)/external/*/Module_*.mk)))
115 gbuild_internal_modules := $(filter-out odk external,$(patsubst $(SRCDIR)/%/,%,$(dir $(wildcard $(SRCDIR)/*/Module_*.mk))))
117 internal.clean: $(addsuffix .clean,$(gbuild_internal_modules))
120 $(eval $(call gb_Top_GbuildModulesRules,$(gbuild_modules)))
122 gbuild_TARGETS := AllLangHelp \
123 AllLangMoTarget \
124 AllLangPackage \
125 AutoInstall \
126 CliLibrary \
127 CliNativeLibrary \
128 CliUnoApi \
129 CompilerTest \
130 Configuration \
131 CppunitTest \
132 CustomTarget \
133 Dictionary \
134 Executable \
135 Extension \
136 ExtensionPackage \
137 ExtensionPackageSet \
138 ExternalPackage \
139 ExternalProject \
140 Gallery \
141 GeneratedPackage \
142 InstallModule \
143 InstallScript \
144 InternalUnoApi \
145 Jar \
146 JunitTest \
147 Library \
148 Module \
149 Package \
150 PackageSet \
151 Pagein \
152 Postprocess \
153 Pyuno \
154 PythonTest \
155 Rdb \
156 SdiTarget \
157 StaticLibrary \
158 UIConfig \
159 UITest \
160 UnoApi \
161 UnpackedTarball \
162 WinResTarget \
163 Zip \
165 # build a generic gbuild target
166 $(foreach target,$(gbuild_TARGETS),$(target)_% $(foreach module,$(gbuild_modules),$(target)_$(module)/%)) UIConfig_modules/% %.genpatch: bootstrap fetch
167 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
169 $(gbuild_TARGETS):
170 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
173 # Clean
175 clean: clean-host clean-build
177 clean-host:
178 rm -fr $(TESTINSTALLDIR)
179 rm -fr $(INSTDIR)
180 rm -fr $(WORKDIR)
181 ifeq ($(OS),IOS)
182 rm -fr $(SRCDIR)/ios/generated
183 endif
185 clean-build:
186 ifneq ($(CROSS_COMPILING),)
187 rm -fr $(INSTDIR_FOR_BUILD)
188 rm -fr $(WORKDIR_FOR_BUILD)
189 ifeq ($(OS),ANDROID)
190 rm -fr $(SRCDIR)/android/source/obj
191 rm -fr $(SRCDIR)/android/source/jniLibs
192 rm -fr $(SRCDIR)/android/source/build
193 rm -fr $(SRCDIR)/android/source/assets
194 rm -fr $(SRCDIR)/android/source/assets_fullUI
195 rm -fr $(SRCDIR)/android/source/assets_strippedUI
196 endif
197 endif
199 include $(SRCDIR)/compilerplugins/Makefile.mk
202 # Distclean
204 distclean : clean compilerplugins-clean
205 rm -fr \
206 $(BUILDDIR)/Makefile \
207 $(BUILDDIR)/aclocal.m4 \
208 $(BUILDDIR)/autom4te.cache \
209 $(BUILDDIR)/bin/bffvalidator.sh \
210 $(BUILDDIR)/bin/odfvalidator.sh \
211 $(BUILDDIR)/bin/officeotron.sh \
212 $(BUILDDIR)/config.log \
213 $(BUILDDIR)/config.Build.log \
214 $(BUILDDIR)/config.status \
215 $(BUILDDIR)/config_build.mk \
216 $(BUILDDIR)/config_build_lang.mk \
217 $(BUILDDIR)/config_build/*.h \
218 $(BUILDDIR)/config_host.mk \
219 $(BUILDDIR)/config_host.mk.stamp \
220 $(BUILDDIR)/config_host_lang.mk \
221 $(BUILDDIR)/config_host_lang.mk.stamp \
222 $(BUILDDIR)/config_host/*.h \
223 $(BUILDDIR)/configure \
224 $(BUILDDIR)/instsetoo_native/util/openoffice.lst \
225 $(BUILDDIR)/lo.xcent \
226 $(BUILDDIR)/sysui/desktop/macosx/Info.plist
227 $(FIND) $(SRCDIR)/solenv/gdb -name \*.pyc -exec rm {} \;
230 # custom command
232 cmd:
233 echo "custom cmd" && ( $(cmd) )
236 # Fetch
238 ifneq ($(DO_FETCH_TARBALLS),)
239 include $(SRCDIR)/Makefile.fetch
240 fetch: download
241 fetch: get-submodules
243 ifneq (,$(wildcard $(SRCDIR)/.git))
244 get-submodules:
245 ifneq ($(foreach i,$(GIT_NEEDED_SUBMODULES),$(SRCDIR)/$(i)/.git),$(wildcard $(foreach i,$(GIT_NEEDED_SUBMODULES),$(SRCDIR)/$(i)/.git)))
246 cd $(SRCDIR) && ./g -f clone
247 endif
248 ifeq ($(shell test -d $(SRCDIR)/.git; echo $$?),0)
249 @cd $(SRCDIR) && ./g -z # make sure the git hooks are in place even if no submodules are needed
250 endif
252 else # these sources are from a tarball, so get the other source tarballs
253 gb_LO_VER := $(shell . $(SRCDIR)/sources.ver && echo $$lo_sources_ver)
254 $(if $(gb_LO_VER),,$(error Error while retrieving $$lo_sources_ver from $(SRCDIR)/sources.ver))
256 get-submodules: | download
257 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))))
258 $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
259 $(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))
260 $(SRCDIR)/bin/unpack-sources $(SRCDIR) $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
261 $(TARFILE_LOCATION)/libreoffice-$(i)-$(gb_LO_VER).tar.xz)
262 endif
264 endif
266 else
267 fetch:
268 @echo "Automatic fetching of external tarballs is disabled."
270 endif
273 # Bootstrap
275 bootstrap: check-if-root compilerplugins
278 # Build
280 # Note: this will pipe through all gbuild targets to ... gbuild
281 # with some translations like "build"->"all" for historic reasons
283 build: bootstrap fetch $(if $(CROSS_COMPILING),cross-toolset) \
284 $(if $(filter check,$(MAKECMDGOALS)),$(if $(COMPILER_PLUGINS),$(if $(LODE_HOME),clang-format-check))) \
285 install-gdb-printers
286 $(MAKE) $(PARALLELISM_OPTION) $(IWYU_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $(build_goal)
287 ifeq ($(OS),IOS)
288 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) ios
289 endif
291 build-non-l10n-only build-l10n-only build-nocheck check debugrun translations packageinfo $(gb_Top_MODULE_CHECK_TARGETS): build
293 help showmodules gbuildtojson:
294 $(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
296 cross-toolset: bootstrap fetch
297 # fetch again in case there are externals only needed on build platform
298 ifneq ($(OS),IOS)
299 $(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(BUILDDIR)/Makefile fetch
300 endif
301 $(MAKE) gb_Side=build $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild build-tools
303 install-gdb-printers:
304 ifneq ($(filter-out WNT MACOSX IOS,$(OS)),)
305 mkdir -p $(INSTDIR)
306 $(SRCDIR)/solenv/bin/install-gdb-printers -a $(INSTDIR) -c
307 endif
311 # Install
314 define gb_Top_DoInstall
315 echo "$(1) in $(INSTALLDIR) ..." && \
316 $(SRCDIR)/solenv/bin/ooinstall $(2) "$(INSTALLDIR)"
318 endef
320 ifneq ($(OS),MACOSX)
321 define gb_Top_InstallFinished
322 echo && echo "If you want to edit the .ui files with glade first execute:" && \
323 echo && echo "export GLADE_CATALOG_SEARCH_PATH=$(2)/share/glade" && \
324 echo && echo "$(1) finished, you can now execute:" && \
325 echo "$(2)/program/soffice"
327 endef
328 else
329 define gb_Top_InstallFinished
330 echo && echo "$(1) finished, you can now run: " && \
331 echo "open $(2)/$(PRODUCTNAME).app" && \
332 echo "" && \
333 echo "To debug: gdb $(2)/$(PRODUCTNAME).app/Contents/MacOS/soffice"
335 endef
336 endif
338 ifneq ($(OS),MACOSX)
339 install:
340 @$(call gb_Top_DoInstall,Installing,)
341 @$(call gb_Top_InstallFinished,Installation,$(INSTALLDIR))
343 install-strip:
344 @$(call gb_Top_DoInstall,Installing and stripping binaries,--strip)
345 @$(call gb_Top_InstallFinished,Installation,$(INSTALLDIR))
346 endif # !MACOSX
348 test-install: build
349 @rm -rf $(TESTINSTALLDIR)
350 @mkdir -p $(TESTINSTALLDIR)
351 ifeq ($(OS_FOR_BUILD),WNT)
352 cd $(SRCDIR)/instsetoo_native && $(MAKE) LIBO_TEST_INSTALL=TRUE $(GMAKE_OPTIONS)
353 else
354 @$(SRCDIR)/solenv/bin/ooinstall $(TESTINSTALLDIR)
355 ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
357 # Create Resources/*.lproj directories for languages supported by OS X
358 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 \
359 lproj=$(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Resources/$$lang.lproj; \
360 mkdir "$$lproj"; \
361 done
363 # And remove the "bin" folder which should not be there
364 rm -rf $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/bin
366 # Remove unnecessary executables in the LibreOfficePython framework
367 rm -rf $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Frameworks/LibreOfficePython.framework/Versions/[1-9]*/bin
369 # Remove the python.o object file which is weird and interferes with app store uploading
370 # And with it removed, presumably the other stuff in the Python lib/python3.3/config-3.3m probably does not make sense either.
371 rm -rf $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/Frameworks/LibreOfficePython.framework/Versions/[1-9]*/lib/python[1-9]*/config-[1-9]*
373 ifneq ($(ENABLE_MACOSX_SANDBOX),)
375 # Remove the gengal binary that we hardly need and the shell scripts
376 # for which code signatures (stored as extended attributes) won't
377 # survive upload to the App Store anyway. See
378 # https://developer.apple.com/library/content/documentation/Security/Conceptual/CodeSigningGuide/Procedures/Procedures.html#//apple_ref/doc/uid/TP40005929-CH4-TNTAG201
379 # We could put the shell scripts somewhere in Resources instead, but
380 # no 3rd-party code that would be interested in them would look there
381 # anyway.
382 rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/gengal
383 rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unopkg
384 rm $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app/Contents/MacOS/unoinfo
385 endif
387 # Then use the macosx-codesign-app-bundle script
388 @$(SRCDIR)/solenv/bin/macosx-codesign-app-bundle $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app
389 endif
390 endif
391 @$(call gb_Top_InstallFinished,Test Installation,$(TESTINSTALLDIR))
393 mac-app-store-package: test-install
394 ifneq ($(MACOSX_PACKAGE_SIGNING_IDENTITY),)
395 rm -rf "$(PRODUCTNAME).app"
396 mv "$(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app" "$(PRODUCTNAME).app"
397 productbuild --component "$(PRODUCTNAME).app" /Applications --sign $(MACOSX_PACKAGE_SIGNING_IDENTITY) $(PRODUCTNAME_WITHOUT_SPACES).pkg
398 else
399 @echo You did not provide an installer signing identity with --enable-macosx-package-signing
400 @exit 1
401 endif
403 distro-pack-install: install
404 $(SRCDIR)/bin/distro-install-clean-up
405 $(SRCDIR)/bin/distro-install-desktop-integration
406 $(SRCDIR)/bin/distro-install-sdk
407 $(SRCDIR)/bin/distro-install-file-lists
409 install-package-%:
410 $(MAKE) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@
413 @$(SRCDIR)/solenv/bin/create-ids
415 tags:
416 @$(SRCDIR)/solenv/bin/create-tags
418 etags:
419 @$(SRCDIR)/solenv/bin/create-tags -e
421 docs:
422 @$(SRCDIR)/solenv/bin/mkdocs.sh $(SRCDIR)/docs $(SRCDIR)/solenv/inc/doxygen.cfg
424 findunusedheaders:
425 $(SRCDIR)/bin/find-unusedheaders.py
427 symbols:
428 rm -fr $(WORKDIR)/symbols/
429 mkdir -p $(WORKDIR)/symbols/
430 ifeq ($(OS),WNT)
431 $(SRCDIR)/bin/symbolstore.py $(WORKDIR)/UnpackedTarball/breakpad/src/tools/windows/binaries/dump_syms.exe $(WORKDIR)/symbols/ $(INSTDIR)/program/*
432 $(SRCDIR)/bin/symstore.sh
433 else
434 $(SRCDIR)/bin/symbolstore.py $(WORKDIR)/UnpackedTarball/breakpad/src/tools/linux/dump_syms/dump_syms $(WORKDIR)/symbols/ $(INSTDIR)/program/*
435 endif
437 cd $(WORKDIR)/symbols/ && zip -r $(WORKDIR)/symbols.zip *
439 create-mar:
440 rm -fr $(WORKDIR)/installation/mar/
441 rm -fr $(WORKDIR)/installation/temp/
442 mkdir -p $(WORKDIR)/installation/temp/
443 mkdir -p $(WORKDIR)/installation/mar/
444 tar -xzf $(WORKDIR)/installation/LibreOfficeDev/archive/install/en-US/LibreOffice* -C $(WORKDIR)/installation/temp/
445 $(SRCDIR)/bin/update/make_full_update.sh $(WORKDIR)/installation/mar/test.mar $(WORKDIR)/installation/temp/*/
447 upload-symbols:
448 $(MAKE) -f $(SRCDIR)/Makefile.gbuild upload-symbols
450 create-update-info:
451 $(MAKE) -f $(SRCDIR)/Makefile.gbuild create-update-info
453 upload-update-info:
454 $(MAKE) -f $(SRCDIR)/Makefile.gbuild upload-update-info
456 create-partial-info:
457 $(MAKE) -f $(SRCDIR)/Makefile.gbuild create-partial-info
459 dump-deps:
460 @$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild
462 dump-deps-png:
463 @$(SRCDIR)/bin/module-deps.pl $(MAKE) $(SRCDIR)/Makefile.gbuild | dot -Tpng -o lo.png
465 dump-deps-sort:
466 @$(SRCDIR)/bin/module-deps.pl -t $(MAKE) $(SRCDIR)/Makefile.gbuild
468 clang-format-check:
469 @$(SRCDIR)/solenv/clang-format/check-last-commit
471 define gb_Top_GbuildToIdeIntegration
472 $(1)-ide-integration: gbuildtojson $(if $(filter MACOSX,$(OS_FOR_BUILD)),python3.all)
473 cd $(SRCDIR) && \
474 $(if $(filter MACOSX,$(OS_FOR_BUILD)),PATH="$(INSTROOT_FOR_BUILD)/Frameworks/LibreOfficePython.framework/Versions/Current/bin:$(PATH)") \
475 $(SRCDIR)/bin/gbuild-to-ide --ide $(1) --make $(MAKE)
477 endef
479 $(foreach ide,\
480 codelite \
481 vs2015 \
482 kdevelop \
483 vim \
484 qtcreator \
485 xcode \
486 eclipsecdt,\
487 $(eval $(call gb_Top_GbuildToIdeIntegration,$(ide))))
489 fuzzers: 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_deploymentmisc Library_editeng Library_fwe Library_fwi 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 Executable_wmffuzzer Executable_jpgfuzzer Executable_giffuzzer Executable_xbmfuzzer Executable_xpmfuzzer Executable_pngfuzzer Executable_bmpfuzzer Executable_svmfuzzer Executable_pcdfuzzer Executable_dxffuzzer Executable_metfuzzer Executable_ppmfuzzer Executable_psdfuzzer Executable_epsfuzzer Executable_pctfuzzer Executable_pcxfuzzer Executable_rasfuzzer Executable_tgafuzzer Executable_tiffuzzer Executable_hwpfuzzer Executable_602fuzzer Executable_lwpfuzzer Executable_olefuzzer Executable_pptfuzzer Executable_rtffuzzer 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_mmlfuzzer Executable_mtpfuzzer Executable_htmlfuzzer Executable_sftfuzzer
491 endif # MAKE_RESTARTS
493 # vim: set noet sw=4 ts=4: