CS3700-project3/Makefile

36 lines
575 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 $@
2020-03-11 03:21:47 +00:00
.netsim:
mkdir $@
curl -Ss https://course.ccs.neu.edu/cs3700sp20/archive/tcp-sim.tgz | tar xzf - -C $@
sed -i '/.usr.bin.sudo/d' .netsim/netsim
netsim-shell: .netsim
./scripts/create-net-ns.sh