CS3700-project3/Makefile

16 lines
106 B
Makefile

all:
cargo build
clean:
cargo clean
test:
cargo test
c: clean
t: test
.PHONY: all clean test c t