# **************************************************************************** # # # # ::: :::::::: # # Makefile :+: :+: :+: # # +:+ +:+ +:+ # # By: victor +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2024/09/14 09:21:46 by victor #+# #+# # # Updated: 2025/05/31 12:28:57 by victor ### ########.fr # # # # **************************************************************************** # NAME := libftprintf.a CC := cc CFLAGS := -Wall -Werror -Wextra SRC := ft_fprintf.c ft_printf.c ft_putascii.c ft_puthex.c ft_putptr.c ft_strlen.c ft_putfloat.c OBJ := $(SRC:.c=.o) all: $(NAME) $(NAME): $(OBJ) ar rsc $@ $(OBJ) $(OBJ): $(SRC) $(CC) $(CFLAGS) -c $(SRC) clean: rm -f $(OBJ) fclean: clean rm -f $(NAME) re: fclean all