Jan Dittberner
4dd5e09820
- switch from goose to github.com/rubenv/sql-migrate - move assets (static, templates, migrations) to boardvoting package - add generated boardvoting/assets.go - remove unused static files from static directory - add package db with db migration configuration
22 lines
732 B
Makefile
22 lines
732 B
Makefile
VERSION := $(shell git describe --always --dirty=-dev)
|
|
BUILD := $(shell date --iso-8601=seconds --utc)
|
|
GOFILES = $(shell find . -type f -name '*.go')
|
|
STATICFILES = $(shell find boardvoting/static/ -type f)
|
|
TEMPLATES = $(shell find boardvoting/templates/ -type f)
|
|
DBMIGRATIONS = $(shell find boardvoting/migrations/ -type f)
|
|
|
|
all: cacert-boardvoting
|
|
|
|
boardvoting/assets.go: $(DBMIGRATIONS) $(STATICFILES) $(TEMPLATES) $(DBMIGRATIONS) boardvoting/main.go
|
|
go generate -v ./boardvoting
|
|
|
|
cacert-boardvoting: ${GOFILES} boardvoting/assets.go
|
|
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
|