Push sur ta branche

This commit is contained in:
Etienne Rey-bethbeder
2023-02-02 17:40:09 +01:00
27 changed files with 268 additions and 42 deletions

View File

@ -1,4 +1,5 @@
SRCS = env.c
UTILS_SRC = utils/ft_is_in_quote.c utils/ft_strncpy.c utils/ft_strreplace.c utils/ft_strnchr.c utils/ft_getstr.c
SRCS = env.c ${UTILS_SRC}
OBJS = ${SRCS:.c=.o}
@ -16,7 +17,7 @@ LIBS = libftx/libftx.a
all: ${NAME}
${NAME}: ${OBJS}
make -C libftx
make -C libftx all
${CC} ${OBJS} -o ${NAME} ${LIBS}
clean: