~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

[merge] bzr.dev 2255, resolve conflicts, update copyrights

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
all:
2
2
 
3
3
check:
4
 
        ./bzr selftest -v $(tests)
 
4
        python -Werror ./bzr selftest -v $(tests)
5
5
        @echo "Running all tests with no locale."
6
6
        LC_CTYPE= LANG=C LC_ALL= ./bzr selftest -v $(tests)
 
7
        python -O -Werror ./bzr selftest -v $(tests)
7
8
 
8
9
check-msgeditor:
9
10
        ./bzr --no-plugins selftest -v msgeditor
33
34
 
34
35
# Produce HTML docs to upload on Canonical server
35
36
HTMLDIR := html_docs
 
37
PRETTYDIR := pretty_docs
36
38
 
37
39
html-docs: docs
38
40
        python tools/win32/ostools.py copytodir $(htm_files) doc/default.css $(HTMLDIR)
40
42
 
41
43
# translate txt docs to html
42
44
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
 
        python tools/rst2html.py --link-stylesheet --stylesheet=default.css $*.txt $*.htm
 
45
txt_files := $(wildcard $(addsuffix /*.txt, $(doc_dir))) doc/bzr_man.txt
 
46
htm_files := $(patsubst %.txt, %.htm, $(txt_files)) 
 
47
 
 
48
pretty-html-docs: pretty_files
 
49
 
 
50
pretty_docs:
 
51
        python -c "import os; os.mkdir('$(PRETTYDIR)')"
 
52
 
 
53
pretty_files: $(patsubst doc/%.txt, $(PRETTYDIR)/%.htm, $(txt_files))
 
54
 
 
55
doc/%.htm: doc/%.txt
 
56
        python tools/rst2html.py --link-stylesheet --stylesheet=default.css doc/$*.txt doc/$*.htm
 
57
 
 
58
$(PRETTYDIR)/%.htm: pretty_docs doc/%.txt
 
59
        python tools/rst2prettyhtml.py doc/bazaar-vcs.org.kid doc/$*.txt \
 
60
        $(PRETTYDIR)/$*.htm
48
61
 
49
62
doc/bzr_man.txt: bzrlib/builtins.py \
50
63
                 bzrlib/bundle/commands.py \
62
75
 
63
76
# clean produced docs
64
77
clean-docs:
65
 
        python tools/win32/ostools.py remove doc/bzr_man.txt $(htm_files) $(HTMLDIR)
 
78
        python tools/win32/ostools.py remove doc/bzr_man.txt $(htm_files) \
 
79
        $(HTMLDIR) $(PRETTYDIR)
66
80
 
67
81
 
68
82
# make bzr.exe for win32 with py2exe
81
95
# win32 python's distutils-based installer
82
96
# require to have python interpreter installed on win32
83
97
python-installer: docs
84
 
        python setup.py bdist_wininst --title="Bazaar" --install-script="bzr-win32-bdist-postinstall.py"
 
98
        python setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py"
85
99
 
86
100
 
87
101
# clean on win32 all installer-related files and directories