1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
all: check build test export RUSTFLAGS=-Dwarnings -Dclippy::all -Dclippy::pedantic build: cargo build check: cargo clippy --all-targets test: cargo test fmt: cargo fmt --all clean: cargo clean go clean ./... .PHONY: all build test fmt clean