~drizzle-trunk/libdrizzle/jenkins-Libdrizzle-106

« back to all changes in this revision

Viewing changes to docs/include.am

  • Committer: Continuous Integration
  • Date: 2013-05-12 22:41:41 UTC
  • mfrom: (122.1.1 libdrizzle-5.1)
  • Revision ID: ci@drizzle.org-20130512224141-7zkq5rs7px22qtmk
Merge lp:~brianaker/libdrizzle/ddm4-update-may Build: jenkins-Libdrizzle-106

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
SPHINXOPTS    = ${SPHINX_WARNINGS} -q
9
9
PAPER         =
10
 
SPHINX_BUILDDIR      = ${abs_top_builddir}/docs
 
10
SPHINX_BUILDDIR      = ${abs_srcdir}/docs
11
11
 
12
12
# Internal variables.
13
13
PAPEROPT_a4     = -D latex_paper_size=a4
14
14
PAPEROPT_letter = -D latex_paper_size=letter
15
 
ALLSPHINXOPTS   = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(SPHINX_BUILDDIR)
 
15
ALLSPHINXOPTS   = -c $(top_builddir)/docs $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(SPHINX_BUILDDIR)
16
16
 
17
17
.PHONY: clean-docs-check
18
18
clean-docs-check:
19
 
        -rm -rf docs/_build docs/doctrees man/.doctrees/
 
19
        -rm -rf docs/_build docs/doctrees man/.doctrees
20
20
 
21
21
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
22
 
if HAVE_SPHINX
23
22
 
24
 
sphinx-help:
25
 
        @echo "Please use \`make <target>' where <target> is one of"
26
 
        @echo "  html       to make standalone HTML files"
27
 
        @echo "  singlehtml to make a single large HTML file"
28
 
        @echo "  pickle     to make pickle files"
29
 
        @echo "  json       to make JSON files"
30
 
        @echo "  htmlhelp   to make HTML files and a HTML help project"
31
 
        @echo "  qthelp     to make HTML files and a qthelp project"
32
 
        @echo "  devhelp    to make HTML files and a Devhelp project"
33
 
        @echo "  epub       to make an epub"
34
 
        @echo "  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
35
 
        @echo "  latexpdf   to make LaTeX files and run them through pdflatex"
36
 
        @echo "  text       to make text files"
37
 
        @echo "  man        to make manual pages"
38
 
        @echo "  changes    to make an overview of all changed/added/deprecated items"
39
 
        @echo "  linkcheck  to check all external links for integrity"
40
 
        @echo "  doctest    to run all doctests embedded in the documentation (if enabled)"
 
23
man: docs/conf.py
 
24
        @PYTHONPATH=$(SPHINX_BUILDDIR)/docs  $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) ${top_builddir}/man
41
25
 
42
26
install-html-local: html-local
43
27
        @$(MKDIR_P)  $(htmldir)/html
86
70
text: docs/conf.py
87
71
        @PYTHONPATH=${top_srcdir}/docs  $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(SPHINX_BUILDDIR)/text
88
72
 
89
 
if HAVE_RECENT_SPHINX
90
 
man:
91
 
        @PYTHONPATH=$(SPHINX_BUILDDIR)/docs  $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) ${top_builddir}/man
92
 
 
93
 
else
94
 
 
95
 
man:
96
 
 
97
 
endif
98
 
 
99
73
changes: docs/conf.py
100
74
        @PYTHONPATH=${top_srcdir}/docs  $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(SPHINX_BUILDDIR)/changes
101
75
 
106
80
        PYTHONPATH=${top_srcdir}/docs  $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(SPHINX_BUILDDIR)/doctest
107
81
        @echo "Testing of doctests in the sources finished, look at the " \
108
82
              "results in $(SPHINX_BUILDDIR)/doctest/output.txt."
109
 
 
110
 
else
111
 
 
112
 
man:
113
 
 
114
 
endif