From: Dominik Kaiser Date: Wed, 20 Mar 2024 11:14:51 +0000 (+0100) Subject: Update Makefile just to make sure moulinette is happy X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;ds=inline;p=42%2Fft_printf.git Update Makefile just to make sure moulinette is happy --- diff --git a/Makefile b/Makefile index fc6cbe4..e4899d3 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CC = cc CFLAGS = -Wall -Wextra -Werror SRC_FILES = ft_printf.c ft_printnbr.c ft_printhex.c ft_printaddr.c -OBJ_FILES = $(SRC_FILES:.c=.o) +OBJ_FILES = $(SRC_FILES:%.c=%.o) all: $(NAME)