Updated docs from master

This commit is contained in:
Manuel Ebert 2013-11-05 11:54:11 -08:00
parent c277241135
commit 2134ae6792
110 changed files with 17645 additions and 0 deletions

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
# This currently only builds gh-pages from docs
gh_pages:
git checkout gh-pages ; \
git checkout master docs ; \
git checkout master jrnl ; \
cd docs ; \
make html ; \
cd .. ; \
cp -r docs/_build/html/* . ; \
git add * ; \
git commit -m "Updated docs from master" ; \
git push -u origin gh-pages ; \
git checkout master