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

Side by Side Diff: third_party/tlslite/Makefile

Issue 210323002: Update tlslite to 0.4.6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rietveld, please behave Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1
2 .PHONY : default
3 default:
4 @echo To install tlslite run \"./setup.py install\" or \"make install\"
5
6 .PHONY: install
7 install:
8 ./setup.py install
9
10 .PHONY : clean
11 clean:
12 rm -rf tlslite/*.pyc
13 rm -rf tlslite/utils/*.pyc
14 rm -rf tlslite/integration/*.pyc
15 rm -rf dist
16 rm -rf docs
17 rm -rf build
18 rm -f MANIFEST
19
20 docs:
21 epydoc --html -v --introspect-only -o docs tlslite
22
23 dist: docs
24 ./setup.py sdist
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698