Fix include paths in compilation instructions
Co-authored-by: EniumRaphael <35407363+EniumRaphael@users.noreply.github.com>
This commit is contained in:
parent
8cf046f0f5
commit
aa111edcb9
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue