From 61938040f19fd3efa333a595b9794f2a560c0cbb Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Thu, 28 Aug 2025 00:13:12 +1000 Subject: [PATCH] ignore clangd .cache/ --- .gitignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 31c5c94..0955afd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ build/ bin/ +.cache/ dwl *.o diff --git a/Makefile b/Makefile index a9bd94e..9b84105 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ $(BUILD)/$(BINARY).desktop: echo -e "[Desktop Entry]\nName=$(BINARY)\nComment=$(DESCRIPTION)\nExec=$(BINARY)\nType=Application" > $@ clean: - rm -rf $(INCLUDE) $(OBJ) $(BUILD) $(BIN) + rm -rf $(INCLUDE) $(OBJ) $(BUILD) $(BIN) .cache dist: clean $(BUILD)/$(BINARY).desktop mkdir -p $(BINARY)-$(VERSION)