mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 14:24:03 +00:00
25 lines
463 B
Makefile
25 lines
463 B
Makefile
DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
|
|
|
|
all: deps
|
|
go-bindata assets/...
|
|
go install
|
|
|
|
test: test-deps
|
|
go list ./... | xargs -n1 go test
|
|
|
|
release: release-deps
|
|
gox
|
|
|
|
deps:
|
|
go get github.com/ian-kent/gotcha/...
|
|
go get github.com/ian-kent/go-log/...
|
|
go get github.com/jteeuwen/go-bindata/...
|
|
go get labix.org/v2/mgo
|
|
|
|
test-deps:
|
|
go get github.com/stretchr/testify
|
|
|
|
release-deps:
|
|
go get github.com/mitchellh/gox
|
|
|
|
.PNONY: all test deps
|