pyo3/Makefile

37 lines
625 B
Makefile
Raw Normal View History

2015-04-19 05:50:50 +00:00
.PHONY: default build test doc extensions clean
default: test extensions
build:
cargo build
test: build
cargo test
doc: build
cargo doc --no-deps
extensions: build
make -C extensions/
clean:
rm -r target
make -C extensions/ clean
gh-pages:
git checkout --branch gh-pages git@github.com:dgrunwald/rust-cpython.git
.PHONY: gh-pages-doc
gh-pages-doc: doc | gh-pages
cd gh-pages && git pull
rm -r gh-pages/doc
cp -r target/doc gh-pages/
rm gh-pages/doc/.lock
cd gh-pages && git add .
cd gh-pages && git commit -m "Update documentation"
publish: default gh-pages-doc
cargo publish
cd gh-pages && git push