diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-07-17 14:04:00 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-07-17 14:04:00 (GMT) |
commit | b4e50f0cd8aab1e5a23baad5b000a51c95e6ec9e (patch) | |
tree | 4ea2a27e287d586183029116480ecc44628554db | |
parent | ead2393093d2b4f3c9c2863cfafe1656f07192de (diff) |
added vet target to Makefile
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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: |