From d4106157df03a984a6068c5904d806f166912123 Mon Sep 17 00:00:00 2001 From: Adam Joly Date: Sat, 28 Sep 2024 17:39:12 +0200 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=94=A8=E3=80=8D=20fix(Makefile):?= =?UTF-8?q?=20compilation=20flag=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f6715d7..9d2457d 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ $(NAME): $(OBJS) @echo "✅ Libft compiled" @make -sj -C $(MACRO_DIR) @echo "✅ MacroLibX compiled" - @$(CC) $(FLAGS) $(OBJS) $(LIB) -o $(NAME) + @$(CC) $(OBJS) $(LIB) -o $(NAME) $(FLAGS) @echo "✅ Compiled" $(OBJSDIR)%.o: %.c