Update mojo sdk to rev d459e688a608f6eda850a23bb5e308a76ea51a47
[chromium-blink-merge.git] / third_party / tlslite / Makefile
blob871125e6a6bd03d348b185d9dbc24343112dff78
1 # Authors:
2 # Trevor Perrin
3 # Hubert Kario - test and test-dev
5 .PHONY : default
6 default:
7 @echo To install tlslite run \"./setup.py install\" or \"make install\"
9 .PHONY: install
10 install:
11 ./setup.py install
13 .PHONY : clean
14 clean:
15 rm -rf tlslite/*.pyc
16 rm -rf tlslite/utils/*.pyc
17 rm -rf tlslite/integration/*.pyc
18 rm -rf dist
19 rm -rf docs
20 rm -rf build
21 rm -f MANIFEST
23 docs:
24 epydoc --html -v --introspect-only -o docs tlslite
26 dist: docs
27 ./setup.py sdist
29 test:
30 cd tests/ && python ./tlstest.py server localhost:4433 . & sleep 1
31 cd tests/ && python ./tlstest.py client localhost:4433 .
33 test-dev:
34 cd tests/ && PYTHONPATH=.. python ./tlstest.py server localhost:4433 . & sleep 1
35 cd tests/ && PYTHONPATH=.. python ./tlstest.py client localhost:4433 .