libbolt/Makefile

17 lines
173 B
Makefile

.PHONY: all test doc clean
all:
cargo build
cargo run
test:
# runs the unit test suite
cargo test
doc:
# generates the documentation
cargo doc
clean:
cargo clean