17 lines
514 B
Makefile
17 lines
514 B
Makefile
VERSION := $(shell git describe --always --dirty=-dev)
|
|
COMMIT := $(shell git show-ref --hash refs/heads/master)
|
|
DATE := $(shell date --iso-8601=seconds --utc)
|
|
GOFILES = $(shell find . -type f -name '*.go')
|
|
|
|
all: cacert-boardvoting
|
|
|
|
cacert-boardvoting: ${GOFILES}
|
|
go build -o $@ -buildmode=pie -trimpath -x -ldflags " -s -w -X 'main.version=${VERSION}' -X 'main.commit=${COMMIT}' -X 'main.date=${DATE}'"
|
|
|
|
clean:
|
|
rm -f cacert-boardvoting
|
|
|
|
distclean: clean
|
|
rm -f boardvoting/assets.go
|
|
|
|
.PHONY: clean distclean all
|