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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/tlslite/MANIFEST.in ('k') | third_party/tlslite/PKG-INFO » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tlslite/Makefile
diff --git a/third_party/tlslite/Makefile b/third_party/tlslite/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..6d9e7ac8c9bcbafd74c3f4508ddb132d7ae1da3f
--- /dev/null
+++ b/third_party/tlslite/Makefile
@@ -0,0 +1,24 @@
+
+.PHONY : default
+default:
+ @echo To install tlslite run \"./setup.py install\" or \"make install\"
+
+.PHONY: install
+install:
+ ./setup.py install
+
+.PHONY : clean
+clean:
+ rm -rf tlslite/*.pyc
+ rm -rf tlslite/utils/*.pyc
+ rm -rf tlslite/integration/*.pyc
+ rm -rf dist
+ rm -rf docs
+ rm -rf build
+ rm -f MANIFEST
+
+docs:
+ epydoc --html -v --introspect-only -o docs tlslite
+
+dist: docs
+ ./setup.py sdist
« 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