aboutsummaryrefslogtreecommitdiff
path: root/fuzz
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/Makefile.am14
1 files changed, 5 insertions, 9 deletions
diff --git a/fuzz/Makefile.am b/fuzz/Makefile.am
index 9c028d690..f70382ac0 100644
--- a/fuzz/Makefile.am
+++ b/fuzz/Makefile.am
@@ -1,9 +1,11 @@
bin_PROGRAMS = fuzz_process_packet fuzz_ndpi_reader
fuzz_process_packet_SOURCES = fuzz_process_packet.c
+fuzz_process_packet_CFLAGS =
fuzz_process_packet_LDFLAGS = ../src/lib/libndpi.a $(ADDITIONAL_LIBS)
if HAS_FUZZLDFLAGS
- fuzz_process_packet_LDFLAGS += $(LIB_FUZZING_ENGINE)
+fuzz_process_packet_CFLAGS += $(LIB_FUZZING_ENGINE)
+fuzz_process_packet_LDFLAGS += $(LIB_FUZZING_ENGINE)
#else
# fuzz_process_packet_SOURCES += onefile.c
endif
@@ -16,7 +18,8 @@ fuzz_ndpi_reader_SOURCES = fuzz_ndpi_reader.c
fuzz_ndpi_reader_CFLAGS = -I../example/
fuzz_ndpi_reader_LDFLAGS = ../example/libndpiReader.a ../src/lib/libndpi.a $(PCAP_LIB) $(ADDITIONAL_LIBS)
if HAS_FUZZLDFLAGS
- fuzz_ndpi_reader_LDFLAGS += $(LIB_FUZZING_ENGINE)
+fuzz_ndpi_reader_CFLAGS += $(LIB_FUZZING_ENGINE)
+fuzz_ndpi_reader_LDFLAGS += $(LIB_FUZZING_ENGINE)
#else
# fuzz_ndpi_reader_SOURCES += onefile.c
endif
@@ -24,10 +27,3 @@ endif
fuzz_ndpi_reader_LINK=$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXX) $(AM_CXXFLAGS) $(CXXFLAGS) \
$(fuzz_ndpi_reader_LDFLAGS) $(LDFLAGS) -o $@
-
-EXTRA_fuzz_ndpi_reader_DEPENDENCIES = fuzz_ndpi_reader_seed_corpus.zip
-
-testpcaps := $(wildcard ../tests/pcap/*.pcap)
-
-fuzz_ndpi_reader_seed_corpus.zip: $(testpcaps)
- zip -r fuzz_ndpi_reader_seed_corpus.zip $(testpcaps)