summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a9c7ca9..e6a03d3 100644
--- a/Makefile
+++ b/Makefile
@@ -31,12 +31,16 @@ getlibs:
$(GOCMD) get "github.com/gorilla/websocket"
$(GOCMD) get "github.com/tuxychandru/pubsub"
+vet: export GOPATH=$(curdir)
+vet:
+ $(GOCMD) vet helsinki.at/rhrdtime
+
format: export GOPATH=$(curdir)
format:
$(GOCMD) fmt helsinki.at/rhrdtime
build: export GOPATH=$(curdir)
-build: getlibs format
+build: getlibs vet format
$(GOCMD) install helsinki.at/rhrdtime
clean: