commit 83284eedfca1ad9c50dae62be5756964ddc1bb90
parent a044665c0f82f6a7992c850574f8944f8c6d3157
Author: regexghost <dev@regexghost.com>
Date: Thu, 9 Jul 2026 14:51:01 +0100
makefile full and patches in gitignore
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
@@ -3,3 +3,4 @@ config.h
*.orig
dwm
*.o
+patches/
diff --git a/Makefile b/Makefile
@@ -13,8 +13,10 @@ all: dwm
${OBJ}: config.h config.mk
+full: clean all
+
config.h:
- cp config.def.h $@
+ cp config.def.h config.h
dwm: ${OBJ}
${CC} -o $@ ${OBJ} ${LDFLAGS}