chore(Makefile): dl libft before build

This commit is contained in:
gbrochar 2024-03-13 16:00:01 +01:00
parent fec6a59f6b
commit 673c289b91
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ $(NAME): create_libft $(OBJ) $(INC)
@echo "$(GREEN)[OK]$(WHITE) $(NAME)"
create_libft:
@git submodule update --init
@make -C $(LIB_NAME)
@cp $(LIB_NAME)/inc/libft.h inc/libft.h