Merge branch 'mylan2' into mylan

This commit is contained in:
mcolonna 2024-04-24 13:29:49 +02:00
commit 24d8b38510
43 changed files with 1395 additions and 17 deletions

View file

@ -3,13 +3,13 @@ NAME = minishell
# src directory
SRCS = src/
# include directory
INCLUDES = include/ libtf/
INCLUDES = include/ libtf/ libft/
# .c files in src/ without the extension
CODE = main ask_command error
CODE = main ask_command error path
# directories to 'make'
LIBRARIES = libtf
LIBRARIES = libtf libft
# .a files to include
LIBRARIES_FILES = libtf/libtf.a
LIBRARIES_FILES = libtf/libtf.a libft/libft.a
# to use with the flags -L and -l
LIBRARIES_LINK =
# to use with the flag -l