packer-cn/Makefile
2013-03-24 14:47:59 -07:00

13 lines
128 B
Makefile

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