commit 78242eea5697a2424727f9cad106eb5ea75a6c0f parent 5ec89855b2a36224b10177455d28f8cf1308745d Author: hhvn <dev@hhvn.uk> Date: Fri, 3 Dec 2021 12:01:16 +0000 Makefile: don't remove config.mk in clean (it weirds make out) Diffstat:
M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -43,7 +43,7 @@ uninstall: -rm -f $(MANDIR)/man1/$(MAN) clean: - -rm -f config.mk $(OBJ) $(MAN) $(BIN) + -rm -f $(OBJ) $(MAN) $(BIN) .c.o: $(CC) $(CFLAGS) -c $<