From 43e6c82cad5d790c75c918a4eca85cdec894d1c8 Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 18 Oct 2019 15:31:00 +0200 Subject: Fixed ft_substr, added a few protection to list functions --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9daff17..6758101 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/08 15:45:53 by cacharle #+# #+# # -# Updated: 2019/10/16 14:41:13 by cacharle ### ########.fr # +# Updated: 2019/10/17 13:39:09 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -39,8 +39,8 @@ all: $(NAME) $(NAME): $(OBJ) $(INCLUDE) $(LIB) $(NAME) $(OBJ) -bonus: $(OBJ) $(BONUSOBJ) $(INCLUDE) - $(LIB) $(NAME) $(OBJ) $(BONUSOBJ) +bonus: $(BONUSOBJ) $(INCLUDE) + $(LIB) $(NAME) $(BONUSOBJ) %.o: %.c $(CC) $(CCFLAGS) -c -o $@ $< -- cgit