From 6ea4606cd3f74377691d200d69df8398f90cc2ff Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 12 Oct 2019 10:43:01 +0200 Subject: Basic conversion parsing Using a list to store each format conversion informations. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a469ebc..1728dd6 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,9 @@ CCFLAGS = -Wall -Wextra #-Werror RM = rm -f NAME = ft_printf -SRC = ft_printf.c utils.c printer.c parse.c +SRC = ft_printf.c utils.c printer.c parse.c list.c OBJ = $(SRC:.c=.o) -INCLUDE = ft_printf.h +INCLUDE = header.h all: $(NAME) -- cgit