packer-cn/Makefile

13 lines
128 B
Makefile
Raw Normal View History

2013-03-23 00:48:20 -07:00
all:
@mkdir -p bin/
2013-03-24 14:40:20 -07:00
go get -d ./...
2013-03-23 18:40:26 -07:00
go build -a -o bin/packer
2013-03-23 00:48:20 -07:00
2013-03-24 14:47:59 -07:00
format:
go fmt ./...
2013-03-24 14:31:18 -07:00
test:
go test ./...
.PHONY: all test