From 85d718c232f9ecc0c3cc9f0cb1b3ee9140753866 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Tue, 21 May 2024 01:05:09 +0200 Subject: [PATCH] more aggressive clean --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e004d29..094976a 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,8 @@ ${SRC}: buildroot ${OBJ}: config.h config.mk + + dwm: ${OBJ} ${CC} -o $@ ${OBJ} ${LDFLAGS} @@ -29,7 +31,7 @@ clean: find . -maxdepth 1 -type f | grep -Pv "^\./\.|Makefile$$" | xargs -r rm rm -r tmp patch 2>/dev/null || true git -C dwm-flexipatch reset --hard HEAD - git -C dwm-flexipatch clean -fdx + git -C dwm-flexipatch clean -ffdx buildroot: cp config/patches.h dwm-flexipatch/patches.h