diff options
| author | Dominik Kaiser | 2024-04-13 17:49:06 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2024-04-13 17:49:06 +0200 |
| commit | 5427f29f7f8b4a6691330c2fc8a1c24027d8fe71 (patch) | |
| tree | 9019af4afb9aff02a17c0ef4f35068892b4d3c20 /Makefile | |
| parent | e8647732192f1e6cda3ed5d4c17403a0446296c2 (diff) | |
| download | push_swap-5427f29f7f8b4a6691330c2fc8a1c24027d8fe71.tar.gz push_swap-5427f29f7f8b4a6691330c2fc8a1c24027d8fe71.zip | |
Add cmd optimization
After the sorting algorithm was executed remove unneccessary commands.
Diffstat (limited to 'Makefile')
| -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 stack_optimization.c +SRC_FILES = main.c input_handling.c stack_utils.c command_handling.c sorting.c stack_optimization.c cmd_optimization.c OBJ_FILES = $(SRC_FILES:%.c=%.o) LIB_DIR = $(LIBFT) |
