From: Yann Collet Date: Wed, 27 Sep 2017 22:20:08 +0000 (-0700) Subject: improved make clean in tests/fuzz X-Git-Tag: v1.3.2~3^2~21^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdd0f6f0468eae5779cceac7b36459418ddbabde;p=thirdparty%2Fzstd.git improved make clean in tests/fuzz --- 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