-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
215 lines (190 loc) · 5.33 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
OBJ = \
obj/gametree.o \
obj/gomokufreestyleevaluatorfreestyle.o \
obj/gomokufreestyletypetreefreestyle.o \
obj/gomokufreestylevirtualboardfreestyle.o \
obj/gomokurenju_basicevaluatorrenjubasic.o \
obj/gomokurenju_basictypetreerenjubasic.o \
obj/gomokurenju_basicvirtualboardrenjubasic.o \
obj/memorypool.o \
obj/node.o
OBJ_NET = \
obj/ai.o \
obj/networkmain.o \
obj/serverhttprequest.o \
obj/serverhttpresponse.o \
obj/serverhttpserver.o \
obj/proc_stat.o
OBJ_LOCAL = \
obj/gomokudisplayboard.o \
obj/main.o
GENERAL_FLAG = -std=c++11
EM : mkdir $(OBJ) $(OBJ_NET)
g++ -o EM $(OBJ) $(OBJ_NET) $(GENERAL_FLAG) -pthread -O3
EM : OPT_FLAG = -O3
Debug : mkdir $(OBJ) $(OBJ_NET)
g++ -o EM $(OBJ) $(OBJ_NET) $(GENERAL_FLAG) -pthread -O0 -g
Debug : OPT_FLAG = -O0 -g
Local : mkdir $(OBJ) $(OBJ_LOCAL)
g++ -o EM $(OBJ) $(OBJ_LOCAL) $(GENERAL_FLAG) -pthread -O3
Local : OPT_FLAG = -O3
mkdir :
if ! [ -d "obj" ]; then mkdir obj; fi
clean :
if [ -d "obj" ]; then rm -r obj; fi
if [ -e "EM" ]; then rm EM; fi
obj/ai.o: ai.cpp \
ai.h \
const.h \
gametree.h \
gomoku/chesstype.h \
gomoku/freestyle/virtualboardfreestyle.h \
gomoku/point.h \
gomoku/renju_basic/virtualboardrenjubasic.h \
gomoku/virtualboardgomoku.h \
lib/json.h \
memorypool.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/gametree.o: gametree.cpp \
const.h \
gametree.h \
lib/json.h \
memorypool.h \
node.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/gomokudisplayboard.o: gomoku/displayboard.cpp \
gomoku/displayboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/gomokufreestyleevaluatorfreestyle.o: gomoku/freestyle/evaluatorfreestyle.cpp \
const.h \
gomoku/chesstype.h \
gomoku/evaluator.h \
gomoku/freestyle/evaluatorfreestyle.h \
gomoku/freestyle/typetreefreestyle.h \
gomoku/freestyle/virtualboardfreestyle.h \
gomoku/openingtree.h \
gomoku/point.h \
gomoku/typetree.h \
gomoku/virtualboardgomoku.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/gomokufreestyletypetreefreestyle.o: gomoku/freestyle/typetreefreestyle.cpp \
const.h \
gomoku/chesstype.h \
gomoku/evaluator.h \
gomoku/freestyle/evaluatorfreestyle.h \
gomoku/freestyle/typetreefreestyle.h \
gomoku/freestyle/virtualboardfreestyle.h \
gomoku/openingtree.h \
gomoku/point.h \
gomoku/typetree.h \
gomoku/virtualboardgomoku.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/gomokufreestylevirtualboardfreestyle.o: gomoku/freestyle/virtualboardfreestyle.cpp \
const.h \
gomoku/chesstype.h \
gomoku/evaluator.h \
gomoku/freestyle/evaluatorfreestyle.h \
gomoku/freestyle/virtualboardfreestyle.h \
gomoku/openingtree.h \
gomoku/point.h \
gomoku/virtualboardgomoku.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/gomokurenju_basicevaluatorrenjubasic.o: gomoku/renju_basic/evaluatorrenjubasic.cpp \
const.h \
gomoku/chesstype.h \
gomoku/evaluator.h \
gomoku/openingtree.h \
gomoku/point.h \
gomoku/renju_basic/evaluatorrenjubasic.h \
gomoku/renju_basic/typetreerenjubasic.h \
gomoku/renju_basic/virtualboardrenjubasic.h \
gomoku/typetree.h \
gomoku/virtualboardgomoku.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/gomokurenju_basictypetreerenjubasic.o: gomoku/renju_basic/typetreerenjubasic.cpp \
const.h \
gomoku/chesstype.h \
gomoku/evaluator.h \
gomoku/openingtree.h \
gomoku/point.h \
gomoku/renju_basic/evaluatorrenjubasic.h \
gomoku/renju_basic/typetreerenjubasic.h \
gomoku/renju_basic/virtualboardrenjubasic.h \
gomoku/typetree.h \
gomoku/virtualboardgomoku.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/gomokurenju_basicvirtualboardrenjubasic.o: gomoku/renju_basic/virtualboardrenjubasic.cpp \
const.h \
gomoku/chesstype.h \
gomoku/evaluator.h \
gomoku/openingtree.h \
gomoku/point.h \
gomoku/renju_basic/evaluatorrenjubasic.h \
gomoku/renju_basic/virtualboardrenjubasic.h \
gomoku/virtualboardgomoku.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/main.o: main.cpp \
const.h \
gametree.h \
gomoku/chesstype.h \
gomoku/displayboard.h \
gomoku/freestyle/virtualboardfreestyle.h \
gomoku/point.h \
gomoku/renju_basic/virtualboardrenjubasic.h \
gomoku/virtualboardgomoku.h \
lib/json.h \
memorypool.h \
timer.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/memorypool.o: memorypool.cpp \
memorypool.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/networkmain.o: networkmain.cpp \
ai.h \
const.h \
gametree.h \
lib/json.h \
memorypool.h \
server/httprequest.h \
server/httpresponse.h \
server/httpserver.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/node.o: node.cpp \
const.h \
gametree.h \
gomoku/chesstype.h \
lib/json.h \
memorypool.h \
node.h \
virtualboard.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/serverhttprequest.o: server/httprequest.cpp \
server/httprequest.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/serverhttpresponse.o: server/httpresponse.cpp \
server/httpresponse.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/serverhttpserver.o: server/httpserver.cpp \
ai.h \
const.h \
gametree.h \
lib/json.h \
memorypool.h \
server/httprequest.h \
server/httpresponse.h \
server/httpserver.h \
virtualboard.h \
proc_stat.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@
obj/proc_stat.o: proc_stat.c proc_stat.h
g++ -c $(GENERAL_FLAG) $(OPT_FLAG) $< -o $@