/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to Makefile

Remove explicit use of rich root formats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
DEBUGGER ?= 
 
2
BZR_OPTIONS ?= 
2
3
BZR ?= $(shell which bzr)
3
4
PYTHON ?= $(shell which python)
4
5
SETUP ?= ./setup.py
6
7
CTAGS ?= ctags
7
8
PYLINT ?= pylint
8
9
RST2HTML ?= rst2html
9
 
TESTS ?= 
 
10
TESTS ?= -s bp.git
10
11
 
11
12
all:: build 
12
13
 
31
32
        ln -sf .. $@
32
33
 
33
34
check:: build-inplace $(TMP_PLUGINS_DIR)/git
34
 
        BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) $(DEBUGGER) $(PYTHON) $(PYTHON_OPTIONS) $(BZR) selftest $(TEST_OPTIONS) --starting-with=bzrlib.plugins.git $(TESTS)
 
35
        BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) $(DEBUGGER) $(PYTHON) $(PYTHON_OPTIONS) $(BZR) $(BZR_OPTIONS) selftest $(TEST_OPTIONS) $(TESTS)
35
36
 
36
37
check-verbose::
37
38
        $(MAKE) check TEST_OPTIONS=-v
43
44
        $(MAKE) check TEST_OPTIONS="--random=now --verbose --one"
44
45
 
45
46
show-plugins::
46
 
        BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) $(BZR) plugins
 
47
        BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) BZR_PLUGINS_AT=git@$(shell pwd) $(BZR) plugins -v
47
48
 
48
49
lint::
49
50
        $(PYLINT) -f parseable *.py */*.py
52
53
        $(CTAGS) -R .
53
54
 
54
55
ctags:: tags
 
56
 
 
57
coverage::
 
58
        $(MAKE) check BZR_OPTIONS="--coverage coverage"