1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
DEBUGGER ?=
BZR ?= $(shell which bzr)
PYTHON ?= $(shell which python)
SETUP ?= ./setup.py
CTAGS ?= ctags
PYLINT ?= pylint
TESTS ?= "^bzrlib.plugins.rebase"
all:: build
build::
$(SETUP) build
install::
$(SETUP) install
clean::
$(SETUP) clean
TMP_PLUGINS_DIR = $(shell pwd)/.plugins
$(TMP_PLUGINS_DIR):
mkdir -p $@
$(TMP_PLUGINS_DIR)/rebase: $(TMP_PLUGINS_DIR)
ln -sf .. $@
check:: $(TMP_PLUGINS_DIR)/rebase/
BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) $(DEBUGGER) $(PYTHON) $(BZR) selftest $(TEST_OPTIONS) $(TESTS)
check-verbose::
$(MAKE) check TEST_OPTIONS=-v
check-one::
$(MAKE) check TEST_OPTIONS=--one
show-plugins::
BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) $(BZR) plugins
lint::
$(PYLINT) -f parseable *.py */*.py
tags::
$(CTAGS) -R .
ctags:: tags
|