~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-05-11 02:38:21 UTC
  • mfrom: (4325.5.4 doc)
  • Revision ID: pqm@pqm.ubuntu.com-20090511023821-wzybcm1ga7ef1mq5
(mbp) move HACKING and recommend Launchpad reviews

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
# translate txt docs to html
85
85
derived_txt_files := \
86
86
        doc/en/user-reference/bzr_man.txt \
87
 
        doc/en/developer-guide/HACKING.txt \
88
87
        doc/en/release-notes/NEWS.txt
89
88
txt_files := $(wildcard doc/en/tutorials/*.txt) \
90
89
        $(derived_txt_files) \
91
90
        doc/en/user-guide/index.txt \
92
91
        doc/en/mini-tutorial/index.txt \
 
92
        doc/en/developer-guide/HACKING.txt \
93
93
        $(wildcard doc/es/guia-usario/*.txt) \
94
94
        doc/es/mini-tutorial/index.txt \
95
95
        doc/index.txt \
181
181
doc/en/user-reference/bzr_man.txt: $(MAN_DEPENDENCIES)
182
182
        $(PYTHON) generate_docs.py -o $@ rstx
183
183
 
184
 
doc/en/developer-guide/HACKING.txt: doc/developers/HACKING.txt
185
 
        $(PYTHON) tools/win32/ostools.py copytodir doc/developers/HACKING.txt doc/en/developer-guide
186
 
 
187
184
doc/en/release-notes/NEWS.txt: NEWS
188
185
        $(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
189
186