nalgebra/Makefile
Sébastien Crozet 15d1fa0b8b Fix warnings.
2014-11-07 19:23:46 +01:00

28 lines
283 B
Makefile

tmp=_git_distcheck
all:
cargo build --release
test:
cargo test
bench:
cargo bench
doc:
cargo doc
clean:
cargo clean
distcheck:
rm -rf $(tmp)
git clone --recursive . $(tmp)
make -C $(tmp)
make -C $(tmp) test
make -C $(tmp) bench
rm -rf $(tmp)
.PHONY:doc
.PHONY:test