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
DEFAULT_GOAL := all
.PHONY: all
all: build lint README.md test
.PHONY: build
build: target/doc
cargo build
README.md: src/*.rs Cargo.* README.tpl
cargo readme > $@
.ONESHELL:
README.tpl: src/*.rs Cargo.*
cat << EOF > $@
{{readme}}
# Usage
\`\`\`
EOF
cargo run -- -h >> $@
echo \`\`\`>> $@
target/doc: Cargo.*
cargo doc
.PHONY: install
install:
cargo build --release
sudo install target/release/spfr /usr/local/bin
.PHONY: lint
lint:
cargo +nightly clippy -- -W clippy::pedantic
.PHONY: test
test:
cargo test