From bdd0f6f0468eae5779cceac7b36459418ddbabde Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Wed, 27 Sep 2017 15:20:08 -0700 Subject: [PATCH] improved make clean in tests/fuzz --- tests/fuzz/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/fuzz/Makefile b/tests/fuzz/Makefile index 6d2a0cfa9..d9b00fd2a 100644 --- a/tests/fuzz/Makefile +++ b/tests/fuzz/Makefile @@ -118,9 +118,10 @@ regressiontest: corpora clean: @$(MAKE) -C $(ZSTDDIR) clean - @$(RM) -f *.a *.o - @$(RM) -f simple_round_trip stream_round_trip simple_decompress stream_decompress + @$(RM) *.a *.o + @$(RM) simple_round_trip stream_round_trip simple_decompress \ + stream_decompress block_decompress block_round_trip cleanall: - @$(RM) -rf Fuzzer - @$(RM) -rf corpora + @$(RM) -r Fuzzer + @$(RM) -r corpora