aboutsummaryrefslogtreecommitdiffstats
path: root/kube2consul/src/kube2consul/Makefile
blob: 141abb005fff02896a9642f45fab2bf987004320 (plain)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: kube2consul clean test

kube2consul: kube2consul.go
	CGO_ENABLED=0 go build --ldflags '-extldflags "-static"'
	strip kube2consul

clean:
	rm -fr kube2consul

test: clean
	go test -v --vmodule=*=4