2021-10-24 08:52:11

This commit is contained in:
marvin
2021-10-24 08:52:11 +02:00
parent b4658f691e
commit 5aac38e892

View File

@@ -6,7 +6,7 @@
# By: <gbaconni@student.42lausanne.ch> +#+ +:+ +#+ # # By: <gbaconni@student.42lausanne.ch> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ # # +#+#+#+#+#+ +#+ #
# Created: 2021/10/22 09:10:00 by gbaconni #+# #+# # # 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) @$(CC) $(CFLAGS) -I$(INCLUDE) -I${LIBRARY} -L${LIBRARY} ${LIBS} -DMUNIT_DISABLE_TIMING=1 -o $(OUT) $(SRC)
clean: clean:
@make -C $(LIBRARY) clean @make -C $(LIBRARY) clean || true
@$(RM) $(RMFLAGS) $(OUT)
fclean: clean
@make -C libftTester clean || true @make -C libftTester clean || true
@make -C libft-unit-test 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) @$(RM) $(RMFLAGS) $(OUT)
re: fclean all re: fclean all