summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 3c12990ce3e9432c9d0e40184bd9d57b864a6607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
release: docs
	python setup.py sdist register upload

docs:
	epydoc --no-private -o docs/ paramiko

clean:
	rm -rf build dist docs
	rm -f MANIFEST *.log demos/*.log
	rm -f paramiko/*.pyc
	rm -f test.log
	rm -rf paramiko.egg-info

test:
	python ./test.py