summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-05-13 00:28:27 -0400
committerChristopher Speller <crspeller@gmail.com>2016-05-13 00:28:27 -0400
commit39b520e38e0b4812819397a6163b0de308cc6260 (patch)
tree89993f82ef8cbc36622b29937e1a8fc23c8f11c8 /Makefile
parent38ee83e45b4de7edf89bf9f0ef629eb4c6ad0fa8 (diff)
downloadchat-39b520e38e0b4812819397a6163b0de308cc6260.tar.gz
chat-39b520e38e0b4812819397a6163b0de308cc6260.tar.bz2
chat-39b520e38e0b4812819397a6163b0de308cc6260.zip
Don't build the dependancies
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2ead86fb5..d1baac814 100644
--- a/Makefile
+++ b/Makefile
@@ -189,15 +189,15 @@ endif
build-linux: .prebuild prepare-enterprise
@echo Build Linux amd64
- env GOOS=linux GOARCH=amd64 $(GO) install $(GOFLAGS) $(GO_LINKER_FLAGS) ./...
+ env GOOS=linux GOARCH=amd64 $(GO) install $(GOFLAGS) $(GO_LINKER_FLAGS) $(go list ./... | grep -v /vendor/)
build-osx: .prebuild prepare-enterprise
@echo Build OSX amd64
- env GOOS=darwin GOARCH=amd64 $(GO) install $(GOFLAGS) $(GO_LINKER_FLAGS) ./...
+ env GOOS=darwin GOARCH=amd64 $(GO) install $(GOFLAGS) $(GO_LINKER_FLAGS) $(go list ./... | grep -v /vendor/)
build-windows: .prebuild prepare-enterprise
@echo Build Windows amd64
- env GOOS=windows GOARCH=amd64 $(GO) install $(GOFLAGS) $(GO_LINKER_FLAGS) ./...
+ env GOOS=windows GOARCH=amd64 $(GO) install $(GOFLAGS) $(GO_LINKER_FLAGS) $(go list ./... | grep -v /vendor/)
build: build-linux build-windows build-osx