packer-cn/Makefile

23 lines
457 B
Makefile
Raw Normal View History

2013-05-07 14:39:32 -04:00
NO_COLOR=\x1b[0m
OK_COLOR=\x1b[32;01m
ERROR_COLOR=\x1b[31;01m
WARN_COLOR=\x1b[33;01m
2013-03-23 03:48:20 -04:00
all:
@mkdir -p bin/
@echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)"
@go get -d -v ./...
@echo "$(OK_COLOR)==> Building$(NO_COLOR)"
2013-06-20 01:44:02 -04:00
@./scripts/build.sh
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:
@echo "$(OK_COLOR)==> Testing Packer...$(NO_COLOR)"
2013-03-25 17:17:21 -04:00
@go list -f '{{range .TestImports}}{{.}}\
{{end}}' ./... | xargs -n1 go get -d
go test ./...
2013-03-24 17:31:18 -04:00
2013-03-25 17:17:21 -04:00
.PHONY: all format test