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 |
1534
by Robert Collins
Add BRANCH.TODO, and update Makefile to clean pyo files. |
13 |
-find . -name "*.pyc" | xargs rm |
14 |
-find . -name "*.pyo" | xargs rm |
|
1427
by Robert Collins
clean up test dirs on make clean |
15 |
rm -rf test????.tmp |
1185.1.21
by Robert Collins
add a clean target |
16 |
|
1102
by Martin Pool
- merge test refactoring from robertc |
17 |
.PHONY: all |
1158
by Martin Pool
- make target to build emacs TAGS file |
18 |
|
19 |
||
20 |
# build emacs cross-reference
|
|
21 |
tag_files=./bzr ./bzrlib/*py ./bzrlib/selftest/*.py |
|
22 |
TAGS: $(tag_files) |
|
23 |
ctags-exuberant -e $(tag_files) |