##How to make the library (libft.a)?
$ cd libft/ //Go to where the library recipe is at.
$ make //Make the library from the recipe.
Now libft.a
must be part of the working directory.
##How to use the library (linking to a program)?
$ alias run='gcc -Wall -Werror -Wextra' //This could save you a lot time.
$ run ./libft_test/main.c -c -I./includes/ -L. -lft
###REMEMBER ####To Respect the Norme