packer-cn/Makefile
Mitchell Hashimoto ca93f645be packer.Ui tests
2013-03-24 14:31:18 -07:00

10 lines
99 B
Makefile

all:
@mkdir -p bin/
go get -d
go build -a -o bin/packer
test:
go test ./...
.PHONY: all test