diff options
author | Pauli Virtanen <pav@iki.fi> | 2010-10-04 21:22:57 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2010-10-04 21:55:43 +0200 |
commit | 8b0453630961b5788c83381c276c63273cdd53b7 (patch) | |
tree | feb56516b83b52677ab7e9b790a1905c1f01d9d2 /doc/Makefile | |
parent | 816adf97406ce3a6d2aa3059e6b84de6791b0ee3 (diff) | |
download | numpy-8b0453630961b5788c83381c276c63273cdd53b7.tar.gz |
DOC: add developer docs based on gitwash
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index 30caa1f3b..03b327079 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -17,7 +17,7 @@ PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source .PHONY: help clean html web pickle htmlhelp latex changes linkcheck \ - dist dist-build + dist dist-build gitwash-update #------------------------------------------------------------------------------ @@ -31,10 +31,18 @@ help: @echo " linkcheck to check all external links for integrity" @echo " dist PYVER=... to make a distribution-ready tree" @echo " upload USER=... to upload results to docs.scipy.org" + @echo " gitwash-update GITWASH=path/to/gitwash update gitwash developer docs" clean: -rm -rf build/* source/reference/generated +gitwash-update: + rm -rf source/dev/gitwash + install -d source/dev/gitwash + python $(GITWASH)/gitwash_dumper.py source/dev NumPy \ + --repo-name=numpy \ + --github-user=numpy + cat source/dev/gitwash_links.txt >> source/dev/gitwash/git_links.inc #------------------------------------------------------------------------------ # Automated generation of all documents |