-
Notifications
You must be signed in to change notification settings - Fork 4
/
makefile
42 lines (27 loc) · 849 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
build: build-storage build-master build-directory
build-library: build-proto
cargo build
build-storage: build-library
cargo build --package storage
build-master: build-library
cargo build --package master
build-directory: build-library
cargo build --package directory
release: build-storage build-master build-directory
release-library: release-proto
cargo build --release
release-storage: release-library
cargo build --release --package storage
release-master: release-library
cargo build --release --package master
release-directory: release-library
cargo build --release --package directory
test: build-library
RUST_BACKTRACE=full cargo test -- --nocapture
build-proto: format
cargo build --package proto
release-proto: format
cargo build --release --package proto
format:
cargo fmt
proto: build-proto release-proto