summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-04-13 16:36:07 +0200
committerDominik Kaiser2024-04-13 16:36:07 +0200
commite8647732192f1e6cda3ed5d4c17403a0446296c2 (patch)
treea7edd487635aaabaf111ab11bbce05d1aa8eb582 /Makefile
parentf5fe6ded974fea397c7a208456d669f3b5c0672e (diff)
downloadpush_swap-e8647732192f1e6cda3ed5d4c17403a0446296c2.tar.gz
push_swap-e8647732192f1e6cda3ed5d4c17403a0446296c2.zip
Change optimization to stack_* in Makefile
I should check the Makefile before committing in the future.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)