Jan Dittberner
70cc0942ca
- use embed from the standard library instead of packr - upgrade to sprig v3 - upgrade gomail version - use golang-migrate instead of sql-migrate to get embed support - use statigz to deliver compressed static assets
16 lines
402 B
Makefile
16 lines
402 B
Makefile
VERSION := $(shell git describe --always --dirty=-dev)
|
|
BUILD := $(shell date --iso-8601=seconds --utc)
|
|
GOFILES = $(shell find . -type f -name '*.go')
|
|
|
|
all: cacert-boardvoting
|
|
|
|
cacert-boardvoting: ${GOFILES}
|
|
go build -o $@ -x -ldflags " -X 'main.version=${VERSION}' -X 'main.build=${BUILD}'"
|
|
|
|
clean:
|
|
rm -f cacert-boardvoting
|
|
|
|
distclean: clean
|
|
rm -f boardvoting/assets.go
|
|
|
|
.PHONY: clean distclean all
|