pgweb/Makefile
2015-03-17 00:01:28 -05:00

61 lines
1.8 KiB
Makefile

DOCKER_RELEASE_TAG = "sosedoff/pgweb:$(shell git describe --abbrev=0 --tags | sed 's/v//')"
BINDATA_IGNORE = $(shell git ls-files -io --exclude-standard $< | sed 's/^/-ignore=/;s/[.]/[.]/g')
usage:
@echo ""
@echo "Task : Description"
@echo "----------------- : -------------------"
@echo "make setup : Install all necessary dependencies"
@echo "make dev : Generate development build"
@echo "make test : Run tests"
@echo "make build : Generate production build for current OS"
@echo "make bootstrap : Install cross-compilation toolchain"
@echo "make release : Generate binaries for all supported OSes"
@echo "make clean : Remove all build files and reset assets"
@echo "make assets : Generate production assets file"
@echo "make dev-assets : Generate development assets file"
@echo "make docker : Build docker image"
@echo "make docker-release : Build and tag docker image"
@echo ""
test:
godep go test -cover
assets: static/
go-bindata $(BINDATA_OPTS) $(BINDATA_IGNORE) -ignore=[.]gitignore -ignore=[.]gitkeep $<...
dev-assets:
@$(MAKE) --no-print-directory assets BINDATA_OPTS="-debug"
dev: dev-assets
godep go build
@echo "You can now execute ./pgweb"
build: assets
godep go build
@echo "You can now execute ./pgweb"
release: assets
gox -osarch="darwin/amd64 darwin/386 linux/amd64 linux/386 windows/amd64 windows/386" -output="./bin/pgweb_{{.OS}}_{{.Arch}}"
bootstrap:
gox -build-toolchain
setup:
go get github.com/tools/godep
go get golang.org/x/tools/cmd/cover
godep get github.com/mitchellh/gox
godep get github.com/jteeuwen/go-bindata/...
godep restore
clean:
rm -f ./pgweb
rm -f ./bin/*
rm -f bindata.go
make assets
docker:
docker build -t pgweb .
docker-release:
docker build -t $(DOCKER_RELEASE_TAG) .