13 lines
308 B
Makefile
13 lines
308 B
Makefile
VERSION=$(shell git describe --tags --abbrev=0)
|
|
BUILD=$(shell git rev-parse --short HEAD)
|
|
PROJ := $(shell basename "$(PWD)")
|
|
HUB=hub.kumoly.io
|
|
HUB_PROJECT=tools
|
|
|
|
LDFLAGS=-ldflags "-X main.Version=${VERSION} -X main.Build=${BUILD} -w"
|
|
|
|
default: build
|
|
|
|
.PHONY: build
|
|
build:
|
|
go build ${LDFLAGS} -o dist/${PROJ}
|