diff options
| author | Dominik Kaiser | 2024-04-13 16:36:07 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2024-04-13 16:36:07 +0200 |
| commit | e8647732192f1e6cda3ed5d4c17403a0446296c2 (patch) | |
| tree | a7edd487635aaabaf111ab11bbce05d1aa8eb582 | |
| parent | f5fe6ded974fea397c7a208456d669f3b5c0672e (diff) | |
| download | push_swap-e8647732192f1e6cda3ed5d4c17403a0446296c2.tar.gz push_swap-e8647732192f1e6cda3ed5d4c17403a0446296c2.zip | |
Change optimization to stack_* in Makefile
I should check the Makefile before committing in the future.
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
