From: Dominik Kaiser Date: Sat, 13 Apr 2024 14:36:07 +0000 (+0200) Subject: Change optimization to stack_* in Makefile X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=e8647732192f1e6cda3ed5d4c17403a0446296c2;p=42%2Fpush_swap.git Change optimization to stack_* in Makefile I should check the Makefile before committing in the future. --- 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)