~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-04 17:56:49 UTC
  • mfrom: (4929.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100104175649-lb0fpgzbuyu91ltv
(vila) Cleanup conflicts docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
 
200
200
# translate txt docs to html
201
201
derived_txt_files = \
 
202
        doc/en/user-reference/bzr_man.txt \
202
203
        doc/en/release-notes/NEWS.txt
203
204
txt_all = \
204
205
        doc/en/tutorials/tutorial.txt \
295
296
%.html: %.txt
296
297
        $(rst2html) --stylesheet=../../default.css $< $@
297
298
 
 
299
doc/en/user-reference/bzr_man.txt: $(MAN_DEPENDENCIES)
 
300
        $(PYTHON) tools/generate_docs.py -o $@ rstx
 
301
 
298
302
doc/en/release-notes/NEWS.txt: NEWS
299
303
        $(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
300
304