mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-28 05:31:20 +00:00
12 lines
162 B
Makefile
12 lines
162 B
Makefile
|
GOTOOLS = \
|
||
|
github.com/Masterminds/glide
|
||
|
|
||
|
tools:
|
||
|
go get -v $(GOTOOLS)
|
||
|
|
||
|
get_deps: tools
|
||
|
@echo "--> Running glide install"
|
||
|
@glide install
|
||
|
|
||
|
.PHONY: get_deps
|