27 lines
376 B
Makefile
27 lines
376 B
Makefile
GO ?= go
|
|
VERSION ?= $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')
|
|
|
|
.PHONY: build
|
|
build:
|
|
$(GO) build -ldflags '-s -w -X "go.jolheiser.com/tmpl/cmd.Version=$(VERSION)"'
|
|
|
|
.PHONY: vet
|
|
vet:
|
|
$(GO) vet ./...
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
$(GO) fmt ./...
|
|
|
|
.PHONY: test
|
|
test:
|
|
$(GO) test -race ./...
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
earth +lint
|
|
|
|
.PHONY: docs
|
|
docs:
|
|
$(GO) run docs.go
|