1 2 3 4 5 6 7 8 9 10 11 12 13 14
.PHONY: build default test trybuild DEFAULT := test default: $(DEFAULT) build: cargo build test: RUST_BACKTRACE=1 cargo test trybuild: TRYBUILD=overwrite cargo test --test compile_fail_tests