Build documentation in make html target
authorPetri Lehtinen <petri@digip.org>
Tue, 3 Nov 2009 21:07:43 +0000 (23:07 +0200)
committerPetri Lehtinen <petri@digip.org>
Tue, 3 Nov 2009 21:09:04 +0000 (23:09 +0200)
To keep the distchecks for the documentation, the documentation has to
be built in the check target instead of distcheck-hook.

While at it, rename doc/.build to doc/_build. This naming is the
default with sphinx 0.6.2.

Makefile.am
README.rst
doc/.gitignore
doc/Makefile.am
doc/README
doc/conf.py
doc/gettingstarted.rst

index e64f397..185eaab 100644 (file)
@@ -1,7 +1,4 @@
 EXTRA_DIST = CHANGES LICENSE README.rst
 SUBDIRS = doc src test
 
-distcheck-hook:
-       sphinx-build -b html -W \
-               $(distdir)/doc \
-               $(distdir)/_build/doc/.build/html
+check-local: html
index ebd3941..2f0ca9c 100644 (file)
@@ -49,10 +49,9 @@ available at http://www.digip.org/jansson/doc/.
 
 To generate HTML documentation yourself, invoke::
 
-   cd doc/
-   sphinx-build . .build/html
+   make html
 
-... and point your browser to ``.build/html/index.html``. Sphinx_ is
+and point your browser to ``doc/_build/html/index.html``. Sphinx_ is
 required to generate the documentation.
 
 
index 30bcfa4..69fa449 100644 (file)
@@ -1 +1 @@
-.build/
+_build/
index b00ee56..cb3723f 100644 (file)
@@ -2,6 +2,19 @@ EXTRA_DIST = \
        conf.py apiref.rst gettingstarted.rst github_commits.c index.rst \
        tutorial.rst ext/refcounting.py
 
+SPHINXBUILD = sphinx-build
+SPHINXOPTS = -d _build/doctrees -W
+
+html-local:
+       $(SPHINXBUILD) -b html $(SPHINXOPTS) $(srcdir) _build/html
+
+install-html-local: html
+       mkdir -p $(DESTDIR)$(htmldir)
+       cp -r _build/html $(DESTDIR)$(htmldir)
+
+uninstall-local:
+       rm -rf $(DESTDIR)$(htmldir)
+
 clean-local:
-       rm -rf .build
+       rm -rf _build
        rm -f ext/refcounting.pyc
index 3b10d2a..930b3bf 100644 (file)
@@ -1,5 +1,5 @@
 To build the documentation, invoke
 
-    sphinx-build . .build/html
+    make html
 
-in this directory. Then point your browser to .build/html/index.html.
+Then point your browser to _build/html/index.html.
index d274f54..02b4c79 100644 (file)
@@ -69,7 +69,7 @@ release = '1.1.1+'
 
 # List of directories, relative to source directory, that shouldn't be searched
 # for source files.
-exclude_trees = ['.build']
+exclude_trees = ['_build']
 
 # The reST default role (used for this markup: `text`) to use for all documents.
 #default_role = None
index 00dd16a..2221d07 100644 (file)
@@ -76,10 +76,9 @@ Documentation is in the ``doc/`` subdirectory. It's written in
 reStructuredText_ with Sphinx_ annotations. To generate the HTML
 documentation, invoke::
 
-   cd doc/
-   sphinx-build . .build/html
+   make html
 
-... and point your browser to ``.build/html/index.html``. Sphinx_ is
+and point your browser to ``doc/_build/html/index.html``. Sphinx_ is
 required to generate the documentation.
 
 .. _reStructuredText: http://docutils.sourceforge.net/rst.html