packer-cn/Makefile

28 lines
642 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
export ROOTDIR=$(CURDIR)
2013-03-23 03:48:20 -04:00
all:
@mkdir -p bin/
2013-03-25 17:17:21 -04:00
go get -d -v ./...
2013-05-07 14:39:32 -04:00
@echo "$(OK_COLOR)--> Compiling Packer...$(NO_COLOR)"
2013-03-25 17:17:21 -04:00
go build -v -o bin/packer
@echo "$(OK_COLOR)--> Compiling Builder: Amazon EBS...$(NO_COLOR)"
$(MAKE) -C plugin/builder-amazon-ebs
2013-05-07 14:39:32 -04:00
@echo "$(OK_COLOR)--> Compiling Command: Build...$(NO_COLOR)"
$(MAKE) -C plugin/command-build
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:
2013-05-07 14:39:32 -04:00
@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