veyron/tools/build: moving the client for interacting with the build
server into the veyron repository and writing a simple test for it

Change-Id: Ia7cd1d9a26d5bd3204e522370d42eb9bdf227e3a
diff --git a/tools/build/main.go b/tools/build/main.go
new file mode 100644
index 0000000..4e872f5
--- /dev/null
+++ b/tools/build/main.go
@@ -0,0 +1,14 @@
+package main
+
+import (
+	"veyron/tools/build/impl"
+
+	"veyron2/rt"
+)
+
+func main() {
+	r := rt.Init()
+	defer r.Cleanup()
+
+	impl.Root().Main()
+}