From 6c456ecae73e75e0a4be6d4276b2e83223ecd4df Mon Sep 17 00:00:00 2001 From: Sagar Vemuri Date: Fri, 26 May 2017 09:50:45 -0700 Subject: [PATCH] Clean zstd files Summary: zstd files are downloaded and used as part of JNI build, but are left behind even after doing a `make clean`. This PR updates the `clean` target to remove these zstd files as well. Closes https://github.com/facebook/rocksdb/pull/2365 Differential Revision: D5123537 Pulled By: sagar0 fbshipit-source-id: a8f355da5ba961aa89d5852e35751ffc35de03ea --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 33930d8ac..b0108ca23 100644 --- a/Makefile +++ b/Makefile @@ -902,7 +902,7 @@ clean: rm -rf $(CLEAN_FILES) ios-x86 ios-arm scan_build_report find . -name "*.[oda]" -exec rm -f {} \; find . -type f -regex ".*\.\(\(gcda\)\|\(gcno\)\)" -exec rm {} \; - rm -rf bzip2* snappy* zlib* lz4* + rm -rf bzip2* snappy* zlib* lz4* zstd* cd java; $(MAKE) clean tags: