From 00324cc0cdd18e78abbbe05e027def458fd65988 Mon Sep 17 00:00:00 2001 From: Axy Date: Thu, 30 Oct 2025 12:04:11 +0100 Subject: [PATCH] Updated makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4711819..87e2b67 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ NAME=libftprintf.a -SRCS= +SRCS=ft_printf.c OBJS=${SRCS:.c=.o} @@ -11,7 +11,7 @@ CC=cc all : ${NAME} %.o : %.c - ${CC} ${CFLAGS} -c -o $@ -- $< + ${CC} ${CFLAGS} -c -o $@ $< ${NAME} : ${OBJS} ar -rcs $@ $^ -- 2.51.0