Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: third_party/tlslite/Makefile

Issue 858373002: Update third_party/tlslite to 0.4.8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finish fixing client auth Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/tlslite/LICENSE ('k') | third_party/tlslite/PKG-INFO » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1 # Authors:
2 # Trevor Perrin
3 # Hubert Kario - test and test-dev
4 #
2 .PHONY : default 5 .PHONY : default
3 default: 6 default:
4 @echo To install tlslite run \"./setup.py install\" or \"make install\" 7 @echo To install tlslite run \"./setup.py install\" or \"make install\"
5 8
6 .PHONY: install 9 .PHONY: install
7 install: 10 install:
8 ./setup.py install 11 ./setup.py install
9 12
10 .PHONY : clean 13 .PHONY : clean
11 clean: 14 clean:
12 rm -rf tlslite/*.pyc 15 rm -rf tlslite/*.pyc
13 rm -rf tlslite/utils/*.pyc 16 rm -rf tlslite/utils/*.pyc
14 rm -rf tlslite/integration/*.pyc 17 rm -rf tlslite/integration/*.pyc
15 rm -rf dist 18 rm -rf dist
16 rm -rf docs 19 rm -rf docs
17 rm -rf build 20 rm -rf build
18 rm -f MANIFEST 21 rm -f MANIFEST
19 22
20 docs: 23 docs:
21 epydoc --html -v --introspect-only -o docs tlslite 24 epydoc --html -v --introspect-only -o docs tlslite
22 25
23 dist: docs 26 dist: docs
24 ./setup.py sdist 27 ./setup.py sdist
28
29 test:
30 cd tests/ && python ./tlstest.py server localhost:4433 . & sleep 1
31 cd tests/ && python ./tlstest.py client localhost:4433 .
32
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 .
OLDNEW
« no previous file with comments | « third_party/tlslite/LICENSE ('k') | third_party/tlslite/PKG-INFO » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698