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
)
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
))
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
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
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 \
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
63 @if
test ! `uname` = 'Haiku' -a
`id -u` = 0 && ! grep
-q
'lxc\|docker' /proc
/self
/cgroup
; then \
65 echo
'Building LibreOffice as root is a very bad idea, use a regular user.'; \
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
)
87 $(SRCDIR
)/bin
/gen-iwyu-dummy-lib
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
))
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))
109 define gb_Top_GbuildModulesRules
110 $(foreach m
,$(1),$(call gb_Top_GbuildModuleRules
,$(notdir $(m
)),$(m
)))
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 \
137 ExtensionPackageSet \
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
$@
170 $(MAKE
) $(PARALLELISM_OPTION
) $(GMAKE_OPTIONS
) -f
$(SRCDIR
)/Makefile.gbuild
$@
175 clean: clean-host clean-build
178 rm -fr
$(TESTINSTALLDIR
)
183 ifneq ($(CROSS_COMPILING
),)
184 rm -fr
$(INSTDIR_FOR_BUILD
)
185 rm -fr
$(WORKDIR_FOR_BUILD
)
187 rm -fr
$(SRCDIR
)/android
/source
/obj
188 rm -fr
$(SRCDIR
)/android
/source
/jniLibs
189 rm -fr
$(SRCDIR
)/android
/source
/build
190 rm -fr
$(SRCDIR
)/android
/source
/assets
191 rm -fr
$(SRCDIR
)/android
/source
/assets_fullUI
192 rm -fr
$(SRCDIR
)/android
/source
/assets_strippedUI
196 include $(SRCDIR
)/compilerplugins
/Makefile.mk
201 distclean : clean compilerplugins-clean
203 $(BUILDDIR
)/Makefile \
204 $(BUILDDIR
)/aclocal.m4 \
205 $(BUILDDIR
)/autom4te.cache \
206 $(BUILDDIR
)/bin
/bffvalidator.sh \
207 $(BUILDDIR
)/bin
/odfvalidator.sh \
208 $(BUILDDIR
)/bin
/officeotron.sh \
209 $(BUILDDIR
)/config.log \
210 $(BUILDDIR
)/config.Build.log \
211 $(BUILDDIR
)/config.status \
212 $(BUILDDIR
)/config_build.mk \
213 $(BUILDDIR
)/config_build_lang.mk \
214 $(BUILDDIR
)/config_build \
215 $(BUILDDIR
)/config_host.mk \
216 $(BUILDDIR
)/config_host.mk.stamp \
217 $(BUILDDIR
)/config_host_lang.mk \
218 $(BUILDDIR
)/config_host_lang.mk.stamp \
219 $(BUILDDIR
)/config_host
/*.h \
220 $(BUILDDIR
)/configure \
221 $(BUILDDIR
)/instsetoo_native
/util
/openoffice.lst \
222 $(BUILDDIR
)/sysui
/desktop
/macosx
/Info.plist
223 $(if
$(filter WNT
,$(OS
)),env
-i PATH
="$$PATH") $(FIND
) $(SRCDIR
)/solenv
/gdb
-name \
*.pyc
-exec
rm {} \
;
229 echo
"custom cmd" && ( $(cmd
) )
234 ifneq ($(DO_FETCH_TARBALLS
),)
235 include $(SRCDIR
)/Makefile.fetch
237 fetch
: get-submodules
239 ifneq (,$(wildcard $(SRCDIR
)/.git
))
241 ifneq ($(foreach i
,$(GIT_NEEDED_SUBMODULES
),$(SRCDIR
)/$(i
)/.git
),$(wildcard $(foreach i
,$(GIT_NEEDED_SUBMODULES
),$(SRCDIR
)/$(i
)/.git
)))
242 cd
$(SRCDIR
) && .
/g
-f clone
244 ifeq ($(shell test -d
$(SRCDIR
)/.git
; echo
$$?
),0)
245 @cd
$(SRCDIR
) && .
/g
-z
# make sure the git hooks are in place even if no submodules are needed
248 else # these sources are from a tarball, so get the other source tarballs
249 gb_LO_VER
:= $(shell .
$(SRCDIR
)/sources.ver
&& echo
$$lo_sources_ver)
250 $(if
$(gb_LO_VER
),,$(error Error while retrieving
$$lo_sources_ver from
$(SRCDIR
)/sources.ver
))
252 get-submodules
: | download
253 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
))))
254 $(foreach i
,$(subst helpcontent2
,help
,$(GIT_NEEDED_SUBMODULES
)),\
255 $(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
))
256 $(SRCDIR
)/bin
/unpack-sources
$(SRCDIR
) $(foreach i
,$(subst helpcontent2
,help
,$(GIT_NEEDED_SUBMODULES
)),\
257 $(TARFILE_LOCATION
)/libreoffice-
$(i
)-$(gb_LO_VER
).
tar.xz
)
264 @echo
"Automatic fetching of external tarballs is disabled."
271 bootstrap
: check-if-root compilerplugins
276 # Note: this will pipe through all gbuild targets to ... gbuild
277 # with some translations like "build"->"all" for historic reasons
279 build
: bootstrap fetch
$(if
$(CROSS_COMPILING
),cross-toolset
) \
280 $(if
$(filter check,$(MAKECMDGOALS
)),$(if
$(COMPILER_PLUGINS
),$(if
$(LODE_HOME
),clang-format-check
))) \
282 $(MAKE
) $(PARALLELISM_OPTION
) $(IWYU_OPTION
) $(GMAKE_OPTIONS
) -f
$(SRCDIR
)/Makefile.gbuild
$(build_goal
)
284 $(MAKE
) $(PARALLELISM_OPTION
) $(GMAKE_OPTIONS
) ios
287 build-non-l10n-only build-l10n-only build-nocheck
check debugrun translations packageinfo
$(gb_Top_MODULE_CHECK_TARGETS
): build
289 help showmodules gbuildtojson
:
290 $(MAKE
) $(PARALLELISM_OPTION
) $(GMAKE_OPTIONS
) -f
$(SRCDIR
)/Makefile.gbuild
$@
292 cross-toolset
: bootstrap fetch
293 # fetch again in case there are externals only needed on build platform
295 $(MAKE
) gb_Side
=build
$(PARALLELISM_OPTION
) $(GMAKE_OPTIONS
) -f
$(BUILDDIR
)/Makefile fetch
297 $(MAKE
) gb_Side
=build
$(PARALLELISM_OPTION
) $(GMAKE_OPTIONS
) -f
$(SRCDIR
)/Makefile.gbuild build-tools
299 install-gdb-printers
:
300 ifneq ($(filter-out WNT MACOSX iOS
,$(OS
)),)
302 $(SRCDIR
)/solenv
/bin
/install-gdb-printers
-a
$(INSTDIR
) -c
310 define gb_Top_DoInstall
311 echo
"$(1) in $(INSTALLDIR) ..." && \
312 $(SRCDIR
)/solenv
/bin
/ooinstall
$(2) "$(INSTALLDIR)"
317 define gb_Top_InstallFinished
318 echo
&& echo
"If you want to edit the .ui files with glade first execute:" && \
319 echo
&& echo
"export GLADE_CATALOG_SEARCH_PATH=$(2)/share/glade" && \
320 echo
&& echo
"$(1) finished, you can now execute:" && \
321 echo
"$(2)/program/soffice"
325 define gb_Top_InstallFinished
326 echo
&& echo
"$(1) finished, you can now run: " && \
327 echo
"open $(2)/$(PRODUCTNAME).app" && \
329 echo
"To debug: gdb $(2)/$(PRODUCTNAME).app/Contents/MacOS/soffice"
336 @
$(call gb_Top_DoInstall
,Installing
,)
337 @
$(call gb_Top_InstallFinished
,Installation
,$(INSTALLDIR
))
340 @
$(call gb_Top_DoInstall
,Installing and stripping binaries
,--strip)
341 @
$(call gb_Top_InstallFinished
,Installation
,$(INSTALLDIR
))
345 @
rm -rf
$(TESTINSTALLDIR
)
346 @mkdir
-p
$(TESTINSTALLDIR
)
347 ifeq ($(OS_FOR_BUILD
),WNT
)
348 cd
$(SRCDIR
)/instsetoo_native
&& $(MAKE
) LIBO_TEST_INSTALL
=TRUE
$(GMAKE_OPTIONS
)
350 @
$(SRCDIR
)/solenv
/bin
/ooinstall
$(TESTINSTALLDIR
)
351 ifneq ($(MACOSX_CODESIGNING_IDENTITY
),)
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
; \
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
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
380 # Then use the macosx-codesign-app-bundle script
381 @
$(SRCDIR
)/solenv
/bin
/macosx-codesign-app-bundle
$(TESTINSTALLDIR
)/$(PRODUCTNAME_WITHOUT_SPACES
).app
384 @
$(call gb_Top_InstallFinished
,Test Installation
,$(TESTINSTALLDIR
))
386 mac-app-store-package
: test-install
387 ifneq ($(MACOSX_PACKAGE_SIGNING_IDENTITY
),)
388 rm -rf
"$(PRODUCTNAME).app"
389 mv
"$(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app" "$(PRODUCTNAME).app"
390 productbuild
--component
"$(PRODUCTNAME).app" /Applications
--sign
$(MACOSX_PACKAGE_SIGNING_IDENTITY
) $(PRODUCTNAME_WITHOUT_SPACES
).pkg
392 @echo You did not provide an installer signing identity with
--enable-macosx-package-signing
396 distro-pack-install
: install
397 $(SRCDIR
)/bin
/distro-install-clean-up
398 $(SRCDIR
)/bin
/distro-install-desktop-integration
399 $(SRCDIR
)/bin
/distro-install-sdk
400 $(SRCDIR
)/bin
/distro-install-file-lists
403 $(MAKE
) $(GMAKE_OPTIONS
) -f
$(SRCDIR
)/Makefile.gbuild
$@
406 @
$(SRCDIR
)/solenv
/bin
/create-ids
409 @
$(SRCDIR
)/solenv
/bin
/create-tags
412 @
$(SRCDIR
)/solenv
/bin
/create-tags
-e
415 @
$(SRCDIR
)/solenv
/bin
/mkdocs.sh
$(SRCDIR
)/docs
$(SRCDIR
)/solenv
/inc
/doxygen.cfg
418 $(SRCDIR
)/bin
/find-unusedheaders.py
421 rm -fr
$(WORKDIR
)/symbols
/
422 mkdir
-p
$(WORKDIR
)/symbols
/
424 $(SRCDIR
)/bin
/symbolstore.py
$(WORKDIR
)/UnpackedTarball
/breakpad
/src
/tools
/windows
/binaries
/dump_syms.exe
$(WORKDIR
)/symbols
/ $(INSTDIR
)/program
/*
425 $(SRCDIR
)/bin
/symstore.sh
427 $(SRCDIR
)/bin
/symbolstore.py
$(WORKDIR
)/UnpackedTarball
/breakpad
/src
/tools
/linux
/dump_syms
/dump_syms
$(WORKDIR
)/symbols
/ $(INSTDIR
)/program
/*
430 cd
$(WORKDIR
)/symbols
/ && zip
-r
$(WORKDIR
)/symbols.zip
*
433 rm -fr
$(WORKDIR
)/installation
/mar
/
434 rm -fr
$(WORKDIR
)/installation
/temp
/
435 mkdir
-p
$(WORKDIR
)/installation
/temp
/
436 mkdir
-p
$(WORKDIR
)/installation
/mar
/
437 tar -xzf
$(WORKDIR
)/installation
/LibreOfficeDev
/archive
/install/en-US
/LibreOffice
* -C
$(WORKDIR
)/installation
/temp
/
438 $(SRCDIR
)/bin
/update
/make_full_update.sh
$(WORKDIR
)/installation
/mar
/test.mar
$(WORKDIR
)/installation
/temp
/*/
441 $(MAKE
) -f
$(SRCDIR
)/Makefile.gbuild upload-symbols
444 $(MAKE
) -f
$(SRCDIR
)/Makefile.gbuild create-update-info
447 $(MAKE
) -f
$(SRCDIR
)/Makefile.gbuild upload-update-info
450 $(MAKE
) -f
$(SRCDIR
)/Makefile.gbuild create-partial-info
453 @
$(SRCDIR
)/bin
/module-deps.pl
$(MAKE
) $(SRCDIR
)/Makefile.gbuild
456 @
$(SRCDIR
)/bin
/module-deps.pl
$(MAKE
) $(SRCDIR
)/Makefile.gbuild | dot
-Tpng
-o lo.png
459 @
$(SRCDIR
)/bin
/module-deps.pl
-t
$(MAKE
) $(SRCDIR
)/Makefile.gbuild
462 @
$(SRCDIR
)/solenv
/clang-format
/check-last-commit
464 define gb_Top_GbuildToIdeIntegration
465 $(1)-ide-integration
: gbuildtojson
$(if
$(filter MACOSX
,$(OS_FOR_BUILD
)),python3.
all)
467 $(if
$(filter MACOSX
,$(OS_FOR_BUILD
)),PATH
="$(INSTROOT_FOR_BUILD)/Frameworks/LibreOfficePython.framework/Versions/Current/bin:$(PATH)") \
468 $(SRCDIR
)/bin
/gbuild-to-ide
--ide
$(1) --make
$(MAKE
)
481 $(eval
$(call gb_Top_GbuildToIdeIntegration
,$(ide
))))
483 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_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_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
485 endif # MAKE_RESTARTS
487 # vim: set noet sw=4 ts=4: