12 lines
No EOL
302 B
Makefile
12 lines
No EOL
302 B
Makefile
VERSION := $(shell git describe --always --long --dirty --tags)
|
|
|
|
build:
|
|
go build -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=${VERSION}'" ./...
|
|
|
|
install:
|
|
go install -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=${VERSION}'" ./...
|
|
|
|
test:
|
|
go test -v ./...
|
|
|
|
.PHONY: install test |