aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-14 14:42:14 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-14 14:42:14 +0300
commit528841328da0114981ee6e8c6dbdde72b64fb284 (patch)
treee127cdab3debaa7e1a8e8b825c07ca85502681d2 /Makefile
parent365f1baabae9b2ccb3df1b4a4821bff58611f2de (diff)
Fix stack + implement rbt_maze_map()
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a8d80e2..c1a92ea 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
CC=gcc
EXECUTABLE=astar
-astar: main.c map.c
- $(CC) -Wall -Wpedantic -Wextra -Werror -O3 -o $(EXECUTABLE) map.c main.c -lncurses
+astar: main.c map.c stack.c config.h
+ $(CC) -Wall -Wpedantic -Wextra -Werror -O3 -o $(EXECUTABLE) map.c stack.c main.c -lncurses
-debug: main.c map.c
- $(CC) -Wall -g -o $(EXECUTABLE) map.c main.c -lncurses
+debug: main.c map.c stack.c config.h
+ $(CC) -Wall -g -o $(EXECUTABLE) map.c stack.c main.c -lncurses
clean:
rm ./$(EXECUTABLE)