summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/hashicorp/memberlist/Makefile
blob: 891e8364ae0645be2d4991996175dc265cf8a182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
DEPS = $(go list -f '{{range .Imports}}{{.}} {{end}}' ./...)
test: subnet
	go test ./...

integ: subnet
	INTEG_TESTS=yes go test ./...

subnet:
	./test/setup_subnet.sh

cov:
	gocov test github.com/hashicorp/memberlist | gocov-html > /tmp/coverage.html
	open /tmp/coverage.html

deps:
	go get -d -v ./...
	echo $(DEPS) | xargs -n1 go get -d

.PNONY: test cov integ