Files
tendermint/Makefile
2017-05-01 11:30:24 -04:00

21 lines
320 B
Makefile

.PHONEY: all test install get_vendor_deps ensure_tools
GOTOOLS = \
github.com/Masterminds/glide
REPO:=github.com/tendermint/tmlibs
all: install test
test:
go test `glide novendor`
get_vendor_deps: ensure_tools
@rm -rf vendor/
@echo "--> Running glide install"
@glide install
ensure_tools:
go get $(GOTOOLS)