~bzr-pqm/bzr/bzr.dev

1185.21.3 by Jelmer Vernooij
Remove executable properties from Makefile (set by bzr itself now)
1
all: 
1102 by Martin Pool
- merge test refactoring from robertc
2
3
check:
1185.44.1 by Martin Pool
Start bringing in basicio code
4
	./bzr selftest $(tests)
1526.1.1 by Robert Collins
Run the test suite with no locale as well as the default locale. Also add a test for build_tree_shape to selftest.
5
	@echo "Running all tests with no locale."
6
	LC_CTYPE= LANG=C LC_ALL= ./bzr selftest $(tests)
1102 by Martin Pool
- merge test refactoring from robertc
7
1185.33.72 by Martin Pool
Fix commit message template for non-ascii files, and add test for handling of
8
check-msgeditor:
9
	./bzr --no-plugins selftest -v msgeditor
10
1185.21.3 by Jelmer Vernooij
Remove executable properties from Makefile (set by bzr itself now)
11
clean: 
1185.1.21 by Robert Collins
add a clean target
12
	./setup.py clean
1185.62.18 by John Arbash Meinel
From Jari Alto: Makefile fixes (clean target error suppression)
13
	-find . -name "*.pyc" -o -name "*.pyo" | xargs rm -f
1427 by Robert Collins
clean up test dirs on make clean
14
	rm -rf test????.tmp
1185.1.21 by Robert Collins
add a clean target
15
1102 by Martin Pool
- merge test refactoring from robertc
16
.PHONY: all
1158 by Martin Pool
- make target to build emacs TAGS file
17
18
19
# build emacs cross-reference
20
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py
21
TAGS: $(tag_files)
22
	ctags-exuberant -e $(tag_files)
1536.1.1 by Martin Pool
Move in tutorial text from wiki.
23
24
tutorial.html: tutorial.txt
25
	rest2html tutorial.txt > tutorial.html