summaryrefslogtreecommitdiffstats
path: root/ossfuzz/Makefile
diff options
context:
space:
mode:
authorbimbashrestha <bshrestha.msae@gmail.com>2019-08-16 23:43:28 (GMT)
committerbimbashrestha <bshrestha.msae@gmail.com>2019-08-16 23:43:28 (GMT)
commitf839e9fe8a393117c64dff58196d36b741780ab0 (patch)
tree8e631d375b6b734bd2e8f8385b5e289862a4f3b3 /ossfuzz/Makefile
parenta9ac05645644a0615b558f6ac655c4ae46c4a926 (diff)
downloadlz4-f839e9fe8a393117c64dff58196d36b741780ab0.zip
lz4-f839e9fe8a393117c64dff58196d36b741780ab0.tar.gz
lz4-f839e9fe8a393117c64dff58196d36b741780ab0.tar.bz2
Seperating fuzz data producer api impl and header, using data producer on the easy fuzzers
Diffstat (limited to 'ossfuzz/Makefile')
-rw-r--r--ossfuzz/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ossfuzz/Makefile b/ossfuzz/Makefile
index 6875eb6..7e043a1 100644
--- a/ossfuzz/Makefile
+++ b/ossfuzz/Makefile
@@ -58,7 +58,7 @@ $(LZ4DIR)/liblz4.a:
$(CC) -c $(LZ4_CFLAGS) $(LZ4_CPPFLAGS) $< -o $@
# Generic rule for generating fuzzers
-%_fuzzer: %_fuzzer.o lz4_helpers.o $(LZ4DIR)/liblz4.a
+%_fuzzer: %_fuzzer.o lz4_helpers.o fuzz_data_producer.o $(LZ4DIR)/liblz4.a
# Compile the standalone code just in case. The OSS-Fuzz code might
# override the LIB_FUZZING_ENGINE value to "-fsanitize=fuzzer"
$(CC) -c $(LZ4_CFLAGS) $(LZ4_CPPFLAGS) standaloneengine.c -o standaloneengine.o