ignore clangd .cache/

This commit is contained in:
Emile Clark-Boman 2025-08-28 00:13:12 +10:00
parent 9f304641b2
commit 61938040f1
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,5 +1,6 @@
build/
bin/
.cache/
dwl
*.o

View file

@ -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)