libbolt/Makefile

20 lines
200 B
Makefile
Raw Normal View History

2018-06-05 10:26:16 -07:00
.PHONY: all bench test doc clean
2018-02-24 00:12:58 -08:00
all:
cargo build
cargo run
2018-06-05 10:26:16 -07:00
bench:
cargo bench
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