CS3700-project3/Makefile

28 lines
376 B
Makefile

.PHONY: all clean test c t
all: .rustup-installed release-build
debug-build:
cargo build
release-build:
cargo build --release
cp ./target/release/hptp-recv ./3700recv
cp ./target/release/hptp-send ./3700send
clean:
cargo clean
rm -f 3700send 3700recv
test:
cargo test
c: clean
t: test
.rustup-installed:
rustup install nightly
rustup install stable
touch $@