aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-10 10:37:51 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-13 09:00:43 +0100
commit3f2ef05278d42233f0a9ee9652e152824a7103e4 (patch)
tree8fde8cdc22ffd77f1d23b35830d51bba129d70ad /Makefile
parentdafee6410a4ecd7400a83adf84ded3621f30a365 (diff)
downloadft_printf-3f2ef05278d42233f0a9ee9652e152824a7103e4.tar.gz
ft_printf-3f2ef05278d42233f0a9ee9652e152824a7103e4.tar.bz2
ft_printf-3f2ef05278d42233f0a9ee9652e152824a7103e4.zip
ft_printf write to buffer instead of instant write
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 372da0b..9c7dbc1 100644
--- a/Makefile
+++ b/Makefile
@@ -6,14 +6,14 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/10/28 17:41:14 by cacharle #+# #+# #
-# Updated: 2019/11/06 00:00:19 by cacharle ### ########.fr #
+# Updated: 2019/11/09 01:06:42 by cacharle ### ########.fr #
# #
# **************************************************************************** #
LIBFT_ROOT = ./libft
CC = gcc
-CCFLAGS = -Wall -Wextra #-Werror
+CCFLAGS = -Wall -Wextra -g #-Werror
LDFLAGS = -L. -lftprintf
INCFLAGS = -I$(LIBFT_ROOT)
@@ -25,7 +25,7 @@ NAME = libftprintf.a
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.c convert_percent.c convert_written.c \
- convert_none.c length_modifier.c
+ convert_none.c length_modifier.c parse_double.c convert_double.c
OBJ = $(SRC:.c=.o)
INCLUDE = header.h