summaryrefslogtreecommitdiff
path: root/Makefile
blob: 40bccabfabc855b7471e6a3d0deefca50f41cc63 (plain)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: doc

test:
	tox
doc:
	make -C doc html
clean:
	rm -rf build dist aioeventlet.egg-info .tox
	find -name "*.pyc" -delete
	find -name "__pycache__" -exec rm -rf {} \;
	make -C doc clean