open-consul/Makefile

35 lines
696 B
Makefile
Raw Normal View History

2014-05-06 05:34:24 +00:00
DEPS = $(shell go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
2014-05-06 05:38:21 +00:00
PACKAGES = $(shell go list ./...)
2013-12-06 23:43:07 +00:00
all: deps format
2013-12-06 23:43:07 +00:00
@mkdir -p bin/
@bash --norc -i ./scripts/build.sh
cov:
gocov test ./... | gocov-html > /tmp/coverage.html
open /tmp/coverage.html
deps:
@echo "--> Installing build dependencies"
@go get -d -v ./...
@echo $(DEPS) | xargs -n1 go get -d
2013-12-06 23:43:07 +00:00
test: deps
./scripts/verify_no_uuid.sh
go list ./... | xargs -n1 go test --cover
2013-12-06 23:43:07 +00:00
integ:
2014-12-05 07:11:47 +00:00
go list ./... | INTEG_TESTS=yes xargs -n1 go test --cover
2013-12-06 23:43:07 +00:00
format: deps
@echo "--> Running go fmt"
@go fmt $(PACKAGES)
2014-05-06 05:38:21 +00:00
2013-12-06 23:43:07 +00:00
web:
./scripts/website_run.sh
web-push:
./scripts/website_push.sh
.PHONY: all cov deps integ test web web-push