From 3bab15a0f43debf335a0fdbb613638fb63828f78 Mon Sep 17 00:00:00 2001 From: Carlo Teubner Date: Mon, 6 May 2024 14:35:32 +0100 Subject: [PATCH] "make clean" also removes compile_commands.json --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 48fb13a..41df849 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ $(foreach mode,$(modes),$(eval $(call template,$(mode)))) all: $(modes) clean: - $(RM) -r $(build_dirs) + $(RM) -r $(build_dirs) compile_commands.json compile_commands.json: Makefile $(cppfiles) bear -- $(MAKE) -B debug