aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-04-14 22:41:56 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-04-14 22:41:56 +0300
commitc9ac361e1282bfaa895a1456222bca2d86253a96 (patch)
tree4c2b5a90ad35d25b21224af80a519c9ae353b983 /Makefile
parent768509d6bb91269abf1ee1d93c32d236b146e98a (diff)
downloadastar-c9ac361e1282bfaa895a1456222bca2d86253a96.tar.xz
Implement live pathfinding in map editor
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 360214f..3c7addb 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ astar: *.c *.h
$(CC) -Wall -Wpedantic -Wextra -Werror -O3 -o $(EXECUTABLE) priority_queue.c map.c stack.c path.c bmp.c main.c -lncurses -lm
debug: *.c *.h
- $(CC) -Wall -g -o $(EXECUTABLE) priority_queue.c map.c stack.c path.c bmp.c main.c -lncurses -lm
+ $(CC) -Wall -g -o $(EXECUTABLE) -DPID_MESSAGE priority_queue.c map.c stack.c path.c bmp.c main.c -lncurses -lm
-clean:
+clean:
rm ./$(EXECUTABLE)