1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
.phony: all run clean test doc run: cargo run all: cargo build test: echo "this is only a Testfile!" > testfile.txt cargo test rm testfile.txt doc: cargo doc clean: rm -rf ./target rm -f ./logfile_*