mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 19:21:46 +03:00
29 lines
715 B
Makefile
29 lines
715 B
Makefile
BINDATA=
|
|
|
|
dev: dev-assets
|
|
godep go build
|
|
@echo "You can now execute ./pgweb"
|
|
|
|
assets:
|
|
go-bindata $(BINDATA) $(shell git ls-files -io --exclude-standard static/ | awk '{ gsub(/[.]/, "[.]"); printf "%s", " -ignore=" $$0 }') \
|
|
-ignore=[.]gitignore -ignore=[.]gitkeep static/...
|
|
|
|
dev-assets:
|
|
@$(MAKE) --no-print-directory assets BINDATA="-debug"
|
|
|
|
build: assets
|
|
gox -osarch="darwin/amd64 darwin/386 linux/amd64 linux/386 windows/amd64 windows/386" -output="./bin/pgweb_{{.OS}}_{{.Arch}}"
|
|
|
|
setup:
|
|
go get github.com/tools/godep
|
|
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
|
|
|
|
docker:
|
|
docker build -t pgweb .
|