~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

Put in place a structure for the admin-guide

Show diffs side-by-side

added added

removed removed

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