Files
Packer-Cn/plugin/command-build/Makefile
T

14 lines
232 B
Makefile
Raw Normal View History

2013-05-07 11:39:32 -07:00
plugin:
go get -d -v ./...
go build -v -o $(ROOTDIR)/bin/packer-command-build
2013-05-07 11:39:32 -07:00
format:
go fmt ./...
test:
@go list -f '{{range .TestImports}}{{.}}\
{{end}}' ./... | xargs -n1 go get -d
go test ./...
.PHONY: all format test