From ed39b70a7188964ac4ecca4ab9b27e803e37e8ad Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Wed, 3 Feb 2021 20:25:01 +0000 Subject: [PATCH] Makes `make clean` delete my config.h file I do this because I keep my configuration in config.def.h and version control it --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 77bcbc0..c05dbdd 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ dwm: ${OBJ} ${CC} -o $@ ${OBJ} ${LDFLAGS} clean: - rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz + rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz config.h dist: clean mkdir -p dwm-${VERSION}