libbolt/Makefile

17 lines
173 B
Makefile
Raw Normal View History

2018-02-24 23:46:52 -08:00
.PHONY: all test doc clean
2018-02-24 00:12:58 -08:00
all:
cargo build
cargo run
2018-02-24 23:46:52 -08:00
test:
# runs the unit test suite
cargo test
doc:
# generates the documentation
cargo doc
2018-02-24 00:12:58 -08:00
clean:
cargo clean