Add zstd to cleanall target and .gitignore

- Add zstd cleanup to deps/Makefile cleanall target
- Add deps/zstd/zstd-*/ to .gitignore for extracted sources
pull/5465/head
René Cannaò 2 months ago
parent df97ae9009
commit 9fd4bcfe24

1
.gitignore vendored

@ -130,6 +130,7 @@ deps/coredumper/coredumper-*/
deps/postgresql/postgresql-*/
deps/postgresql/postgres-*/
deps/libusual/libusual-*/
deps/zstd/zstd-*/
test/.vagrant
.DS_Store

1
deps/Makefile vendored

@ -437,5 +437,6 @@ cleanall:
cd libusual && rm -rf libusual-*/ || true
cd libscram && rm -rf lib/* obj/* || true
cd json && rm -rf json-*/ || true
cd zstd && rm -rf zstd-*/ || true
.PHONY: cleanall

Loading…
Cancel
Save