From 388aebd819fab0c1879f96410234b558c3861e71 Mon Sep 17 00:00:00 2001 From: y-syo Date: Sat, 6 Dec 2025 17:44:10 +0100 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=94=A8=E3=80=8D=20fix(Makefile):?= =?UTF-8?q?=20fixed=20rm=20missing=20the=20-f=20flag=20for=20fclean=20+=20?= =?UTF-8?q?added=20tester?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f9f383e..42fc31b 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,8 @@ clean: fclean: clean - rm $(NAME) + rm -f $(NAME) + rm -f $(t_NAME) re: fclean $(MAKE) -s all