~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Robert Collins
  • Date: 2005-08-24 12:54:49 UTC
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050824125449-4cc5745568016866
update hacking with some test foo

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
2
 
#
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.
7
 
#
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.
12
 
#
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
16
 
 
17
 
# A relatively simple Makefile to assist in building parts of bzr. Mostly for
18
 
# building documentation, etc.
19
 
 
20
 
.PHONY: all clean pyflakes api-docs
21
 
 
22
 
 
23
1
all:
 
2
        chmod u+x ./bzr
24
3
 
25
4
check:
26
 
        python -Werror ./bzr selftest -v $(tests)
27
 
        @echo "Running all tests with no locale."
28
 
        LC_CTYPE= LANG=C LC_ALL= ./bzr selftest -v $(tests)
29
 
        python -O -Werror ./bzr selftest -v $(tests)
30
 
 
31
 
check-msgeditor:
32
 
        ./bzr --no-plugins selftest -v msgeditor
33
 
 
34
 
# Run Python style checker (apt-get install pyflakes)
35
 
pyflakes:
36
 
        pyflakes bzrlib
37
 
 
38
 
pyflakes-nounused:
39
 
        # There are many of these warnings at the moment and they're not a
40
 
        # high priority to fix
41
 
        pyflakes bzrlib | grep -v ' imported but unused'
42
 
 
43
 
clean:
44
 
        python setup.py clean
45
 
        -find . -name "*.pyc" -o -name "*.pyo" | xargs rm -f
46
 
        rm -rf test????.tmp
47
 
 
48
 
docfiles = bzr bzrlib
49
 
api-docs:
50
 
        mkdir -p api/html
51
 
        PYTHONPATH=$(PWD) python tools/bzr_epydoc --html -o api/html --docformat 'restructuredtext en' $(docfiles)
52
 
 
53
 
check-api-docs:
54
 
        PYTHONPATH=$(PWD) python tools/bzr_epydoc --check --docformat 'restructuredtext en' $(docfiles)
55
 
 
56
 
 
57
 
# build emacs cross-reference
58
 
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
59
 
TAGS: $(tag_files)
60
 
        ctags-exuberant -e $(tag_files)
61
 
 
62
 
 
63
 
# Produce HTML docs to upload on Canonical server
64
 
HTMLDIR := html_docs
65
 
PRETTYDIR := pretty_docs
66
 
 
67
 
html-docs: docs
68
 
        python tools/win32/ostools.py copytodir $(htm_files) doc/default.css $(HTMLDIR)
69
 
 
70
 
 
71
 
# translate txt docs to html
72
 
doc_dir := doc 
73
 
txt_files := $(wildcard $(addsuffix /*.txt, $(doc_dir))) doc/bzr_man.txt
74
 
htm_files := $(patsubst %.txt, %.htm, $(txt_files)) 
75
 
 
76
 
pretty-html-docs: pretty_files
77
 
 
78
 
pretty_docs:
79
 
        python -c "import os; os.mkdir('$(PRETTYDIR)')"
80
 
 
81
 
pretty_files: $(patsubst doc/%.txt, $(PRETTYDIR)/%.htm, $(txt_files))
82
 
 
83
 
doc/HACKING.htm: HACKING
84
 
        python tools/rst2html.py --link-stylesheet --stylesheet=default.css HACKING doc/HACKING.htm
85
 
 
86
 
doc/%.htm: doc/%.txt 
87
 
        python tools/rst2html.py --link-stylesheet --stylesheet=default.css doc/$*.txt doc/$*.htm
88
 
 
89
 
$(PRETTYDIR)/%.htm: pretty_docs doc/%.txt
90
 
        python tools/rst2prettyhtml.py doc/bazaar-vcs.org.kid doc/$*.txt \
91
 
        $(PRETTYDIR)/$*.htm
92
 
 
93
 
MAN_DEPENDENCIES = bzrlib/builtins.py \
94
 
                 bzrlib/bundle/commands.py \
95
 
                 bzrlib/conflicts.py \
96
 
                 bzrlib/sign_my_commits.py \
97
 
                 generate_docs.py \
98
 
                 tools/doc_generate/__init__.py \
99
 
                 tools/doc_generate/autodoc_rstx.py
100
 
 
101
 
doc/bzr_man.txt: $(MAN_DEPENDENCIES)
102
 
        python generate_docs.py -o $@ rstx
103
 
 
104
 
MAN_PAGES = man1/bzr.1
105
 
man1/bzr.1: $(MAN_DEPENDENCIES)
106
 
        python generate_docs.py -o $@ man
107
 
 
108
 
docs: $(htm_files) $(MAN_PAGES) doc/HACKING.htm
109
 
 
110
 
copy-docs: docs
111
 
        python tools/win32/ostools.py copytodir $(htm_files) doc/default.css NEWS README  win32_bzr.exe/doc
112
 
 
113
 
# clean produced docs
114
 
clean-docs:
115
 
        python tools/win32/ostools.py remove $(htm_files) \
116
 
        $(HTMLDIR) $(PRETTYDIR) doc/bzr_man.txt $(MAN_PAGES)
117
 
 
118
 
 
119
 
# make bzr.exe for win32 with py2exe
120
 
exe:
121
 
        @echo *** Make bzr.exe
122
 
        python setup.py py2exe > py2exe.log
123
 
        python tools/win32/ostools.py copytodir tools/win32/start_bzr.bat win32_bzr.exe
124
 
        python tools/win32/ostools.py copytodir tools/win32/bazaar.url win32_bzr.exe
125
 
 
126
 
# win32 installer for bzr.exe
127
 
installer: exe copy-docs
128
 
        @echo *** Make windows installer
129
 
        cog.py -d -o tools/win32/bzr.iss tools/win32/bzr.iss.cog
130
 
        iscc /Q tools/win32/bzr.iss
131
 
 
132
 
# win32 python's distutils-based installer
133
 
# require to have python interpreter installed on win32
134
 
python-installer: docs
135
 
        python setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py" -d .
136
 
 
137
 
 
138
 
# clean on win32 all installer-related files and directories
139
 
clean-win32:
140
 
        python tools/win32/ostools.py remove build
141
 
        python tools/win32/ostools.py remove win32_bzr.exe
142
 
        python tools/win32/ostools.py remove py2exe.log
143
 
        python tools/win32/ostools.py remove doc/*.htm
144
 
        python tools/win32/ostools.py remove doc/bzr_man.txt
145
 
        python tools/win32/ostools.py remove tools/win32/bzr.iss
146
 
        python tools/win32/ostools.py remove bzr-setup*.exe
147
 
        python tools/win32/ostools.py remove bzr-*win32.exe
148
 
        python tools/win32/ostools.py remove dist
 
5
        ./bzr selftest
 
6
 
 
7
.PHONY: all