summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRyan Lahfa <bcachefs@lahfa.xyz>2024-01-27 04:30:00 +0100
committerRyan Lahfa <bcachefs@lahfa.xyz>2024-01-27 05:15:19 +0100
commitec277463e9308ffd3e1e9376bf4b6a1a77fd9f83 (patch)
tree03d6477f4228bced5450efbf8909b06489847f76 /Makefile
parente1d08fc1fcfc3c0a5aecf99f17dae3445e82c761 (diff)
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 <bcachefs@lahfa.xyz>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dce6c535..39234791 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)