This commit is contained in:
Camille Chauvet
2023-02-01 17:28:38 +01:00
parent f6e9c64b29
commit 33cccda0ad
92 changed files with 241 additions and 13 deletions

View File

@ -1,4 +1,5 @@
SRCS = main.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 filetester.c
SRCS = main.c ${UTILS_SRC}
OBJS = ${SRCS:.c=.o}
@ -16,6 +17,7 @@ LIBS = libftx/libftx.a
all: ${NAME}
${NAME}: ${OBJS}
make -C libftx all
${CC} ${OBJS} -o ${NAME} ${LIBS}
clean: