From 3300cea9c6bca2d9bcfc4c8500798bcc2e55d9d3 Mon Sep 17 00:00:00 2001 From: pbonilla Date: Wed, 12 Jun 2024 13:39:29 +0200 Subject: [PATCH] Fix Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6ecb028..c6b661f 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ RM = rm -f LIBFT_FLAGS = ft_printf/libftprintf.a -CFLAGS = -Wall -Wextra -Werror -g3 +CFLAGS = -Wall -Wextra -Werror all: ${NAME} @@ -33,6 +33,7 @@ clean: fclean: make -C ft_printf fclean + make clean ${RM} ${NAME} re: fclean