From e1e7e692a26ab68dca25ea02ff8bed72c3c12e8e Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Wed, 9 Oct 2019 12:36:59 +0200 Subject: Added hexdecimal support --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ad9d94d..30bbc8c 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CCFLAGS = -Wall -Wextra #-Werror RM = rm -f NAME = ft_printf -SRC = ft_printf.c +SRC = ft_printf.c utils.c OBJ = $(SRC:.c=.o) INCLUDE = ft_printf.h -- cgit