pgweb/Makefile

28 lines
647 B
Makefile
Raw Normal View History

BINDATA=
dev: build-dev-assets
2014-11-06 07:04:47 +03:00
godep go build
2014-10-14 03:29:44 +04:00
@echo "You can now execute ./pgweb"
build-assets:
go-bindata $(BINDATA) -ignore=\\.gitignore -ignore=\\.DS_Store -ignore=\\.gitkeep static/...
build-dev-assets:
@$(MAKE) --no-print-directory build-assets BINDATA="-debug"
build: build-assets
2014-10-27 23:26:14 +03:00
gox -osarch="darwin/amd64 darwin/386 linux/amd64 linux/386 windows/amd64 windows/386" -output="./bin/pgweb_{{.OS}}_{{.Arch}}"
2014-10-25 21:55:12 +04:00
setup:
go get github.com/tools/godep
2014-11-06 07:04:47 +03:00
godep get github.com/mitchellh/gox
godep get github.com/jteeuwen/go-bindata/...
godep restore
2014-10-11 02:32:47 +04:00
clean:
rm -f ./pgweb
2014-10-14 03:31:28 +04:00
rm -f ./bin/*
rm -f bindata.go
2014-11-06 03:27:14 +03:00
docker:
docker build -t pgweb .