CS3700-project3/Makefile

20 lines
200 B
Makefile

.PHONY: all clean test c t
all: .rustup-installed
cargo build
clean:
cargo clean
test:
cargo test
c: clean
t: test
.rustup-installed:
rustup install nightly
rustup install stable
touch $@