pgweb/Makefile

19 lines
386 B
Makefile
Raw Normal View History

2014-10-09 09:56:08 -05:00
build:
2014-10-13 14:40:56 -05:00
rm -f bindata.go
go-bindata static/...
gox -osarch="darwin/amd64 linux/amd64 linux/386 windows/amd64 windows/386" -output="./bin/pgweb_{{.OS}}_{{.Arch}}"
2014-10-09 09:56:08 -05:00
2014-10-13 18:29:44 -05:00
dev:
rm -f bindata.go
go-bindata static/...
go build
@echo "You can now execute ./pgweb"
2014-10-09 09:56:08 -05:00
deps:
2014-10-13 18:29:44 -05:00
go get
2014-10-10 17:32:47 -05:00
go get github.com/mitchellh/gox
2014-10-13 13:58:26 -05:00
go get github.com/jteeuwen/go-bindata/...
2014-10-10 17:32:47 -05:00
clean:
rm -f ./pgweb
rm -f ./bin/*