From 673c289b91f9539c73b4314939929cda534e2139 Mon Sep 17 00:00:00 2001 From: gbrochar Date: Wed, 13 Mar 2024 16:00:01 +0100 Subject: [PATCH] chore(Makefile): dl libft before build --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 4fc1195..8b8b2a1 100644 --- a/Makefile +++ b/Makefile @@ -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