~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Aaron Bentley
  • Date: 2006-08-16 19:13:00 UTC
  • mfrom: (1934 +trunk)
  • mto: (1910.2.43 format-bumps)
  • mto: This revision was merged to the branch mainline in revision 1935.
  • Revision ID: abentley@panoramicfeedback.com-20060816191300-045772b26b975d1c
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
all:
 
2
 
 
3
check:
 
4
        ./bzr selftest -v $(tests)
 
5
        @echo "Running all tests with no locale."
 
6
        LC_CTYPE= LANG=C LC_ALL= ./bzr selftest -v $(tests)
 
7
 
 
8
check-msgeditor:
 
9
        ./bzr --no-plugins selftest -v msgeditor
 
10
 
 
11
# Run Python style checker (apt-get install pyflakes)
 
12
pyflakes:
 
13
        pyflakes bzrlib
 
14
 
 
15
pyflakes-nounused:
 
16
        # There are many of these warnings at the moment and they're not a
 
17
        # high priority to fix
 
18
        pyflakes bzrlib | grep -v ' imported but unused'
 
19
 
 
20
clean:
 
21
        ./setup.py clean
 
22
        -find . -name "*.pyc" -o -name "*.pyo" | xargs rm -f
 
23
        rm -rf test????.tmp
 
24
 
 
25
.PHONY: all
 
26
 
 
27
 
 
28
# build emacs cross-reference
 
29
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
 
30
TAGS: $(tag_files)
 
31
        ctags-exuberant -e $(tag_files)
 
32
 
 
33
 
 
34
# make bzr.exe for win32 with py2exe
 
35
exe:
 
36
        @echo *** Make bzr.exe
 
37
        python setup.py py2exe > py2exe.log
 
38
        python tools/win32/ostools.py copytodir tools/win32/start_bzr.bat win32_bzr.exe
 
39
        python tools/win32/ostools.py copytodir tools/win32/bazaar.url win32_bzr.exe
 
40
 
 
41
# translate txt docs to html
 
42
doc_dir := doc 
 
43
txt_files := $(wildcard $(addsuffix /*.txt, $(doc_dir)))
 
44
htm_files := $(patsubst %.txt, %.htm, $(txt_files)) doc/bzr_man.htm
 
45
 
 
46
%.htm: %.txt
 
47
        rst2html.py --link-stylesheet --stylesheet=default.css $*.txt $*.htm
 
48
 
 
49
doc/bzr_man.txt:
 
50
        python generate_docs.py -o doc/bzr_man.txt rstx
 
51
 
 
52
docs: $(htm_files)
 
53
 
 
54
copy_docs: docs
 
55
        python tools/win32/ostools.py copytodir $(htm_files) doc/default.css NEWS README  win32_bzr.exe/doc
 
56
 
 
57
# win32 installer for bzr.exe
 
58
installer: exe copy_docs
 
59
        @echo *** Make windows installer
 
60
        cog.py -d -o tools/win32/bzr.iss tools/win32/bzr.iss.cog
 
61
        iscc /Q tools/win32/bzr.iss
 
62
 
 
63
# win32 python's distutils-based installer
 
64
# require to have python interpreter installed on win32
 
65
python-installer: docs
 
66
        python setup.py bdist_wininst --title="Bazaar" --install-script="bzr-win32-bdist-postinstall.py"
 
67
 
 
68
 
 
69
# clean on win32 all installer-related files and directories
 
70
clean_win32:
 
71
        python tools/win32/ostools.py remove build
 
72
        python tools/win32/ostools.py remove win32_bzr.exe
 
73
        python tools/win32/ostools.py remove py2exe.log
 
74
        python tools/win32/ostools.py remove doc/*.htm
 
75
        python tools/win32/ostools.py remove doc/bzr_man.txt
 
76
        python tools/win32/ostools.py remove tools/win32/bzr.iss
 
77
        python tools/win32/ostools.py remove bzr-setup*.exe
 
78
        python tools/win32/ostools.py remove dist