~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Robert Collins
  • Date: 2005-10-30 00:00:09 UTC
  • mfrom: (1185.16.134)
  • Revision ID: robertc@robertcollins.net-20051030000009-9db99a338a0dfdac
MergeĀ fromĀ Martin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
all: 
 
2
 
 
3
check:
 
4
        ./bzr selftest
 
5
 
 
6
clean: 
 
7
        ./setup.py clean
 
8
        find . -name "*.pyc" | xargs rm
 
9
        rm -rf test????.tmp
 
10
 
 
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)