From aa111edcb99a6c61971ac2da129088f7e0ef5fa4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Dec 2025 15:44:05 +0000 Subject: [PATCH] Fix include paths in compilation instructions Co-authored-by: EniumRaphael <35407363+EniumRaphael@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index adf8146..12973bf 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ make re # Rebuild from scratch 2. **Compile your program with libft:** ```bash -clang -Wall -Wextra -Werror -I includes/libft your_program.c -L. -lft -o your_program +clang -Wall -Wextra -Werror -I includes your_program.c -L. -lft -o your_program ``` #### Example Program @@ -323,7 +323,7 @@ make re # Recompiler depuis zéro 2. **Compiler votre programme avec libft :** ```bash -clang -Wall -Wextra -Werror -I includes/libft votre_programme.c -L. -lft -o votre_programme +clang -Wall -Wextra -Werror -I includes votre_programme.c -L. -lft -o votre_programme ``` #### Programme exemple