From ec277463e9308ffd3e1e9376bf4b6a1a77fd9f83 Mon Sep 17 00:00:00 2001 From: Ryan Lahfa Date: Sat, 27 Jan 2024 04:30:00 +0100 Subject: [PATCH] fix(build): clean should delete top-level libbcachefs.a I spent some minutes pestering Kent about weird counters issues, when, actually, `make clean` was keeping this artifact on my filesystem. Signed-off-by: Ryan Lahfa --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dce6c53..3923479 100644 --- a/Makefile +++ b/Makefile @@ -223,7 +223,7 @@ install_systemd: $(systemd_services) $(systemd_libexecfiles) .PHONY: clean clean: @echo "Cleaning all" - $(Q)$(RM) c_src/libbcachefs.a tests/test_helper .version *.tar.xz $(OBJS) $(DEPS) $(DOCGENERATED) + $(Q)$(RM) libbcachefs.a c_src/libbcachefs.a tests/test_helper .version *.tar.xz $(OBJS) $(DEPS) $(DOCGENERATED) $(Q)$(CARGO_CLEAN) $(Q)$(RM) -f $(built_scripts) -- 2.39.2