pgweb/Makefile
2014-10-13 16:27:53 -05:00

12 lines
262 B
Makefile

build:
rm -f bindata.go
go-bindata static/...
gox -osarch="darwin/amd64 windows/amd64 linux/amd64" -output="./bin/pgweb_{{.OS}}_{{.Arch}}"
deps:
go get github.com/mitchellh/gox
go get github.com/jteeuwen/go-bindata/...
clean:
rm -f ./pgweb
rm -f ./bin/*