summaryrefslogtreecommitdiff
path: root/Makefile
blob: dd894ff8ef8938fd9745cdce84763cc78ccd12e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all:
	$(MAKE) -C doc html

check:
	python -m CoverageTestRunner --ignore-missing-from=without-tests
	rm -f .coverage
	pep8 ttystatus
	if command -v pylint && pylint --version | grep '^pylint [1-9]'; \
        then \
		PYTHONPATH=. pylint --rcfile=pylint.conf ttystatus; \
        fi

clean:
	rm -f .coverage ttystatus/*.py[co]
	rm -rf build
	$(MAKE) -C doc clean