-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (20 loc) · 1.14 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
main: main1 main2 main3
win_main: win_main1 win_main2 win_main3
main1: main1.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
g++ -O2 -o main1 -std=c++14 main1.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
win_main1: main1.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
g++ -O2 -o main1.exe -std=c++14 main1.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
main2: main1.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
g++ -O2 -o main2 -std=c++14 main1.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
win_main2: main1.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
g++ -O2 -o main2.exe -std=c++14 main1.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
main3: main3.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
g++ -O2 -o main3 -std=c++14 main3.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
win_main3: main3.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
g++ -O2 -o main3.exe -std=c++14 main3.cpp Node.cpp build_tree.cpp evaluation.cpp CG_debug.cpp
.PHONY: clean
clean:
rm main1 main2 main3
.PHONY: win_clean
win_clean:
del main1.exe main2.exe main3.exe