~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Robert Collins
  • Date: 2005-10-06 22:15:52 UTC
  • mfrom: (1185.13.2)
  • mto: This revision was merged to the branch mainline in revision 1420.
  • Revision ID: robertc@robertcollins.net-20051006221552-9b15c96fa504e0ad
mergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
all:
 
1
all: executables
 
2
 
 
3
executables:
2
4
        chmod u+x ./bzr
 
5
        chmod u+x ./setup.py
3
6
 
4
7
check:
5
8
        ./bzr selftest
6
9
 
 
10
clean: executables
 
11
        ./setup.py clean
 
12
 
7
13
.PHONY: all
 
14
 
 
15
 
 
16
# build emacs cross-reference
 
17
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
 
18
TAGS: $(tag_files)
 
19
        ctags-exuberant -e $(tag_files)