From cc814ade3faf3bba58a48fb2c43000050c337341 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Thu, 30 Nov 2006 15:40:05 -0700 Subject: [PATCH] create a Makefile to drive things --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile 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 + -- 2.45.2