1 2 3 4 5 6 7 8 9 10 11 12 13
all: @echo "make run | Runs executable target (example1.rs)" @echo "make fmt | Formats all source code" @echo "make test | Runs all tests" run: cargo run --bin example1 fmt: cargo fmt test: cargo test