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
#
all: readme
readme: README.md
README.md: README.tpl src/lib.rs
cargo readme > $@
clean:
@cargo clean
@rm -f z.* *.log *.tmp
clippy:
cargo clippy --offline --tests --workspace
clippy-all:
cargo clippy --tests -- -Dclippy::all
test-build:
cargo test --no-run
sync
test:
cargo test --offline
fmt:
cargo fmt
doc:
cargo doc --features dox
bench-build:
cargo bench --features="abench" --no-run
sync
bench:
cargo bench --features="abench"
ubench-build:
cargo bench --features="ubench" --no-run
sync
ubench:
cargo bench --features="ubench"
cov:
cargo llvm-cov
cargo llvm-cov --output-dir target/llvm-cov --text report
cargo llvm-cov --output-dir target/llvm-cov --html report