ajout de ft_printf a la librairie

This commit is contained in:
hugogogo
2021-05-19 18:06:12 +02:00
parent b7340d9324
commit f1ce5b8b9e
10 changed files with 770 additions and 9 deletions

View File

@@ -4,7 +4,8 @@
NAME = libft.a
CC = gcc
VPATH = srcs/
VPATH = srcs/ \
srcs/ft_printf_files/
IDIR = ./includes
_DEP = libft.h
@@ -94,8 +95,15 @@ SRCS = ft_memset.c \
ft_arraymap.c \
ft_strmultisplit.c \
\
get_next_line.c \
ft_concat_free.c
ft_get_next_line.c \
ft_concat_free.c \
\
ft_printf.c \
ft_next_word.c \
ft_convert.c \
ft_flag_transform.c \
ft_flag_transform_bonus.c
ODIR = ./builds
OBJS = $(SRCS:%.c=$(ODIR)/%.o)