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

check:
	python -m CoverageTestRunner --ignore-missing-from=without-tests
	rm .coverage
	pep8 ttystatus

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