-
Notifications
You must be signed in to change notification settings - Fork 3
/
makefile
112 lines (75 loc) · 2.03 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
# Make will use bash instead of sh
SHELL := /usr/bin/env bash
.PHONY: help
help:
@echo ' make qdgw Start the Start the Quant Data Gateway (QDGW).'
@echo ' make symdb Start the Symbol Master Database Service (SYMDB)'
@echo ' make example Run the example code in flv_examples.'
#
@echo ' make build Builds the code base incrementally (fast) for dev.'
@echo ' make check Checks the code base for security vulnerabilities.'
@echo ' make doc Builds, tests, and opens api docs in a browser.'
@echo ' make fix Fixes linting issues as reported by clippy.'
@echo ' make import Imports tick data from CSV into QuestDB.'
@echo ' make format Formats call code according to cargo fmt style.'
@echo ' make setup Tests and installs all make script dependencies.'
@echo ' make run Runs the default binary (QDGW).'
@echo ' make update Update rust, update and build the project.'
@echo ' make test Tests across all crates.'
@echo ' make sbe Generates Rust bindings from the SBE schema.'
# "---------------------------------------------------------"
# "---------------------------------------------------------"
.PHONY: build
build:
@source scripts/build.sh
.PHONY: bench
bench:
@source scripts/bench.sh
.PHONY: check
check:
@source scripts/check.sh
.PHONY: clean
clean:
@source scripts/clean.sh
.PHONY: doc
doc:
@source scripts/doc.sh
.PHONY: example
example:
@source scripts/example.sh
.PHONY: fix
fix:
@source scripts/fix.sh
.PHONY: import
import:
@source scripts/import.sh
.PHONY: format
format:
@source scripts/format.sh
.PHONY: setup
setup:
@source scripts/install_deps.sh
.PHONY: docker
docker:
@source scripts/docker.sh
.PHONY: release
release:
@source scripts/release.sh
.PHONY: qdgw
qdgw:
@source scripts/qdgw.sh
.PHONY: symdb
symdb:
@source scripts/symdb.sh
.PHONY: run
run:
@source scripts/run.sh
.PHONY: update
update:
@source scripts/update.sh
.PHONY: test
test:
@source scripts/test.sh
.PHONY: sbe
sbe:
@source scripts/sbe.sh