1 2 3 4 5 6 7 8 9 10 11 12 13
SHELL := /bin/bash .PHONY: all check test all: check test check: cargo build --all-features && \ cargo clippy --all-features -- -D warnings && \ cargo fmt --all -- --check test: cargo test --all-features