~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Martin Pool
  • Date: 2006-01-13 06:31:42 UTC
  • Revision ID: mbp@sourcefrog.net-20060113063142-8e706dc1483c69e1
Bump version to 0.8pre

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
all: 
 
2
 
 
3
check:
 
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
 
16
 
 
17
.PHONY: all
 
18
 
 
19
 
 
20
# build emacs cross-reference
 
21
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
 
22
TAGS: $(tag_files)
 
23
        ctags-exuberant -e $(tag_files)
 
24
 
 
25
tutorial.html: tutorial.txt
 
26
        rest2html tutorial.txt > tutorial.html