Fix Makefile

This commit is contained in:
pbonilla 2024-06-12 13:39:29 +02:00
parent 1bdcef2b95
commit 3300cea9c6
1 changed files with 2 additions and 1 deletions

View File

@ -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