neo-go/Makefile

23 lines
371 B
Makefile
Raw Normal View History

2018-02-01 18:54:23 +00:00
BRANCH = "master"
VERSION = $(shell cat ./VERSION)
2018-02-01 18:06:17 +00:00
build:
@go build -o ./bin/neo-go ./cli/main.go
2018-02-01 18:54:23 +00:00
check-version:
git fetch && (! git rev-list ${VERSION})
2018-02-01 18:06:17 +00:00
deps:
@glide install
2018-02-01 18:54:23 +00:00
push-tag:
git checkout ${BRANCH}
git pull origin ${BRANCH}
git tag ${VERSION}
git push origin ${BRANCH} --tags
2018-02-01 17:40:04 +00:00
test:
2018-02-01 18:54:23 +00:00
@go test $(shell glide nv) -cover
vet:
@go vet $(shell glide nv)