summaryrefslogtreecommitdiff
path: root/Makefile
blob: f81c0cb54114dc1cb28684a183b1557e95d08c9d (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 aiogreen.egg-info .tox
	find -name "*.pyc" -delete
	find -name "__pycache__" -exec rm -rf {} \;
	make -C doc clean