1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
# A relatively simple Makefile to assist in building parts of bzr. Mostly for
18
# building documentation, etc.
20
.PHONY: all clean extensions pyflakes api-docs
25
@echo "building extension modules."
26
python setup.py build_ext -i
4
29
python -Werror ./bzr selftest -v $(tests)
5
30
@echo "Running all tests with no locale."
6
31
LC_CTYPE= LANG=C LC_ALL= ./bzr selftest -v $(tests)
19
44
pyflakes bzrlib | grep -v ' imported but unused'
23
48
-find . -name "*.pyc" -o -name "*.pyo" | xargs rm -f
24
49
rm -rf test????.tmp
54
PYTHONPATH=$(PWD) python tools/bzr_epydoc --html -o api/html --docformat 'restructuredtext en' $(docfiles)
57
PYTHONPATH=$(PWD) python tools/bzr_epydoc --check --docformat 'restructuredtext en' $(docfiles)
29
60
# build emacs cross-reference
53
84
pretty_files: $(patsubst doc/%.txt, $(PRETTYDIR)/%.htm, $(txt_files))
86
doc/HACKING.htm: HACKING
87
python tools/rst2html.py --link-stylesheet --stylesheet=default.css HACKING doc/HACKING.htm
56
90
python tools/rst2html.py --link-stylesheet --stylesheet=default.css doc/$*.txt doc/$*.htm
58
92
$(PRETTYDIR)/%.htm: pretty_docs doc/%.txt
59
93
python tools/rst2prettyhtml.py doc/bazaar-vcs.org.kid doc/$*.txt \
60
94
$(PRETTYDIR)/$*.htm
62
doc/bzr_man.txt: bzrlib/builtins.py \
96
MAN_DEPENDENCIES = bzrlib/builtins.py \
63
97
bzrlib/bundle/commands.py \
64
98
bzrlib/conflicts.py \
65
99
bzrlib/sign_my_commits.py \
66
100
generate_docs.py \
67
101
tools/doc_generate/__init__.py \
68
102
tools/doc_generate/autodoc_rstx.py
69
python generate_docs.py -o doc/bzr_man.txt rstx
104
doc/bzr_man.txt: $(MAN_DEPENDENCIES)
105
python generate_docs.py -o $@ rstx
107
MAN_PAGES = man1/bzr.1
108
man1/bzr.1: $(MAN_DEPENDENCIES)
109
python generate_docs.py -o $@ man
111
docs: $(htm_files) $(MAN_PAGES) doc/HACKING.htm
74
114
python tools/win32/ostools.py copytodir $(htm_files) doc/default.css NEWS README win32_bzr.exe/doc
76
116
# clean produced docs
78
python tools/win32/ostools.py remove doc/bzr_man.txt $(htm_files) \
79
$(HTMLDIR) $(PRETTYDIR)
118
python tools/win32/ostools.py remove $(htm_files) \
119
$(HTMLDIR) $(PRETTYDIR) doc/bzr_man.txt $(MAN_PAGES)
82
122
# make bzr.exe for win32 with py2exe
95
135
# win32 python's distutils-based installer
96
136
# require to have python interpreter installed on win32
97
137
python-installer: docs
98
python setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py"
138
python setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py" -d .
101
141
# clean on win32 all installer-related files and directories
107
147
python tools/win32/ostools.py remove doc/bzr_man.txt
108
148
python tools/win32/ostools.py remove tools/win32/bzr.iss
109
149
python tools/win32/ostools.py remove bzr-setup*.exe
150
python tools/win32/ostools.py remove bzr-*win32.exe
110
151
python tools/win32/ostools.py remove dist