1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
.PHONY: help credits run: cargo run -- parse $(filter-out $@,$(MAKECMDGOALS)) test: cargo test fmt: cargo fmt clippy: cargo clippy precommit: test fmt clippy help: cargo run -- help credits: cargo run -- credits