From a9c8551ffc91d5972bc770d773ef74dcb2b67190 Mon Sep 17 00:00:00 2001 From: tom moron Date: Mon, 19 Feb 2024 22:57:25 +0100 Subject: [PATCH] makefile multithread --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 29113f7..9954661 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: marde-vr +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/07/28 00:35:01 by tomoron #+# #+# # -# Updated: 2024/02/18 18:33:00 by marde-vr ### ########.fr # +# Updated: 2024/02/19 22:56:25 by tomoron ### ########.fr # # # # **************************************************************************** # @@ -38,7 +38,8 @@ FLAGS = -Wall -Wextra -Werror -g LIBFT = libft/libft.a NAME = minishell -all: $(NAME) +all: + @$(MAKE) --no-print-directory -j $(NAME) $(NAME) : $(LIBFT) $(OBJS) $(CC) $(FLAGS) $(OBJS) $(LIBFT) -lreadline -o $(NAME)