-
Notifications
You must be signed in to change notification settings - Fork 133
/
Makefile
executable file
·61 lines (41 loc) · 950 Bytes
/
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
WAF = backend/tools/waf
all:
$(WAF) configure all $(PARAMS)
strat:
$(WAF) configure strat $(PARAMS)
strat_ma:
$(WAF) configure strat_ma $(PARAMS)
easy_strat:
$(WAF) configure easy_strat $(PARAMS)
simdata:
$(WAF) configure simdata $(PARAMS)
simorder:
$(WAF) configure simorder $(PARAMS)
pricer:
$(WAF) configure pricer $(PARAMS)
proxy:
$(WAF) configure proxy $(PARAMS)
mid_data:
$(WAF) configure mid_data $(PARAMS)
ctpdata:
$(WAF) configure ctpdata $(PARAMS)
ctporder:
$(WAF) configure ctporder $(PARAMS)
getins:
$(WAF) configure getins $(PARAMS)
arbmaker:
$(WAF) configure arbmaker $(PARAMS)
simplemaker:
$(WAF) configure simplemaker $(PARAMS)
simplearb:
$(WAF) configure simplearb $(PARAMS)
demostrat:
$(WAF) configure demostrat $(PARAMS)
backtest:
$(WAF) configure backtest $(PARAMS)
order_matcher:
$(WAF) configure order_matcher $(PARAMS)
teststrat:
$(WAF) configure teststrat $(PARAMS)
clean:
rm -rf build