~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: John Arbash Meinel
  • Date: 2006-10-11 00:23:23 UTC
  • mfrom: (2070 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2071.
  • Revision ID: john@arbash-meinel.com-20061011002323-82ba88c293d7caff
[merge] bzr.dev 2070

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
all:
2
2
 
3
3
check:
4
 
        python -Werror ./bzr selftest -v $(tests)
 
4
        ./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)
8
7
 
9
8
check-msgeditor:
10
9
        ./bzr --no-plugins selftest -v msgeditor
34
33
 
35
34
# Produce HTML docs to upload on Canonical server
36
35
HTMLDIR := html_docs
37
 
PRETTYDIR := pretty_docs
38
36
 
39
37
html-docs: docs
40
38
        python tools/win32/ostools.py copytodir $(htm_files) doc/default.css $(HTMLDIR)
42
40
 
43
41
# translate txt docs to html
44
42
doc_dir := doc 
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
 
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
61
48
 
62
49
doc/bzr_man.txt: bzrlib/builtins.py \
63
50
                 bzrlib/bundle/commands.py \
75
62
 
76
63
# clean produced docs
77
64
clean-docs:
78
 
        python tools/win32/ostools.py remove doc/bzr_man.txt $(htm_files) \
79
 
        $(HTMLDIR) $(PRETTYDIR)
 
65
        python tools/win32/ostools.py remove doc/bzr_man.txt $(htm_files) $(HTMLDIR)
80
66
 
81
67
 
82
68
# make bzr.exe for win32 with py2exe
95
81
# win32 python's distutils-based installer
96
82
# require to have python interpreter installed on win32
97
83
python-installer: docs
98
 
        python setup.py bdist_wininst --install-script="bzr-win32-bdist-postinstall.py" -d .
 
84
        python setup.py bdist_wininst --title="Bazaar" --install-script="bzr-win32-bdist-postinstall.py"
99
85
 
100
86
 
101
87
# clean on win32 all installer-related files and directories
107
93
        python tools/win32/ostools.py remove doc/bzr_man.txt
108
94
        python tools/win32/ostools.py remove tools/win32/bzr.iss
109
95
        python tools/win32/ostools.py remove bzr-setup*.exe
110
 
        python tools/win32/ostools.py remove bzr-*win32.exe
111
96
        python tools/win32/ostools.py remove dist