From 65cce4a72684509181043c98c3ec651b46003fb6 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Sat, 25 Oct 2014 12:55:12 -0500 Subject: [PATCH] Reorder tasks in makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a0156cc..4d7cc40 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ -build: - rm -f bindata.go - go-bindata -ignore=\\.gitignore -ignore=\\.DS_Store -ignore=\\.gitkeep static/... - gox -osarch="darwin/amd64 linux/amd64 linux/386 windows/amd64 windows/386" -output="./bin/pgweb_{{.OS}}_{{.Arch}}" - dev: rm -f bindata.go go-bindata -debug -ignore=\\.gitignore -ignore=\\.DS_Store -ignore=\\.gitkeep static/... go build @echo "You can now execute ./pgweb" +build: + rm -f bindata.go + go-bindata -ignore=\\.gitignore -ignore=\\.DS_Store -ignore=\\.gitkeep static/... + gox -osarch="darwin/amd64 linux/amd64 linux/386 windows/amd64 windows/386" -output="./bin/pgweb_{{.OS}}_{{.Arch}}" + setup: go get github.com/mitchellh/gox go get github.com/jteeuwen/go-bindata/...