2020-04-04 20:01:13 -03:00
|
|
|
# Copyright (c) 2013-2020 The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
LIBTEST_FUZZ=libtest_fuzz.a
|
|
|
|
|
|
|
|
EXTRA_LIBRARIES += \
|
|
|
|
$(LIBTEST_FUZZ)
|
|
|
|
|
|
|
|
TEST_FUZZ_H = \
|
|
|
|
test/fuzz/fuzz.h \
|
|
|
|
test/fuzz/FuzzedDataProvider.h \
|
2022-09-30 13:55:10 -03:00
|
|
|
test/fuzz/util.h \
|
2022-11-15 08:18:03 -03:00
|
|
|
test/fuzz/util/mempool.h \
|
|
|
|
test/fuzz/util/net.h
|
2020-04-04 20:01:13 -03:00
|
|
|
|
2022-09-15 05:30:14 -03:00
|
|
|
libtest_fuzz_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(BOOST_CPPFLAGS)
|
2020-04-04 20:01:13 -03:00
|
|
|
libtest_fuzz_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
libtest_fuzz_a_SOURCES = \
|
|
|
|
test/fuzz/fuzz.cpp \
|
2021-01-23 15:32:20 -03:00
|
|
|
test/fuzz/util.cpp \
|
2022-09-30 13:55:10 -03:00
|
|
|
test/fuzz/util/mempool.cpp \
|
2022-11-15 08:18:03 -03:00
|
|
|
test/fuzz/util/net.cpp \
|
2020-04-04 20:01:13 -03:00
|
|
|
$(TEST_FUZZ_H)
|