add gnl to libft

This commit is contained in:
Hugo LAMY
2020-02-25 18:49:15 +01:00
parent 87af05c0cc
commit a140f4640f
4 changed files with 178 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ NAME = libft.a
CC = gcc
VPATH = srcs/
IDIR = .
IDIR = ./includes
_DEP = libft.h
DEPS = $(_DEP:%.h=$(IDIR)/%.h)
@@ -91,7 +91,9 @@ SRCS = ft_memset.c \
ft_foreach.c \
ft_issort.c \
ft_arraymap.c \
ft_strmultisplit.c
ft_strmultisplit.c \
\
get_next_line.c
ODIR = ./builds
OBJS = $(SRCS:%.c=$(ODIR)/%.o)