mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 10:21:20 -05:00
15 lines
265 B
Makefile
15 lines
265 B
Makefile
PLUGIN_NAME=packer-builder-amazon-ebs
|
|
|
|
plugin:
|
|
go get -d -v ./...
|
|
go build -v -o $(ROOTDIR)/bin/$(PLUGIN_NAME)
|
|
|
|
format:
|
|
go fmt ./...
|
|
|
|
test:
|
|
@go list -f '{{range .TestImports}}{{.}}\
|
|
{{end}}' ./... | xargs -n1 go get -d
|
|
go test ./...
|
|
|
|
.PHONY: all format test
|