blob: 2e14ecbd89874bb37de47336c70b9f74f056db83 [file] [log] [blame]
Noel Grandin53c5d572024-01-30 13:47:03 +02001# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
2#
3#
Michael Meeksd037b812026-03-26 15:06:16 +00004# This file is part of the Collabora Office project.
Noel Grandin53c5d572024-01-30 13:47:03 +02005#
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/.
9#
10
11include $(SRCDIR)/vcl/commonfuzzer.mk
12
13$(eval $(call gb_Executable_Executable,fods2xlsfuzzer))
14
15$(eval $(call gb_Executable_use_api,fods2xlsfuzzer,\
16 offapi \
17 udkapi \
18))
19
20$(eval $(call gb_Executable_use_externals,fods2xlsfuzzer,\
21 $(fuzzer_externals) \
22 epubgen \
23 revenge \
24))
25
26$(eval $(call gb_Executable_set_include,fods2xlsfuzzer,\
27 $$(INCLUDE) \
28 -I$(SRCDIR)/vcl/inc \
29))
30
31$(eval $(call gb_Executable_use_libraries,fods2xlsfuzzer,\
32 $(fuzzer_calc_libraries) \
33 $(fuzzer_core_libraries) \
34 pdffilter \
35))
36
37$(eval $(call gb_Executable_use_static_libraries,fods2xlsfuzzer,\
38 $(fuzzer_statics) \
39 fuzzer_calc \
40))
41
42$(eval $(call gb_Executable_add_exception_objects,fods2xlsfuzzer,\
43 vcl/workben/fods2xlsfuzzer \
44))
45
46$(eval $(call gb_Executable_add_libs,fods2xlsfuzzer,\
47 $(LIB_FUZZING_ENGINE) \
48))
49
50# vim: set noet sw=4 ts=4: