commit 063eecc545062e319001d61c9cc2308636b4e6a9
parent b5bd5389506726f10fac668fe4a79c6003de12eb
Author: Mario Rosell R. Martinez <mario@mariorosell.es>
Date: Sun, 5 Apr 2026 12:05:08 +0200
build: clean dependencies
Now the `clean` target also removes ${DEPS}
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -28,7 +28,7 @@ ${TARG}: ${OBJS}
${CC} ${OBJS} -o ${TARG} ${LDFLAGS} ${LIBS}
clean:
- rm -f ${TARG} ${OBJS}
+ rm -f ${TARG} ${OBJS} ${DEPS}
install: all
install -d ${DESTDIR}${BINDIR}