aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: c67095725de520a524986414b244b8ce4a88db23 (plain)
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
all: release

release:
	cargo build --release

debug:
	cargo build

test:
	cargo test

check:
	cargo check

clean:
	cargo clean

fmt:
	cargo fmt

clippy:
	cargo clippy -- -D warnings

doc:
	cargo doc --no-deps --open

audit:
	cargo deny check

.PHONY: all release debug test test-release check clean fmt clippy doc audit