~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Martin Pool
  • Date: 2006-01-13 08:12:22 UTC
  • mfrom: (1185.63.5 bzr.patches)
  • Revision ID: mbp@sourcefrog.net-20060113081222-6b572004a2ade0cc
[merge] test_hashcache_raise from Denys

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
all: executables
2
 
 
3
 
executables:
4
 
        chmod u+x ./bzr
5
 
        chmod u+x ./setup.py
 
1
all: 
6
2
 
7
3
check:
8
 
        ./bzr selftest
9
 
 
10
 
clean: executables
 
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: 
11
12
        ./setup.py clean
12
 
        find . -name "*.pyc" | xargs rm
 
13
        -find . -name "*.pyc" | xargs rm
 
14
        -find . -name "*.pyo" | xargs rm
13
15
        rm -rf test????.tmp
14
16
 
15
17
.PHONY: all
19
21
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
20
22
TAGS: $(tag_files)
21
23
        ctags-exuberant -e $(tag_files)
 
24
 
 
25
tutorial.html: tutorial.txt
 
26
        rest2html tutorial.txt > tutorial.html