1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-19 15:42:58 +00:00
cloudkeys-go/Makefile
Martin Thielecke d82a98b157 fixed typo
2017-12-30 00:02:02 +00:00

33 lines
622 B
Makefile

VERSION = $(shell git describe --tags)
default: build
build: $(GOPATH)/bin/godep bindata.go
$(GOPATH)/bin/godep go build -ldflags "-X main.version=$(VERSION)" .
pre-commit: bindata.go
container: bindata.go
docker build .
gen_css:
lessc --verbose -x less/*.less assets/style.css
gen_js:
coffee --compile -o assets coffee/*.coffee
bindata.go: gen_css gen_js
go generate
$(GOPATH)/bin/godep:
go get github.com/tools/godep
publish:
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
bash golang.sh
prepare-gae-deploy:
rm -rf Dockerfile vendor
.PHONY: bindata.go