-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Makefile
48 lines (35 loc) · 991 Bytes
/
Makefile
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
# 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:
PATH=$(PATH):$(CURDIR) PYTHONPATH=$(CURDIR)/.. 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