summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-03-20 12:14:51 +0100
committerDominik Kaiser2024-03-20 12:14:51 +0100
commit70af8ed2075f1755f1b42642622ac26ae8ffcc51 (patch)
treea891e41e5b44764ae785f16fd91e4a8e2c00c474 /Makefile
parent681026f782093d53fe4ac058caefb2fbcced6f0b (diff)
downloadft_printf-70af8ed2075f1755f1b42642622ac26ae8ffcc51.tar.gz
ft_printf-70af8ed2075f1755f1b42642622ac26ae8ffcc51.zip
Update Makefile just to make sure moulinette is happyHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)