From: tahoe <tahoe@arnowaschk.de>
Date: Tue, 31 Jul 2007 23:55:45 +0000 (-0700)
Subject: add install target, works at lest on sudo-free cygwin
X-Git-Url: https://git.rkrishnan.org/components/com_hotproperty/install.html?a=commitdiff_plain;h=2635cd15b173c533c4aa07a7f3ebc17b722e7d2b;p=tahoe-lafs%2Ftahoe-lafs.git

add install target, works at lest on sudo-free cygwin
---

diff --git a/Makefile b/Makefile
index 3871fae7..2075341e 100644
--- a/Makefile
+++ b/Makefile
@@ -212,6 +212,13 @@ clean: clean-zfec clean-Crypto clean-foolscap
 	rm -f debian
 	rm -rf instdir
 
+install: 
+	cd src/zfec && python ./setup.py install && cd ../..
+	cd src/foolscap && python ./setup.py install && cd ../..
+	cd src/Crypto && python ./setup.py install && cd ../..
+	python ./setup.py install
+
+
 # DEBIAN PACKAGING
 
 VER=$(shell $(PYTHON) misc/get-version.py)