summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-07-16 21:31:31 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-07-16 21:31:31 (GMT)
commit6edadf45491ead123387d74239de7dfa63cefb37 (patch)
tree66cf8bd8ae00b353f0a47525d8cf51909e85d1b1 /Makefile
parent7928b2b512ccf0269c351a5f603adf2e88522c32 (diff)
listening for websocket and initial ticker
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