diff options
author | Nick Terrell <terrelln@fb.com> | 2019-07-18 00:41:41 (GMT) |
---|---|---|
committer | Nick Terrell <terrelln@fb.com> | 2019-07-18 19:29:15 (GMT) |
commit | 399a80d48e4352aeae99eb5cbd799bcee6978a3d (patch) | |
tree | 802b81ecdaecc05b8b0a9dc058d64e82f76b163e /ossfuzz/Makefile | |
parent | 9b258abd93e19dece681ea59db9c31e1e27635ff (diff) | |
download | lz4-399a80d48e4352aeae99eb5cbd799bcee6978a3d.zip lz4-399a80d48e4352aeae99eb5cbd799bcee6978a3d.tar.gz lz4-399a80d48e4352aeae99eb5cbd799bcee6978a3d.tar.bz2 |
[fuzzer] Update scripts for new fuzzers
Diffstat (limited to 'ossfuzz/Makefile')
-rw-r--r-- | ossfuzz/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ossfuzz/Makefile b/ossfuzz/Makefile index 4d24944..2bb40ec 100644 --- a/ossfuzz/Makefile +++ b/ossfuzz/Makefile @@ -35,6 +35,14 @@ LZ4_CFLAGS = $(CFLAGS) $(DEBUGFLAGS) $(MOREFLAGS) LZ4_CXXFLAGS = $(CXXFLAGS) $(DEBUGFLAGS) $(MOREFLAGS) LZ4_CPPFLAGS = $(CPPFLAGS) -I$(LZ4DIR) -DXXH_NAMESPACE=LZ4_ +FUZZERS := \ + compress_fuzzer \ + decompress_fuzzer \ + round_trip_fuzzer \ + round_trip_stream_fuzzer + +all: $(FUZZERS) + # Include a rule to build the static library if calling this target # directly. $(LZ4DIR)/liblz4.a: |