From 9fd4bcfe24f1541257ca6e1d77fe79fb3877f7d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Fri, 20 Mar 2026 21:24:42 +0100 Subject: [PATCH] Add zstd to cleanall target and .gitignore - Add zstd cleanup to deps/Makefile cleanall target - Add deps/zstd/zstd-*/ to .gitignore for extracted sources --- .gitignore | 1 + deps/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 24194fb8c..2d0eef514 100644 --- a/.gitignore +++ b/.gitignore @@ -130,6 +130,7 @@ deps/coredumper/coredumper-*/ deps/postgresql/postgresql-*/ deps/postgresql/postgres-*/ deps/libusual/libusual-*/ +deps/zstd/zstd-*/ test/.vagrant .DS_Store diff --git a/deps/Makefile b/deps/Makefile index 724e26aa2..bfb9421de 100644 --- a/deps/Makefile +++ b/deps/Makefile @@ -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