From 65a32a02a9f5a653ae6c0a4ca312181b2ba840a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Sun, 21 Nov 2021 15:48:18 +0100 Subject: gitignore: Ignore artifacts from patch command --- .gitignore | 6 ++---- Makefile | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index f58d84d..8fce8c0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -config.h -drw.o +*.o +*.orig dwm -dwm.o -util.o diff --git a/Makefile b/Makefile index 6380836..4f344da 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ dwm: ${OBJ} ${CC} -o $@ ${OBJ} ${LDFLAGS} clean: + -rm *.orig rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz dist: clean -- cgit v1.2.3