summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b2b9df1..e4af866 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,9 @@ GOCMD := go
getlibs: export GOPATH=$(curdir)
getlibs:
-# $(GOCMD) get "<url for lib"
+ $(GOCMD) get "github.com/codegangsta/martini"
+ $(GOCMD) get "github.com/gorilla/websocket"
+ $(GOCMD) get "github.com/tuxychandru/pubsub"
build: export GOPATH=$(curdir)
build: getlibs
@@ -38,8 +40,7 @@ clean:
rm -rf bin
distclean: clean
-# rm -rf src/github.com
-# rm -rf src/code.google.com
+ rm -rf src/github.com
rm -rf pkg
all: build test