~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Robert Collins
  • Date: 2005-12-24 02:20:45 UTC
  • mto: (1185.50.57 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1550.
  • Revision ID: robertc@robertcollins.net-20051224022045-14efc8dfa0e1a4e9
Start tests for api usage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
all:
2
 
        chmod u+x ./bzr
 
1
all: 
3
2
 
4
3
check:
5
 
        ./bzr selftest
 
4
        ./bzr selftest $(tests)
 
5
 
 
6
check-msgeditor:
 
7
        ./bzr --no-plugins selftest -v msgeditor
 
8
 
 
9
clean: 
 
10
        ./setup.py clean
 
11
        find . -name "*.pyc" | xargs rm
 
12
        rm -rf test????.tmp
6
13
 
7
14
.PHONY: all
8
15