1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-19 15:42:58 +00:00
cloudkeys-go/Makefile

28 lines
612 B
Makefile

#VERSION = $(shell git describe --tags)
VERSION = dev
BOOTSTRAP_VERISON = 3.3.5
default: build
build: bundle_assets
go build .
pre-commit: bundle_assets
container: ca-certificates.pem bundle_assets
docker run -v $(CURDIR):/src -e LDFLAGS='-X main.version $(VERSION)' centurylink/golang-builder:latest
docker build .
gen_css:
lessc --verbose -O2 -x less/*.less assets/style.css
gen_js:
coffee --compile -o assets coffee/*.coffee
bundle_assets: gen_css gen_js
go-bindata assets templates
ca-certificates.pem:
curl -s https://pki.google.com/roots.pem | grep -v "^#" | grep -v "^$$" > $@
shasum $@