aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 2c3791b11f3e68334ff648b7adb8afe7c9fdb27a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CC=clang
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

debug: *.c *.h
	$(CC) -Wall -g -o $(EXECUTABLE) -DPID_MESSAGE priority_queue.c map.c stack.c path.c bmp.c main.c -lncurses

clean:
	rm ./$(EXECUTABLE)