libbolt/Makefile

25 lines
302 B
Makefile
Raw Normal View History

.PHONY: all bench test update doc clean
2018-02-24 00:12:58 -08:00
all:
export RUST_BACKTRACE=1
2018-02-24 00:12:58 -08:00
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
2018-06-07 23:57:46 -07:00
update:
# updates local git repos (for forked bn lib)
cargo update
2018-02-24 23:46:52 -08:00
doc:
# generates the documentation
cargo doc
2018-02-24 00:12:58 -08:00
clean:
cargo clean