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

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: Executable bit and --similarity=80 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
« no previous file with comments | « third_party/tlslite/MANIFEST.in ('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
(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
« no previous file with comments | « third_party/tlslite/MANIFEST.in ('k') | third_party/tlslite/PKG-INFO » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698