CS3700-project3/Makefile

20 lines
200 B
Makefile
Raw Normal View History

2020-03-02 20:16:58 +00:00
.PHONY: all clean test c t
2020-02-21 21:51:19 +00:00
2020-03-02 20:16:58 +00:00
all: .rustup-installed
2020-02-21 21:51:19 +00:00
cargo build
clean:
cargo clean
test:
cargo test
c: clean
t: test
2020-03-02 20:16:58 +00:00
.rustup-installed:
rustup install nightly
rustup install stable
touch $@