aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-05-02 22:45:28 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-05-02 22:45:28 +0300
commit3cc9f5df8be0a10c965137c7d2b7886cad2a7bc1 (patch)
tree17488a95c8b3f09385610a841c9e348ff833a3f2 /Makefile
parent32c63a1824fa87c8b2b66783c5cff2aabe6ac9e6 (diff)
downloadastar-3cc9f5df8be0a10c965137c7d2b7886cad2a7bc1.tar.xz
Remove unneeded includes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3c7addb..c207fad 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,10 @@ CC=gcc
EXECUTABLE=astar
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
+ $(CC) -Wall -Wpedantic -Wextra -Werror -O3 -o $(EXECUTABLE) priority_queue.c map.c stack.c path.c bmp.c main.c -lncurses
debug: *.c *.h
- $(CC) -Wall -g -o $(EXECUTABLE) -DPID_MESSAGE 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
clean:
rm ./$(EXECUTABLE)