Merge pull request #991 from berendt/fixing-colored-output-of-makefile

fixing colored output of Makefile
This commit is contained in:
Mitchell Hashimoto 2014-04-20 23:07:17 -07:00
commit 57c3b8d9b9
1 changed files with 4 additions and 4 deletions

View File

@ -6,16 +6,16 @@ DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
all: deps
@mkdir -p bin/
@echo "$(OK_COLOR)==> Building$(NO_COLOR)"
@echo -e "$(OK_COLOR)==> Building$(NO_COLOR)"
@bash --norc -i ./scripts/devcompile.sh
deps:
@echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)"
@echo -e "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)"
@go get -d -v ./...
@echo $(DEPS) | xargs -n1 go get -d
updatedeps:
@echo "$(OK_COLOR)==> Updating all dependencies$(NO_COLOR)"
@echo -e "$(OK_COLOR)==> Updating all dependencies$(NO_COLOR)"
@go get -d -v -u ./...
@echo $(DEPS) | xargs -n1 go get -d -u
@ -26,7 +26,7 @@ format:
go fmt ./...
test: deps
@echo "$(OK_COLOR)==> Testing Packer...$(NO_COLOR)"
@echo -e "$(OK_COLOR)==> Testing Packer...$(NO_COLOR)"
go test ./...
.PHONY: all clean deps format test updatedeps