nalgebra/Makefile
Sébastien Crozet c13b0388ef Remove implementations of Rotation, Translation and Transformation for the Identity type.
Because most of their methods did not make sence for the (constant) identity matrix, they were set
to `panic!` at runtime whenever the user tried to use them. Instead, it is much safer to completely
forbid their use by removing the related trait implementation.

See sebcrozet/ncollide#87.
2015-07-07 22:40:14 +02:00

28 lines
293 B
Makefile

tmp=_git_distcheck
all:
cargo build --release
test:
cargo test
bench:
cargo bench
doc:
cargo doc --no-deps
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