packer-cn/Makefile

27 lines
549 B
Makefile
Raw Normal View History

NO_COLOR=\033[0m
OK_COLOR=\033[32;01m
ERROR_COLOR=\033[31;01m
WARN_COLOR=\033[33;01m
2013-05-07 14:39:32 -04:00
2013-08-13 21:42:08 -04:00
all: deps
2013-03-23 03:48:20 -04:00
@mkdir -p bin/
@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-08-13 21:42:08 -04:00
deps:
@echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)"
@go get -d -v ./...
@go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs -n1 go get -d
2013-07-18 10:26:36 -04:00
clean:
@rm -rf bin/ local/ pkg/ src/ website/.sass-cache website/build
2013-03-24 17:47:59 -04:00
format:
go fmt ./...
2013-08-13 21:42:08 -04:00
test: deps
@echo "$(OK_COLOR)==> Testing Packer...$(NO_COLOR)"
go test ./...
2013-03-24 17:31:18 -04:00
2013-08-13 21:42:08 -04:00
.PHONY: all deps format test