~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Robert Collins
  • Date: 2005-10-11 04:32:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1443.
  • Revision ID: robertc@robertcollins.net-20051011043238-104295a8eb7eba91
move config_dir into bzrlib.config

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
all:
 
1
all: executables
 
2
 
 
3
executables:
 
4
        chmod u+x ./bzr
 
5
        chmod u+x ./setup.py
2
6
 
3
7
check:
4
 
        ./bzr selftest -v $(tests)
5
 
        @echo "Running all tests with no locale."
6
 
        LC_CTYPE= LANG=C LC_ALL= ./bzr selftest -v $(tests)
7
 
 
8
 
check-msgeditor:
9
 
        ./bzr --no-plugins selftest -v msgeditor
10
 
 
11
 
# Run Python style checker (apt-get install pyflakes)
12
 
pyflakes:
13
 
        pyflakes bzrlib
14
 
 
15
 
pyflakes-nounused:
16
 
        # There are many of these warnings at the moment and they're not a
17
 
        # high priority to fix
18
 
        pyflakes bzrlib | grep -v ' imported but unused'
19
 
 
20
 
clean:
 
8
        ./bzr selftest
 
9
 
 
10
clean: executables
21
11
        ./setup.py clean
22
 
        -find . -name "*.pyc" -o -name "*.pyo" | xargs rm -f
 
12
        find . -name "*.pyc" | xargs rm
23
13
        rm -rf test????.tmp
24
14
 
25
15
.PHONY: all
29
19
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
30
20
TAGS: $(tag_files)
31
21
        ctags-exuberant -e $(tag_files)
32
 
 
33
 
tutorial.html: tutorial.txt
34
 
        rest2html tutorial.txt > tutorial.html