20 lines
314 B
Makefile
20 lines
314 B
Makefile
{{if binary}}
|
|
GO ?= go
|
|
VERSION ?= $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')
|
|
|
|
.PHONY: build
|
|
build:
|
|
$(GO) build -ldflags '-s -w -X "{{go_mod}}/cmd.Version=$(VERSION)"'
|
|
{{end}}
|
|
.PHONY: vet
|
|
vet:
|
|
$(GO) vet ./...
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
$(GO) fmt ./...
|
|
|
|
.PHONY: test
|
|
test:
|
|
$(GO) test -race ./...
|