aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-05-16 22:30:15 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-05-16 22:30:26 +0300
commit1440b15c05dc62914c526dfda35d7b2a4a1bee67 (patch)
treec6dc6dbbd6193763895ca09c0445e1f973992ce7 /Makefile
parent72051eee0af52b572669fdd39656a4200b4f0219 (diff)
downloadastar-1440b15c05dc62914c526dfda35d7b2a4a1bee67.tar.xz
Make `clean` target phony
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2c3791b..8dee31f 100644
--- a/Makefile
+++ b/Makefile
@@ -7,5 +7,6 @@ astar: *.c *.h
debug: *.c *.h
$(CC) -Wall -g -o $(EXECUTABLE) -DPID_MESSAGE priority_queue.c map.c stack.c path.c bmp.c main.c -lncurses
+.PHONY: clean
clean:
rm ./$(EXECUTABLE)