tcod 0.15.0

The Rust bindings for the Doryen library (a.k.a. libtcod).
Documentation
build:
	cargo build

test:
	cargo test  --features "rustc-serialize_impls"

package: clean
	cargo package --manifest-path tcod_sys/Cargo.toml
	cargo package

clean:
	git clean -x -f -d

.PHONY: build test package clean