1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
.PHONY: doc doc: cargo doc --no-deps .PHONY: codegen codegen: cd codegen && ./build.sh .PHONY: test test: cargo test --all-targets --all-features .PHONY: lint lint: cargo fmt -- --check cargo clippy --all-targets --all-features -- -Dclippy::all