85
90
derived_txt_files := \
86
91
doc/en/user-reference/bzr_man.txt \
87
92
doc/en/release-notes/NEWS.txt
88
txt_files := $(wildcard doc/en/tutorials/*.txt) \
94
doc/en/tutorials/tutorial.txt \
95
doc/en/tutorials/using_bazaar_with_launchpad.txt \
96
doc/en/tutorials/centralized_workflow.txt \
97
$(wildcard doc/ru/tutorials/*.txt) \
98
$(wildcard doc/*/mini-tutorial/index.txt) \
99
$(wildcard doc/*/user-guide/index.txt) \
89
100
$(derived_txt_files) \
90
doc/en/user-guide/index.txt \
91
doc/en/mini-tutorial/index.txt \
92
101
doc/en/developer-guide/HACKING.txt \
102
doc/en/upgrade-guide/index.txt \
93
103
$(wildcard doc/es/guia-usario/*.txt) \
94
104
doc/es/mini-tutorial/index.txt \
98
doc/ru/user-guide/index.txt \
99
doc/ru/mini-tutorial/index.txt \
100
$(wildcard doc/ru/tutorials/*.txt)
106
$(wildcard doc/index.*.txt)
101
107
non_txt_files := \
102
108
doc/default.css \
103
doc/en/quick-reference/quick-start-summary.svg \
104
doc/en/quick-reference/quick-start-summary.png \
105
doc/en/quick-reference/quick-start-summary.pdf \
106
$(wildcard doc/en/user-guide/images/*.png) \
107
doc/es/referencia-rapida/referencia-rapida.svg \
108
doc/es/referencia-rapida/referencia-rapida.png \
109
doc/es/referencia-rapida/referencia-rapida.pdf \
110
$(wildcard doc/es/guia-usuario/images/*.png) \
111
doc/ru/quick-reference/quick-start-summary.svg \
112
doc/ru/quick-reference/quick-start-summary.png \
113
doc/ru/quick-reference/quick-start-summary.pdf \
114
$(wildcard doc/ru/user-guide/images/*.png)
109
$(wildcard doc/*/quick-reference/bzr-quick-reference.svg) \
110
$(wildcard doc/*/quick-reference/bzr-quick-reference.png) \
111
$(wildcard doc/*/quick-reference/bzr-quick-reference.pdf) \
112
$(wildcard doc/*/user-guide/images/*.png)
115
113
htm_files := $(patsubst %.txt, %.html, $(txt_files))
117
115
# doc/developers/*.txt files that should *not* be individually
177
175
$(rst2html) --stylesheet=../../default.css $< $@
179
177
MAN_DEPENDENCIES = bzrlib/builtins.py \
180
bzrlib/bundle/commands.py \
181
bzrlib/conflicts.py \
182
bzrlib/help_topics/__init__.py \
184
bzrlib/sign_my_commits.py \
185
bzrlib/bugtracker.py \
187
tools/doc_generate/__init__.py \
188
tools/doc_generate/autodoc_man.py \
189
tools/doc_generate/autodoc_rstx.py \
190
$(wildcard $(addsuffix /*.txt, bzrlib/help_topics/en))
178
$(wildcard bzrlib/*.py) \
179
$(wildcard bzrlib/*/*.py) \
180
tools/generate_docs.py \
181
$(wildcard $(addsuffix /*.txt, bzrlib/help_topics/en))
192
183
doc/en/user-reference/bzr_man.txt: $(MAN_DEPENDENCIES)
193
$(PYTHON) generate_docs.py -o $@ rstx
184
$(PYTHON) tools/generate_docs.py -o $@ rstx
195
186
doc/en/release-notes/NEWS.txt: NEWS
196
187
$(PYTHON) -c "import shutil; shutil.copyfile('$<', '$@')"
198
189
MAN_PAGES = man1/bzr.1
199
190
man1/bzr.1: $(MAN_DEPENDENCIES)
200
$(PYTHON) generate_docs.py -o $@ man
191
$(PYTHON) tools/generate_docs.py -o $@ man
193
upgrade_guide_dependencies = $(wildcard $(addsuffix /*.txt, doc/en/upgrade-guide))
195
doc/en/upgrade-guide/index.html: $(upgrade_guide_dependencies)
196
$(rst2html) --stylesheet=../../default.css $(dir $@)index.txt $@
202
198
# build a png of our performance task list
232
228
### Windows Support ###
230
# make all the installers completely from scratch, using zc.buildout
231
# to fetch the dependencies
232
# These are files that need to be copied into the build location to boostrap
234
# Note that the path is relative to tools/win32
235
BUILDOUT_FILES := buildout.cfg \
236
buildout-templates/bin/build-installer.bat.in \
237
ostools.py bootstrap.py
240
@echo Make all the installers from scratch
241
@# Build everything in a separate directory, to avoid cluttering the WT
242
$(PYTHON) tools/win32/ostools.py makedir build-win32
243
@# cd to tools/win32 so that the relative paths are copied correctly
244
cd tools/win32 && $(PYTHON) ostools.py copytree $(BUILDOUT_FILES) ../../build-win32
245
@# There seems to be a bug in gf.release.bzr, It doesn't correctly update
246
@# existing release directories, so delete them manually before building
247
@# It means things may be rebuilt that don't need to be, but at least
248
@# it will be correct when they do.
249
cd build-win32 && $(PYTHON) ostools.py remove release */release
250
cd build-win32 && $(PYTHON) bootstrap.py
251
cd build-win32 && bin/buildout
252
cd build-win32 && bin/build-installer.bat $(BZR_TARGET) $(PLUGIN_TARGET)
256
$(PYTHON) tools/win32/ostools.py remove build-win32
234
258
# make bzr.exe for win32 with py2exe
236
260
@echo *** Make bzr.exe
243
267
# win32 installer for bzr.exe
244
268
installer: exe copy-docs
245
@echo *** Make windows installer
269
@echo *** Make Windows installer
246
270
$(PYTHON) tools/win32/run_script.py cog.py -d -o tools/win32/bzr.iss tools/win32/bzr.iss.cog
247
271
iscc /Q tools/win32/bzr.iss
249
273
# win32 Python's distutils-based installer
250
274
# require to have Python interpreter installed on win32
252
python24 setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py" -d .
276
$(PYTHON24) setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py" -d .
255
python25 setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py" -d .
257
python-installer: py-inst-24 py-inst-25
279
$(PYTHON25) setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py" -d .
282
$(PYTHON26) setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py" -d .
284
python-installer: py-inst-24 py-inst-25 py-inst-26