2014-04-28 00:42:05 +00:00
|
|
|
DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
|
|
|
|
|
2014-12-24 16:52:53 +00:00
|
|
|
all: deps fmt combined
|
2014-11-23 15:10:55 +00:00
|
|
|
|
|
|
|
combined:
|
2014-12-24 18:34:24 +00:00
|
|
|
go install .
|
2014-04-28 00:42:05 +00:00
|
|
|
|
|
|
|
release: release-deps
|
2014-12-24 18:34:24 +00:00
|
|
|
gox -output="build/{{.Dir}}_{{.OS}}_{{.Arch}}" .
|
2014-04-28 00:42:05 +00:00
|
|
|
|
2014-10-29 15:00:04 +00:00
|
|
|
fmt:
|
|
|
|
go fmt ./...
|
|
|
|
|
2014-04-28 00:42:05 +00:00
|
|
|
deps:
|
2014-12-24 16:52:53 +00:00
|
|
|
go get github.com/mailhog/MailHog-Server
|
|
|
|
go get github.com/mailhog/MailHog-UI
|
2014-12-24 17:13:51 +00:00
|
|
|
go get github.com/mailhog/http
|
2014-12-02 20:03:25 +00:00
|
|
|
go get github.com/ian-kent/gotcha/gotcha
|
2014-10-29 15:00:04 +00:00
|
|
|
go get github.com/ian-kent/go-log/log
|
2014-10-29 16:59:59 +00:00
|
|
|
go get github.com/ian-kent/envconf
|
2014-12-21 09:18:19 +00:00
|
|
|
go get github.com/ian-kent/goose
|
2014-12-24 13:21:21 +00:00
|
|
|
go get github.com/ian-kent/linkio
|
2014-04-28 00:42:05 +00:00
|
|
|
go get github.com/jteeuwen/go-bindata/...
|
|
|
|
go get labix.org/v2/mgo
|
2014-12-02 21:48:36 +00:00
|
|
|
# added to fix travis issues
|
|
|
|
go get code.google.com/p/go-uuid/uuid
|
|
|
|
go get code.google.com/p/go.crypto/bcrypt
|
2014-04-28 00:42:05 +00:00
|
|
|
|
|
|
|
test-deps:
|
2014-11-23 14:08:53 +00:00
|
|
|
go get github.com/smartystreets/goconvey
|
2014-04-28 00:42:05 +00:00
|
|
|
|
|
|
|
release-deps:
|
|
|
|
go get github.com/mitchellh/gox
|
|
|
|
|
2014-12-24 16:52:53 +00:00
|
|
|
.PNONY: all combined release fmt deps test-deps release-deps
|