packer-cn/Makefile

13 lines
128 B
Makefile
Raw Normal View History

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