~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

[merge] 0.7-bugfix: Fix fileid_involved to unescape xml characters, fix StubServer to handle paramiko > 1.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
all:
2
 
        chmod u+x ./bzr
 
1
all: 
3
2
 
4
3
check:
5
 
        ./bzr selftest
 
4
        ./bzr selftest $(tests)
 
5
        @echo "Running all tests with no locale."
 
6
        LC_CTYPE= LANG=C LC_ALL= ./bzr selftest $(tests)
 
7
 
 
8
check-msgeditor:
 
9
        ./bzr --no-plugins selftest -v msgeditor
 
10
 
 
11
clean: 
 
12
        ./setup.py clean
 
13
        -find . -name "*.pyc" | xargs rm
 
14
        -find . -name "*.pyo" | xargs rm
 
15
        rm -rf test????.tmp
6
16
 
7
17
.PHONY: all
8
18
 
11
21
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
12
22
TAGS: $(tag_files)
13
23
        ctags-exuberant -e $(tag_files)
 
24
 
 
25
tutorial.html: tutorial.txt
 
26
        rest2html tutorial.txt > tutorial.html