From: Axy Date: Thu, 30 Oct 2025 11:04:11 +0000 (+0100) Subject: Updated makefile X-Git-Tag: Testable~14 X-Git-Url: https://git.uwuaxy.net/?a=commitdiff_plain;h=00324cc0cdd18e78abbbe05e027def458fd65988;p=axy%2Fft%2Fft_printf.git Updated makefile --- 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 $@ $^