]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
create a Makefile to drive things
authorBrian Warner <warner@lothar.com>
Thu, 30 Nov 2006 22:40:05 +0000 (15:40 -0700)
committerBrian Warner <warner@lothar.com>
Thu, 30 Nov 2006 22:40:05 +0000 (15:40 -0700)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..d3183f0
--- /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
+