Skip to content

Instantly share code, notes, and snippets.

@vishaltelangre
Created May 15, 2014 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vishaltelangre/b0acd7db0e55a95e64e6 to your computer and use it in GitHub Desktop.
Save vishaltelangre/b0acd7db0e55a95e64e6 to your computer and use it in GitHub Desktop.
go dependency management using vendor dir makefile
GO ?= go
GOPATH := $(CURDIR)/_vendor:$(GOPATH)
all: build
build:
$(GO) build
# reference: http://peter.bourgon.org/go-in-production/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment