From 6faf9d51a4608d5952601db8e5388cab1ab9733d Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 13 Dec 2025 13:34:09 +0100 Subject: [PATCH] build(make): adding the strcpy assembly src to the makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6a2552d..236f01d 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: rparodi +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/11/12 11:05:05 by rparodi #+# #+# # -# Updated: 2025/12/11 23:58:57 by rparodi ### ########.fr # +# Updated: 2025/12/13 13:27:57 by rparodi ### ########.fr # # # # **************************************************************************** # @@ -38,6 +38,7 @@ OBJ_BONUS = $(addprefix $(OBJDIRNAME)/,$(SRC_BONUS:.s=.o)) SRC = src/ft_strlen.s \ src/ft_strcmp.s \ + src/ft_strcpy.s \ src/ft_write.s \ src/ft_read.s