forked from keyianpai/hft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·88 lines (59 loc) · 1.44 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
WAF = backend/tools/waf-light
all:
$(WAF) configure all $(PARAMS)
easy_strat:
$(WAF) configure easy_strat $(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)
manual_ctp:
$(WAF) configure manual_ctp $(PARAMS)
getins:
$(WAF) configure getins $(PARAMS)
simplemaker:
$(WAF) configure simplemaker $(PARAMS)
simplearb:
$(WAF) configure simplearb $(PARAMS)
mainarb:
$(WAF) configure mainarb $(PARAMS)
simplearb2:
$(WAF) configure simplearb2 $(PARAMS)
coinarb:
$(WAF) configure coinarb $(PARAMS)
pairtrading:
$(WAF) configure pairtrading $(PARAMS)
demostrat:
$(WAF) configure demostrat $(PARAMS)
simdata:
$(WAF) configure simdata $(PARAMS)
backtest:
$(WAF) configure backtest $(PARAMS)
backtest2:
$(WAF) configure backtest2 $(PARAMS)
backtestpr:
$(WAF) configure backtestpr $(PARAMS)
order_matcher:
$(WAF) configure order_matcher $(PARAMS)
teststrat:
$(WAF) configure teststrat $(PARAMS)
lib_simplemaker:
$(WAF) configure lib_simplemaker $(PARAMS)
lib_simplearb:
$(WAF) configure lib_simplearb $(PARAMS)
lib_simplearb2:
$(WAF) configure lib_simplearb2 $(PARAMS)
lib_coinarb:
$(WAF) configure lib_coinarb $(PARAMS)
lib_pairtrading:
$(WAF) configure lib_pairtrading $(PARAMS)
lib_demostrat:
$(WAF) configure lib_demostrat $(PARAMS)
clean:
rm -rf build