~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-07-25 03:40:12 UTC
  • mfrom: (4568.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090725034012-2fnpljnq7uvk9ss2
(igc) Support doc generation via sphinx

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
derived_txt_files := \
90
90
        doc/en/user-reference/bzr_man.txt \
91
91
        doc/en/release-notes/NEWS.txt
92
 
txt_files := $(wildcard doc/*/tutorials/*.txt) \
 
92
txt_files := \
 
93
        doc/en/tutorials/tutorial.txt \
 
94
        doc/en/tutorials/using_bazaar_with_launchpad.txt \
 
95
        doc/en/tutorials/centralized_workflow.txt \
 
96
        $(wildcard doc/ru/tutorials/*.txt) \
93
97
        $(wildcard doc/*/mini-tutorial/index.txt) \
94
98
        $(wildcard doc/*/user-guide/index.txt) \
95
99
        $(derived_txt_files) \
101
105
        $(wildcard doc/index.*.txt)
102
106
non_txt_files := \
103
107
       doc/default.css \
104
 
       $(wildcard doc/*/quick-reference/quick-start-summary.svg) \
105
 
       $(wildcard doc/*/quick-reference/quick-start-summary.png) \
106
 
       $(wildcard doc/*/quick-reference/quick-start-summary.pdf) \
 
108
       $(wildcard doc/*/quick-reference/bzr-quick-reference.svg) \
 
109
       $(wildcard doc/*/quick-reference/bzr-quick-reference.png) \
 
110
       $(wildcard doc/*/quick-reference/bzr-quick-reference.pdf) \
107
111
       $(wildcard doc/*/user-guide/images/*.png)
108
112
htm_files := $(patsubst %.txt, %.html, $(txt_files)) 
109
113