diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-10-14 18:42:57 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-10-14 18:42:57 +0000 |
commit | ce277674b98c0e75f5eecd95fe6ff052607a0c22 (patch) | |
tree | f3aedf29d7d8b4244e1152ea1a1019664d7fe40b /Makefile | |
parent | 6caa72442dc5767dea82d8e67089748c11a7fc46 (diff) |
Add some in-code documentation, fix some dead code, add a license, add a working distutils script.
git-svn-id: file:///home/or/svnrepo/updater/trunk@17092 55e972cd-5a19-0410-ae62-a4d7a52db4cd
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,6 +1,9 @@ -export PYTHONPATH=./lib +all: + python setup.py build test: - #python -m sexp.tests - python -m thandy.tests + export PYTHONPATH=./lib && python -m thandy.tests + +install: + python setup.py install
\ No newline at end of file |