From 14b057b7fe224ebf9409bf834e0c4c1a83187f76 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 21 Sep 2017 09:43:17 +0100 Subject: add fodp fuzzer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ib6c439fa8db7de0544c8ee3340c07a40bf10bcb6 Reviewed-on: https://gerrit.libreoffice.org/42582 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- vcl/Executable_fodpfuzzer.mk | 49 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 vcl/Executable_fodpfuzzer.mk (limited to 'vcl/Executable_fodpfuzzer.mk') diff --git a/vcl/Executable_fodpfuzzer.mk b/vcl/Executable_fodpfuzzer.mk new file mode 100644 index 000000000000..1f8b05269b7c --- /dev/null +++ b/vcl/Executable_fodpfuzzer.mk @@ -0,0 +1,49 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +include $(SRCDIR)/vcl/commonfuzzer.mk + +$(eval $(call gb_Executable_Executable,fodpfuzzer)) + +$(eval $(call gb_Executable_use_api,fodpfuzzer,\ + offapi \ + udkapi \ +)) + +$(eval $(call gb_Executable_use_externals,fodpfuzzer,\ + $(fuzzer_externals) \ +)) + +$(eval $(call gb_Executable_set_include,fodpfuzzer,\ + $$(INCLUDE) \ + -I$(SRCDIR)/vcl/inc \ +)) + +$(eval $(call gb_Executable_use_libraries,fodpfuzzer,\ + $(fuzzer_draw_libraries) \ + $(fuzzer_core_libraries) \ +)) + +$(eval $(call gb_Executable_use_static_libraries,fodpfuzzer,\ + findsofficepath \ + ulingu \ + fuzzer_draw \ + fuzzerstubs \ +)) + +$(eval $(call gb_Executable_add_exception_objects,fodpfuzzer,\ + vcl/workben/fodpfuzzer \ +)) + +$(eval $(call gb_Executable_add_libs,fodpfuzzer,\ + -lFuzzingEngine \ +)) + +# vim: set noet sw=4 ts=4: -- cgit