mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
32 lines
622 B
Makefile
32 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 venvor
|
|
|
|
.PHONY: bindata.go
|