summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1fc985d3d469ccb529035ba6d609a8379fa551e9 (plain)
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
47
48
49
50
# Makefile for handling various tasks of PyLint sources
PYVE=pyve
PIP=$(PYVE)/bin/pip
TOX=$(PYVE)/bin/tox

# this is default target, it should always be first in this Makefile
help:
	@echo "Please use \`make <target>' where <target> is one of"
	@echo "  tests       to run whole test suit of PyLint"
	@echo "  docs        to generate all docs including man pages and exemplary pylintrc"
	@echo "  deb         to build debian package"
	@echo "  lint        to check Pylint sources with itself"
	@echo "  all         to run all targets"


$(PIP):
	virtualenv $(PYVE)

$(TOX): $(PIP)
	$(PIP) install tox==1.7


ifdef TOXENV
toxparams?=-e $(TOXENV)
endif

tests: $(TOX)
	$(TOX) $(toxparams)

docs:
	rm -f /tmp/pylint
	ln -s -f $(CURDIR) /tmp/pylint
	PYTHONPATH=/tmp make all -C doc

deb:
	debuild -b -us -uc

lint: $(PIP)
	$(PIP) install .
	$(PYVE)/bin/pylint lint.py

clean:
	rm -rf $(PYVE)
	rm -rf .tox
	make clean -C doc
	debuild clean

all: clean lint tests docs deb

.PHONY: help tests docs deb lint clean all