diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-07-16 21:31:31 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-07-16 21:31:31 (GMT) |
commit | 6edadf45491ead123387d74239de7dfa63cefb37 (patch) | |
tree | 66cf8bd8ae00b353f0a47525d8cf51909e85d1b1 /Makefile | |
parent | 7928b2b512ccf0269c351a5f603adf2e88522c32 (diff) |
listening for websocket and initial ticker
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |