~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Martin Pool
  • Date: 2009-06-10 05:00:47 UTC
  • mto: This revision was merged to the branch mainline in revision 4426.
  • Revision ID: mbp@sourcefrog.net-20090610050047-a8ml6ntyco790o4c
Trim some outdated performance drive documentation, and the performance.png graph

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
        doc/developers/initial-push-pull.txt \
121
121
        doc/developers/merge-scaling.txt \
122
122
        doc/developers/missing.txt \
123
 
        doc/developers/performance-contributing.txt \
124
123
        doc/developers/performance-roadmap-rationale.txt \
125
124
        doc/developers/performance-use-case-analysis.txt \
126
125
        doc/developers/planned-change-integration.txt \
189
188
        $(PYTHON) generate_docs.py -o $@ man
190
189
 
191
190
# build a png of our performance task list
 
191
 
192
# this is no longer built by default; you can build it if you want to look at it
192
193
doc/developers/performance.png: doc/developers/performance.dot
193
194
        @echo Generating $@
194
195
        @dot -Tpng $< -o$@ || echo "Dot not installed; skipping generation of $@"
195
196
 
196
 
derived_web_docs = $(htm_files) $(dev_htm_files) doc/developers/performance.png
 
197
derived_web_docs = $(htm_files) $(dev_htm_files) 
197
198
WEB_DOCS = $(derived_web_docs) $(non_txt_files)
198
199
ALL_DOCS = $(derived_web_docs) $(MAN_PAGES)
199
200