/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 Makefile

Show diffs side-by-side

added added

removed removed

Lines of Context:
185
185
        $(PYTHON) tools/package_docs.py doc/en $(DOC_WEBSITE_BUILD)
186
186
        $(PYTHON) tools/package_docs.py doc/es $(DOC_WEBSITE_BUILD)
187
187
        $(PYTHON) tools/package_docs.py doc/ru $(DOC_WEBSITE_BUILD)
 
188
        $(PYTHON) tools/package_docs.py doc/ja $(DOC_WEBSITE_BUILD)
188
189
        $(PYTHON) tools/package_docs.py doc/developers $(DOC_WEBSITE_BUILD)
189
190
 
190
191
 
211
212
        doc/ja/tutorials/centralized_workflow.txt \
212
213
        $(wildcard doc/*/mini-tutorial/index.txt) \
213
214
        $(wildcard doc/*/user-guide/index-plain.txt) \
 
215
        doc/en/admin-guide/index-plain.txt \
214
216
        $(wildcard doc/es/guia-usario/*.txt) \
215
217
        $(derived_txt_files) \
216
218
        doc/en/upgrade-guide/index.txt \
220
222
        doc/en/user-guide/index.txt \
221
223
        doc/es/user-guide/index.txt \
222
224
        doc/ja/user-guide/index.txt \
223
 
        doc/ru/user-guide/index.txt
 
225
        doc/ru/user-guide/index.txt \
 
226
        doc/en/admin-guide/index.txt
224
227
txt_files = $(filter-out $(txt_nohtml), $(txt_all))
225
228
htm_files = $(patsubst %.txt, %.html, $(txt_files)) 
226
229
 
278
281
#doc/ru/user-guide/index.html: $(wildcard $(addsuffix /*.txt, doc/ru/user-guide)) 
279
282
#       $(rst2html) --stylesheet=../../default.css $(dir $@)index.txt $@
280
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
 
281
287
doc/developers/%.html: doc/developers/%.txt
282
288
        $(rst2html) --stylesheet=../default.css $< $@
283
289