~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-30 05:43:20 UTC
  • mfrom: (3054.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20071130054320-b4oer0rcbiy2ouzg
Bazaar User Guide for 1.0rc (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        doc/en/user-reference/bzr_man.txt \
84
84
        doc/en/developer-guide/HACKING.txt \
85
85
        doc/en/release-notes/NEWS.txt
86
 
doc_dir := doc/en/user-guide
 
86
doc_dir := doc/en/tutorials
87
87
txt_files := $(wildcard $(addsuffix /*.txt, $(doc_dir))) $(derived_txt_files) \
 
88
        doc/en/user-guide/index.txt \
88
89
        doc/en/mini-tutorial/index.txt \
89
90
        doc/en/user-reference/hooks.txt \
90
91
        doc/index.txt
104
105
%.html: %.txt
105
106
        $(rst2html) --stylesheet=../../default.css $< $@
106
107
 
 
108
USER_GUIDE_DEPENDENCIES = $(wildcard $(addsuffix /*.txt, doc/en/user-guide)) 
 
109
 
107
110
MAN_DEPENDENCIES = bzrlib/builtins.py \
108
111
                 bzrlib/bundle/commands.py \
109
112
                 bzrlib/conflicts.py \
113
116
                 tools/doc_generate/autodoc_man.py \
114
117
                 tools/doc_generate/autodoc_rstx.py
115
118
 
 
119
doc/en/user-guide/index.txt: $(USER_GUIDE_DEPENDENCIES)
 
120
 
116
121
doc/en/user-reference/bzr_man.txt: $(MAN_DEPENDENCIES)
117
122
        $(PYTHON) generate_docs.py -o $@ rstx
118
123