Makefile -- don't dictate to go what binary to build, so it can append .exe if building for windows.

This commit is contained in:
Eugene Bujak 2018-11-30 13:43:01 +03:00
parent 057db71f3b
commit 3ecc0ee24b

View file

@ -23,7 +23,7 @@ $(TARGET): $(STATIC) *.go coredns_plugin/*.go dnsfilter/*.go
go get -d .
GOOS=$(NATIVE_GOOS) GOARCH=$(NATIVE_GOARCH) GO111MODULE=off go get -v github.com/gobuffalo/packr/...
PATH=$(GOPATH)/bin:$(PATH) packr -z
CGO_ENABLED=0 go build -ldflags="-s -w -X main.VersionString=$(GIT_VERSION)" -asmflags="-trimpath=$(PWD)" -gcflags="-trimpath=$(PWD)" -o $(TARGET)
CGO_ENABLED=0 go build -ldflags="-s -w -X main.VersionString=$(GIT_VERSION)" -asmflags="-trimpath=$(PWD)" -gcflags="-trimpath=$(PWD)"
PATH=$(GOPATH)/bin:$(PATH) packr clean
clean: