From 0f6cd15b0c7ce2d4d0154ae027985ed640cd543f Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 31 Oct 2019 01:45:37 +0100 Subject: Handle 'n' flag --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4463e44..a0a45d6 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/28 17:41:14 by cacharle #+# #+# # -# Updated: 2019/10/30 23:06:05 by cacharle ### ########.fr # +# Updated: 2019/10/30 23:58:39 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -24,7 +24,7 @@ MAKE = make -j4 NAME = libftprintf.a SRC = ft_printf.c utils.c printer.c parse.c list.c extract.c \ convert_int.c convert_uint.c convert_char.c convert_str.c \ - convert_ptr.c convert_hex.c convert_percent.c + convert_ptr.c convert_hex.c convert_percent.c convert_written.c OBJ = $(SRC:.c=.o) INCLUDE = header.h -- cgit