added c conversion suport

This commit is contained in:
Tanguy MAZE
2019-02-11 14:06:37 +01:00
parent 973ac2479a
commit dcb8f8ea1d
13 changed files with 257 additions and 95 deletions

View File

@@ -6,7 +6,7 @@
# By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/02/09 15:12:22 by tmaze #+# #+# #
# Updated: 2019/02/09 15:45:01 by tmaze ### ########.fr #
# Updated: 2019/02/11 14:01:32 by tmaze ### ########.fr #
# #
#******************************************************************************#
@@ -16,9 +16,10 @@ CCSTD :=
NAME := libftprintf.a
SRCS := ft_printf.c pf_getflags.c
SRCS := ft_printf.c pf_getflags.c pf_strchr.c pf_isdigit.c pf_atoi.c pf_toupper.c pf_convc.c pf_memset.c pf_strlen.c pf_strnew.c pf_convs.c
OBJS_DIR := objs
OBJS := $(SRCS:.c=.o)
INCLS := -Iincludes
.PHONY = all clean fclean re