From d287180a85ee12fdc5b24d8108b72295fc64e341 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 13 Jan 2026 14:02:48 +0100 Subject: [PATCH] build(make): adding the strdup to the makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ba5f71c..3a05232 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: rparodi +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/11/12 11:05:05 by rparodi #+# #+# # -# Updated: 2025/12/13 13:27:57 by rparodi ### ########.fr # +# Updated: 2025/12/28 19:40:32 by rparodi ### ########.fr # # # # **************************************************************************** # @@ -39,6 +39,7 @@ OBJ_BONUS = $(addprefix $(OBJDIRNAME)/,$(SRC_BONUS:.s=.o)) SRC = src/ft_strlen.s \ src/ft_strcmp.s \ src/ft_strcpy.s \ + src/ft_strdup.s \ src/ft_write.s \ src/ft_read.s