~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-02-18 02:33:47 UTC
  • mfrom: (1534.1.24 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060218023347-0952c65f668bfd68
Merge Robert Collins integration.

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" -o -name "*.pyo" | xargs rm -f
13
14
        rm -rf test????.tmp
14
15
 
15
16
.PHONY: all
19
20
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
20
21
TAGS: $(tag_files)
21
22
        ctags-exuberant -e $(tag_files)
 
23
 
 
24
tutorial.html: tutorial.txt
 
25
        rest2html tutorial.txt > tutorial.html