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 |
1417.1.5
by Robert Collins
clean up pyc files in make clean |
13 |
find . -name "*.pyc" | xargs rm |
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) |