]> git.dkaiser.de - 42/push_swap.git/commitdiff
Change optimization to stack_* in Makefile
authorDominik Kaiser <dkaiser@2-E-4.42heilbronn.de>
Sat, 13 Apr 2024 14:36:07 +0000 (16:36 +0200)
committerDominik Kaiser <dkaiser@2-E-4.42heilbronn.de>
Sat, 13 Apr 2024 14:36:07 +0000 (16:36 +0200)
I should check the Makefile before committing in the future.

Makefile

index 0199c15f6ed4faae67fc07506136ee714a276fd6..5aeb05971981e3247532a51041a50102f00e3dc9 100644 (file)
--- 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)