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
all: readme
readme: README.md
README.md: README.tpl src/lib.rs
cargo readme > $@
test:
cargo test --offline
test-no-default-features:
cargo test --offline --no-default-features
clean:
@cargo clean
@rm -f z.*
@rm -f *.profraw
clippy:
cargo clippy --offline --tests --workspace
fmt:
cargo fmt
doc:
cargo doc
update-regexes: resources/regexes.yaml
resources/regexes.yaml: core/regexes.yaml
cp -a core/regexes.yaml resources/
core/regexes.yaml:
git submodule update --init core
# git submodule update --remote core