forked from justinhj/astar-algorithm-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
25 lines (13 loc) · 464 Bytes
/
makefile
File metadata and controls
25 lines (13 loc) · 464 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all : 8puzzle findpath minpathbucharest tests
clean :
rm 8puzzle findpath minpathbucharest tests
minpathbucharest : min_path_to_Bucharest.cpp stlastar.h
g++ -Wall min_path_to_Bucharest.cpp -o minpathbucharest
8puzzle : 8puzzle.cpp stlastar.h
g++ -Wall 8puzzle.cpp -o 8puzzle
findpath : findpath.cpp stlastar.h
g++ -Wall findpath.cpp -o findpath
tests : tests.cpp 8puzzle findpath minpathbucharest
g++ -Wall tests.cpp -o tests
test: tests
./tests