aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-06 00:02:56 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-06 00:02:56 +0100
commitdafee6410a4ecd7400a83adf84ded3621f30a365 (patch)
tree401c4169f4c2bf849d33a6a0201ab47d0f0f7782 /Makefile
parente6d8f543af4c1a45f30495b90a3912b1c75f2be7 (diff)
downloadft_printf-dafee6410a4ecd7400a83adf84ded3621f30a365.tar.gz
ft_printf-dafee6410a4ecd7400a83adf84ded3621f30a365.tar.bz2
ft_printf-dafee6410a4ecd7400a83adf84ded3621f30a365.zip
Refactored parsing to handle alone '%'
- renamed a few variables - added join_free* to libft - normed everything but ft_printf.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a0a45d6..372da0b 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/10/30 23:58:39 by cacharle ### ########.fr #
+# Updated: 2019/11/06 00:00:19 by cacharle ### ########.fr #
# #
# **************************************************************************** #
LIBFT_ROOT = ./libft
CC = gcc
-CCFLAGS = -Wall -Wextra -g #-Werror
+CCFLAGS = -Wall -Wextra #-Werror
LDFLAGS = -L. -lftprintf
INCFLAGS = -I$(LIBFT_ROOT)
@@ -24,7 +24,8 @@ MAKE = make -j4
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_ptr.c convert_hex.c convert_percent.c convert_written.c \
+ convert_none.c length_modifier.c
OBJ = $(SRC:.c=.o)
INCLUDE = header.h