From 5aac38e892ce857f1eb5999c8ed740aacfbb0cc6 Mon Sep 17 00:00:00 2001 From: marvin Date: Sun, 24 Oct 2021 08:52:11 +0200 Subject: [PATCH] 2021-10-24 08:52:11 --- libft/Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libft/Makefile b/libft/Makefile index 75aa241..b1ce41f 100644 --- a/libft/Makefile +++ b/libft/Makefile @@ -6,7 +6,7 @@ # By: +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2021/10/22 09:10:00 by gbaconni #+# #+# # -# Updated: 2021/10/24 01:06:15 by gbaconni ### lausanne.ch # +# Updated: 2021/10/24 08:50:59 by gbaconni ### lausanne.ch # # # # **************************************************************************** # # @@ -116,13 +116,14 @@ compile: @$(CC) $(CFLAGS) -I$(INCLUDE) -I${LIBRARY} -L${LIBRARY} ${LIBS} -DMUNIT_DISABLE_TIMING=1 -o $(OUT) $(SRC) clean: - @make -C $(LIBRARY) clean - @$(RM) $(RMFLAGS) $(OUT) - -fclean: clean + @make -C $(LIBRARY) clean || true @make -C libftTester clean || true @make -C libft-unit-test clean || true - @make -C $(LIBRARY) fclean + +fclean: clean + @make -C $(LIBRARY) fclean || true + @make -C libftTester fclean || true + @make -C libft-unit-test fclean || true @$(RM) $(RMFLAGS) $(OUT) re: fclean all