From e8647732192f1e6cda3ed5d4c17403a0446296c2 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Sat, 13 Apr 2024 16:36:07 +0200 Subject: [PATCH] Change optimization to stack_* in Makefile I should check the Makefile before committing in the future. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0199c15..5aeb059 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ LIBFT = libft CC = cc CFLAGS = -Wall -Wextra -Werror -SRC_FILES = main.c input_handling.c stack_utils.c command_handling.c sorting.c optimization.c +SRC_FILES = main.c input_handling.c stack_utils.c command_handling.c sorting.c stack_optimization.c OBJ_FILES = $(SRC_FILES:%.c=%.o) LIB_DIR = $(LIBFT) -- 2.47.2