From 80f5c6a1cef114cd5006431149506bb5d87403b6 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 13 Nov 2019 09:30:24 +0100 Subject: Removed double, normed --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9c7dbc1..68acda3 100644 --- a/Makefile +++ b/Makefile @@ -6,14 +6,14 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/28 17:41:14 by cacharle #+# #+# # -# Updated: 2019/11/09 01:06:42 by cacharle ### ########.fr # +# Updated: 2019/11/13 09:27:01 by cacharle ### ########.fr # # # # **************************************************************************** # LIBFT_ROOT = ./libft CC = gcc -CCFLAGS = -Wall -Wextra -g #-Werror +CCFLAGS = -Wall -Wextra -Werror LDFLAGS = -L. -lftprintf INCFLAGS = -I$(LIBFT_ROOT) @@ -25,7 +25,7 @@ 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_written.c \ - convert_none.c length_modifier.c parse_double.c convert_double.c + convert_none.c length_modifier.c OBJ = $(SRC:.c=.o) INCLUDE = header.h -- cgit