12 lines
162 B
Makefile
Raw Normal View History

2017-02-24 18:54:36 +04:00
GOTOOLS = \
github.com/Masterminds/glide
tools:
go get -v $(GOTOOLS)
get_deps: tools
@echo "--> Running glide install"
@glide install
.PHONY: get_deps