From fa4bf89263e897695dbf48061369a23d695fef8b Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 15 Oct 2019 13:02:53 +0200 Subject: Parsing rewrite - 4 extraction functions which parse some format attributes and remove them. - Not handling wildcard yet --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 26df249..d0b3f82 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CCFLAGS = -Wall -Wextra #-Werror RM = rm -f NAME = ft_printf -SRC = ft_printf.c utils.c printer.c parse.c list.c +SRC = ft_printf.c utils.c printer.c parse.c list.c extract.c OBJ = $(SRC:.c=.o) INCLUDE = header.h -- cgit