packer-cn/Makefile
2013-03-24 14:40:20 -07:00

10 lines
105 B
Makefile

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