summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-04-12 16:44:17 +0200
committerDominik Kaiser2024-04-12 16:44:17 +0200
commitccf6226d8e0dc412206c5b9271654519357b0e2f (patch)
treeba5aece735e7ab1989c8c42988858f7addb65c7a /Makefile
parent71eea3dbef2110114eb6f648e9ffdfb079884678 (diff)
downloadlibft-ccf6226d8e0dc412206c5b9271654519357b0e2f.tar.gz
libft-ccf6226d8e0dc412206c5b9271654519357b0e2f.zip
Add ft_printf
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1fdbab6..9e94fb2 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,10 @@ SRC_FILES = ft_atoi.c \
ft_substr.c \
ft_tolower.c \
ft_toupper.c \
+ ft_printf.c \
+ ft_printnbr.c \
+ ft_printhex.c \
+ ft_printaddr.c
OBJ_FILES = $(SRC_FILES:.c=.o)