summaryrefslogtreecommitdiffstats
path: root/ossfuzz
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2020-08-18 17:24:36 (GMT)
committerGitHub <noreply@github.com>2020-08-18 17:24:36 (GMT)
commitfa5435bca9140c10bd1756d96e1b52a11e88d0ad (patch)
tree4fee8f9176d7efaa2339f9043261a84e89a34770 /ossfuzz
parent9a6e93859d8241643831994572f41c21b6887470 (diff)
parent3dd34df75185f132238451ef4fdb68b83f6fb91a (diff)
downloadlz4-fa5435bca9140c10bd1756d96e1b52a11e88d0ad.zip
lz4-fa5435bca9140c10bd1756d96e1b52a11e88d0ad.tar.gz
lz4-fa5435bca9140c10bd1756d96e1b52a11e88d0ad.tar.bz2
Merge pull request #897 from lz4/lz4wlib
added target lz4-wlib
Diffstat (limited to 'ossfuzz')
-rw-r--r--ossfuzz/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/ossfuzz/Makefile b/ossfuzz/Makefile
index 7e043a1..f247405 100644
--- a/ossfuzz/Makefile
+++ b/ossfuzz/Makefile
@@ -47,6 +47,7 @@ FUZZERS := \
round_trip_frame_fuzzer \
decompress_frame_fuzzer
+.PHONY: all
all: $(FUZZERS)
# Include a rule to build the static library if calling this target
@@ -70,5 +71,8 @@ $(LZ4DIR)/liblz4.a:
$(RM) $*_fuzzer $*_fuzzer.o standaloneengine.o
.PHONY: clean
-clean: compress_fuzzer_clean decompress_fuzzer_clean
+clean: compress_fuzzer_clean decompress_fuzzer_clean \
+ compress_frame_fuzzer_clean compress_hc_fuzzer_clean \
+ decompress_frame_fuzzer_clean round_trip_frame_fuzzer_clean \
+ round_trip_fuzzer_clean round_trip_hc_fuzzer_clean round_trip_stream_fuzzer_clean
$(MAKE) -C $(LZ4DIR) clean