start counting

This commit is contained in:
Adam Joly committed 2023-11-20 11:56:11 +01:00
1 parent 8f7c476835
commit 4188dfeb84
8 files changed
+152 -20

No files matched your search

+6 -4
View File
@@ -6,7 +6,7 @@
# By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/11/17 12:35:27 by adjoly #+# #+# #
# Updated: 2023/11/17 19:59:14 by adjoly ### ########.fr #
# Updated: 2023/11/20 10:07:45 by adjoly ### ########.fr #
# #
# **************************************************************************** #
@@ -14,15 +14,17 @@ NAME = libftprintf.a
CC = cc
SRCS = ft_printf.c\
SRCS = ft_printf.c \
ft_putchar.c \
ft_putnbr.c \
ft_putnbrbase.c \
ft_putstr.c \
OBJS = $(SRCS:.c=.o)
FLAGS = -Werror -Wall -Wextra
HEADER = libftprintf.h \
$(NAME): $(OBJS)
ar -rcs $(NAME) $(OBJS)