mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 19:21:46 +03:00
Makefile changes
- Rename "make build" to "make release" - Task "make release" will build all targets - Task "make build" will build production binary for current os
This commit is contained in:
parent
e0dd4c6a6f
commit
d904ea9a29
12
Makefile
12
Makefile
@ -1,16 +1,20 @@
|
||||
BINDATA_IGNORE = $(shell git ls-files -io --exclude-standard $< | sed 's/^/-ignore=/;s/[.]/[.]/g')
|
||||
|
||||
dev: dev-assets
|
||||
godep go build
|
||||
@echo "You can now execute ./pgweb"
|
||||
|
||||
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}}"
|
||||
|
||||
setup:
|
||||
|
Loading…
Reference in New Issue
Block a user