/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1185.1.21 by Robert Collins
add a clean target
1
all: executables
2
3
executables:
1102 by Martin Pool
- merge test refactoring from robertc
4
	chmod u+x ./bzr
1185.1.21 by Robert Collins
add a clean target
5
	chmod u+x ./setup.py
1102 by Martin Pool
- merge test refactoring from robertc
6
7
check:
8
	./bzr selftest
9
1185.1.21 by Robert Collins
add a clean target
10
clean: executables
11
	./setup.py clean
1417.1.5 by Robert Collins
clean up pyc files in make clean
12
	find . -name "*.pyc" | xargs rm
1185.1.21 by Robert Collins
add a clean target
13
1102 by Martin Pool
- merge test refactoring from robertc
14
.PHONY: all
1158 by Martin Pool
- make target to build emacs TAGS file
15
16
17
# build emacs cross-reference
18
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
19
TAGS: $(tag_files)
20
	ctags-exuberant -e $(tag_files)