diff options
author | Romain Gonçalves <commit@rgoncalves.se> | 2021-11-21 15:48:18 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2025-02-28 13:18:48 +0100 |
commit | 65ea6602bf2f4503e9a0b7c3418b32e48f2e5da5 (patch) | |
tree | 8c0f255f24a07f50b2f595e9412cc4fcb70d32ae | |
parent | 37c37e735749e21ae571509b88f9cb38997fdcaf (diff) | |
download | dwm-65ea6602bf2f4503e9a0b7c3418b32e48f2e5da5.tar.gz |
gitignore: Ignore artifacts from patch command
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | Makefile | 1 |
2 files changed, 3 insertions, 4 deletions
@@ -1,5 +1,3 @@ -config.h -drw.o +*.o +*.orig dwm -dwm.o -util.o @@ -23,6 +23,7 @@ dwm: ${OBJ} ${CC} -o $@ ${OBJ} ${LDFLAGS} clean: + -rm *.orig rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz dist: clean |