From: Brian Warner Date: Thu, 30 Nov 2006 22:40:05 +0000 (-0700) Subject: create a Makefile to drive things X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~541 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=cc814ade3faf3bba58a48fb2c43000050c337341;p=tahoe-lafs%2Ftahoe-lafs.git create a Makefile to drive things --- diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..d3183f0f --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ + +.PHONY: run-queen run-client test + +run-queen: + cd queen-basedir && PYTHONPATH=.. twistd -noy ../queen.tac + +run-client: + cd client-basedir && PYTHONPATH=.. twistd -noy ../client.tac + +test: + trial allmydata +