aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-10-30 03:57:47 +0100
committerCharles <sircharlesaze@gmail.com>2019-10-30 03:57:47 +0100
commitd963161275bcb3af4097872ba033da3ff9255606 (patch)
tree41476dcab3fa209ae6f49c6f1abe37d454674a12 /Makefile
parent07c9232121c8d6cb1e473bd7b623792253375d93 (diff)
downloadft_printf-d963161275bcb3af4097872ba033da3ff9255606.tar.gz
ft_printf-d963161275bcb3af4097872ba033da3ff9255606.tar.bz2
ft_printf-d963161275bcb3af4097872ba033da3ff9255606.zip
Individual convert functions, more flags
- Each conversion type is handle by individual functions in convert_* files - handle the ' ', '#', '+' and length modifier flags.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 43cbdfd..4e5d46c 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/10/28 17:41:14 by cacharle #+# #+# #
-# Updated: 2019/10/29 02:01:51 by cacharle ### ########.fr #
+# Updated: 2019/10/29 23:00:05 by cacharle ### ########.fr #
# #
# **************************************************************************** #
@@ -22,7 +22,9 @@ LIB = ar rcs
MAKE = make -j4
NAME = libftprintf.a
-SRC = ft_printf.c utils.c printer.c parse.c list.c extract.c
+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_low.c convert_hex_up.c convert_percent.c
OBJ = $(SRC:.c=.o)
INCLUDE = header.h