~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Martin Pool
  • Date: 2005-09-29 05:06:14 UTC
  • mto: (1185.12.2) (1393.1.12)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: mbp@sourcefrog.net-20050929050614-a41e6f72af36bb4c
- better error on failing to import bzrlib

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 $(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: 
 
8
        ./bzr selftest
 
9
 
 
10
clean: executables
12
11
        ./setup.py clean
13
 
        -find . -name "*.pyc" | xargs rm
14
 
        -find . -name "*.pyo" | xargs rm
15
 
        rm -rf test????.tmp
16
12
 
17
13
.PHONY: all
18
14