From 663939597932d2a28727107805a3ab24e0a48196 Mon Sep 17 00:00:00 2001 From: Eiichi Tsukata Date: Fri, 1 Sep 2017 16:31:58 +0900 Subject: [PATCH] tests/fuzz: fix make all target names --- tests/fuzz/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/fuzz/Makefile b/tests/fuzz/Makefile index c6327068f..dfb8f1913 100644 --- a/tests/fuzz/Makefile +++ b/tests/fuzz/Makefile @@ -48,7 +48,11 @@ LIBFUZZER ?= -lFuzzer default: all -all: round_trip simple_decompress +all: \ + simple_round_trip \ + stream_round_trip \ + simple_decompress \ + stream_decompress %.o: %.c $(CC) $(FUZZ_CPPFLAGS) $(FUZZ_CFLAGS) $^ -c -o $@