~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: John Arbash Meinel
  • Date: 2005-12-01 17:25:16 UTC
  • mto: (1185.50.19 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1532.
  • Revision ID: john@arbash-meinel.com-20051201172516-5232226cd9ec1f0e
A couple more path.join statements needed changing.

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
clean: 
 
7
        ./setup.py clean
 
8
        find . -name "*.pyc" | xargs rm
 
9
        rm -rf test????.tmp
6
10
 
7
11
.PHONY: all
 
12
 
 
13
 
 
14
# build emacs cross-reference
 
15
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
 
16
TAGS: $(tag_files)
 
17
        ctags-exuberant -e $(tag_files)