CS3700-project3/Makefile

28 lines
376 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-09 16:41:41 +00:00
all: .rustup-installed release-build
debug-build:
2020-02-21 21:51:19 +00:00
cargo build
2020-03-09 16:41:41 +00:00
release-build:
cargo build --release
cp ./target/release/hptp-recv ./3700recv
cp ./target/release/hptp-send ./3700send
2020-02-21 21:51:19 +00:00
clean:
cargo clean
2020-03-09 16:41:41 +00:00
rm -f 3700send 3700recv
2020-02-21 21:51:19 +00:00
test:
cargo test
c: clean
t: test
2020-03-02 20:16:58 +00:00
.rustup-installed:
rustup install nightly
rustup install stable
touch $@