aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-14 10:26:41 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-14 10:51:12 +0100
commit2d6500136bd78fbc2545610f6f08718c728a9028 (patch)
treee4bef4f31abd4c701d80f53b0443ae837a949001 /Makefile
parent80f5c6a1cef114cd5006431149506bb5d87403b6 (diff)
downloadft_printf-2d6500136bd78fbc2545610f6f08718c728a9028.tar.gz
ft_printf-2d6500136bd78fbc2545610f6f08718c728a9028.tar.bz2
ft_printf-2d6500136bd78fbc2545610f6f08718c728a9028.zip
Fixed little memory leak in handle_precisionHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 68acda3..4097b0c 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/11/13 09:27:01 by cacharle ### ########.fr #
+# Updated: 2019/11/14 10:23:31 by cacharle ### ########.fr #
# #
# **************************************************************************** #
@@ -19,10 +19,10 @@ INCFLAGS = -I$(LIBFT_ROOT)
RM = rm -f
LIB = ar rcs
-MAKE = make -j4
+MAKE = make
NAME = libftprintf.a
-SRC = ft_printf.c utils.c printer.c parse.c list.c extract.c \
+SRC = ft_printf.c utils.c convert.c parse.c list.c extract.c \
convert_int.c convert_uint.c convert_char.c convert_str.c \
convert_ptr.c convert_hex.c convert_percent.c convert_written.c \
convert_none.c length_modifier.c
@@ -49,6 +49,7 @@ fclean: libft_fclean clean
re: fclean all
+test: CCFLAGS += -g
test: all
$(CC) $(CCFLAGS) $(LDFLAGS) -L./libft -lft $(INCFLAGS) -o test main.c