dwm

My build of dwm from suckless
git clone https://git.regexghost.com/dwm.git
Log | Files | Refs | README | LICENSE

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:
M.gitignore | 1+
MMakefile | 4+++-
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}