/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/en/Makefile

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-11 04:02:41 UTC
  • mfrom: (5017.2.2 tariff)
  • Revision ID: pqm@pqm.ubuntu.com-20100211040241-w6n021dz0uus341n
(mbp) add import-tariff tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
clean:
30
30
        -rm -rf _build/*
31
31
 
32
 
api:
33
 
        sphinx-apidoc -feM -s txt -o api ../../breezy
34
 
 
35
32
html:
36
 
        $(make_output_dirs)
37
33
        $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) _build/html
38
34
        @echo
39
35
        @echo "Build finished. The HTML pages are in _build/html."
40
36
 
41
37
dirhtml:
42
 
        $(make_output_dirs)
43
38
        $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) _build/dirhtml
44
39
        @echo
45
40
        @echo "Build finished. The HTML pages are in _build/dirhtml."
46
41
 
47
42
pickle:
48
 
        $(make_output_dirs)
49
43
        $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) _build/pickle
50
44
        @echo
51
45
        @echo "Build finished; now you can process the pickle files."
52
46
 
53
47
json:
54
 
        $(make_output_dirs)
55
48
        $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) _build/json
56
49
        @echo
57
50
        @echo "Build finished; now you can process the JSON files."
58
51
 
59
52
htmlhelp:
60
 
        $(make_output_dirs)
61
53
        $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) _build/htmlhelp
62
54
        @echo
63
55
        @echo "Build finished; now you can run HTML Help Workshop with the" \
64
56
              ".hhp project file in _build/htmlhelp."
65
57
 
66
58
qthelp:
67
 
        $(make_output_dirs)
68
59
        $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) _build/qthelp
69
60
        @echo
70
61
        @echo "Build finished; now you can run "qcollectiongenerator" with the" \
74
65
        @echo "# assistant -collectionFile _build/qthelp/Bazaar.qhc"
75
66
 
76
67
latex:
77
 
        $(make_output_dirs)
78
68
        $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) _build/latex
79
69
        @echo
80
70
        @echo "Build finished; the LaTeX files are in _build/latex."
82
72
              "run these through (pdf)latex."
83
73
 
84
74
changes:
85
 
        $(make_output_dirs)
86
75
        $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) _build/changes
87
76
        @echo
88
77
        @echo "The overview file is in _build/changes."
89
78
 
90
79
linkcheck:
91
 
        $(make_output_dirs)
92
80
        $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) _build/linkcheck
93
81
        @echo
94
82
        @echo "Link check complete; look for any errors in the above output " \
95
83
              "or in _build/linkcheck/output.txt."
96
84
 
97
85
doctest:
98
 
        $(make_output_dirs)
99
86
        $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) _build/doctest
100
87
        @echo "Testing of doctests in the sources finished, look at the " \
101
88
              "results in _build/doctest/output.txt."
102
 
 
103
 
texinfo:
104
 
        $(make_output_dirs)
105
 
        $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) _build/texinfo
106
 
        # Now build the info files using the Makefile provided by Sphinx
107
 
        $(MAKE) -C _build/texinfo
108