From ee4b8e5e481850c936c5df10a0d3e70038234754 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 21 Nov 2019 02:53:41 +0100 Subject: WIP: adding ft_*printf --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3360001..152e843 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/08 15:45:53 by cacharle #+# #+# # -# Updated: 2019/11/20 04:13:32 by cacharle ### ########.fr # +# Updated: 2019/11/21 03:43:46 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -28,7 +28,9 @@ SRC = ft_atoi.c ft_bzero.c ft_isalnum.c ft_isalpha.c ft_isascii.c ft_isdigit.c \ ft_strncmp.c ft_strncpy.c ft_strnequ.c ft_strnew.c ft_strnstr.c \ ft_strrchr.c ft_split.c ft_strstr.c ft_substr.c ft_strtrim.c \ ft_tolower.c ft_toupper.c ft_strlcpy.c ft_calloc.c ft_strndup.c \ - ft_strjoin_free.c ft_strjoin_free_snd.c get_next_line.c ft_strcount.c + ft_strjoin_free.c ft_strjoin_free_snd.c get_next_line.c ft_strcount.c \ + ft_printf.c ft_sprintf.c ft_snprintf.c ft_asprintf.c ft_dprintf.c \ + ft_vprintf.c ft_vsprintf.c ft_vsnprintf.c ft_vasprintf.c ft_vdprintf.c OBJ = $(SRC:.c=.o) INCLUDE = libft.h -- cgit