~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

merge shell-like-tests into description resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
clean-sphinx:
115
115
        cd doc/en && make clean
116
116
        cd doc/es && make clean
 
117
        cd doc/ja && make clean
117
118
        cd doc/ru && make clean
118
119
        cd doc/developers && make clean
119
120
 
122
123
        doc/en/user-reference/index.txt \
123
124
        doc/es/Makefile \
124
125
        doc/es/make.bat \
 
126
        doc/ja/Makefile \
 
127
        doc/ja/make.bat \
125
128
        doc/ru/Makefile \
126
129
        doc/ru/make.bat \
127
130
        doc/developers/Makefile \
144
147
        cd doc/en && make html
145
148
        cd doc/es && make html
146
149
        cd doc/ru && make html
 
150
        cd doc/ja && make html
147
151
        cd doc/developers && make html
148
152
 
149
153
# Build the PDF docs using Sphinx. This requires numerous LaTeX
154
158
pdf-sphinx: $(SPHINX_DEPENDENCIES)
155
159
        cd doc/en && make latex
156
160
        cd doc/es && make latex
 
161
        cd doc/ja && make latex
157
162
        cd doc/developers && make latex
158
163
        cd doc/en/_build/latex && make all-pdf
159
164
        cd doc/es/_build/latex && make all-pdf
166
171
        cd doc/en && make htmlhelp
167
172
        cd doc/es && make htmlhelp
168
173
        cd doc/ru && make htmlhelp
 
174
        cd doc/ja && make htmlhelp
169
175
        cd doc/developers && make htmlhelp
170
176
 
171
177
 
179
185
        $(PYTHON) tools/package_docs.py doc/en $(DOC_WEBSITE_BUILD)
180
186
        $(PYTHON) tools/package_docs.py doc/es $(DOC_WEBSITE_BUILD)
181
187
        $(PYTHON) tools/package_docs.py doc/ru $(DOC_WEBSITE_BUILD)
 
188
        $(PYTHON) tools/package_docs.py doc/ja $(DOC_WEBSITE_BUILD)
182
189
        $(PYTHON) tools/package_docs.py doc/developers $(DOC_WEBSITE_BUILD)
183
190
 
184
191
 
199
206
        doc/en/tutorials/using_bazaar_with_launchpad.txt \
200
207
        doc/en/tutorials/centralized_workflow.txt \
201
208
        $(wildcard doc/es/tutorials/*.txt) \
202
 
        $(wildcard doc/ru/tutorials/*.txt) \
 
209
                $(wildcard doc/ru/tutorials/*.txt) \
 
210
        doc/ja/tutorials/tutorial.txt \
 
211
        doc/ja/tutorials/using_bazaar_with_launchpad.txt \
 
212
        doc/ja/tutorials/centralized_workflow.txt \
203
213
        $(wildcard doc/*/mini-tutorial/index.txt) \
204
214
        $(wildcard doc/*/user-guide/index-plain.txt) \
 
215
        doc/en/admin-guide/index-plain.txt \
205
216
        $(wildcard doc/es/guia-usario/*.txt) \
206
217
        $(derived_txt_files) \
207
218
        doc/en/upgrade-guide/index.txt \
210
221
txt_nohtml = \
211
222
        doc/en/user-guide/index.txt \
212
223
        doc/es/user-guide/index.txt \
213
 
        doc/ru/user-guide/index.txt
 
224
        doc/ja/user-guide/index.txt \
 
225
        doc/ru/user-guide/index.txt \
 
226
        doc/en/admin-guide/index.txt
214
227
txt_files = $(filter-out $(txt_nohtml), $(txt_all))
215
228
htm_files = $(patsubst %.txt, %.html, $(txt_files)) 
216
229
 
268
281
#doc/ru/user-guide/index.html: $(wildcard $(addsuffix /*.txt, doc/ru/user-guide)) 
269
282
#       $(rst2html) --stylesheet=../../default.css $(dir $@)index.txt $@
270
283
#
 
284
doc/en/admin-guide/index-plain.html: $(wildcard $(addsuffix /*.txt, doc/en/admin-guide)) 
 
285
        $(rst2html) --stylesheet=../../default.css $(dir $@)index-plain.txt $@
 
286
 
271
287
doc/developers/%.html: doc/developers/%.txt
272
288
        $(rst2html) --stylesheet=../default.css $< $@
273
289