pulumi/Makefile

35 lines
781 B
Makefile
Raw Normal View History

.PHONY: build install lint lint_quiet test vet
2017-02-25 16:25:33 +01:00
PROJECT=github.com/pulumi/coconut
2016-11-16 04:25:06 +01:00
PROJECT_PKGS=$(shell go list ./... | grep -v /vendor/)
default: test lint_quiet vet install
build:
@echo "\033[0;32mBUILD:\033[0m"
@go build ${PROJECT}/cmd/coco
install:
@echo "\033[0;32mINSTALL:\033[0m"
@go install ${PROJECT}/cmd/coco
lint:
@echo "\033[0;32mLINT:\033[0m"
@golint cmd/...
@golint pkg/...
lint_quiet:
@echo "\033[0;32mLINT (quiet):\033[0m"
@$(shell golint cmd/... | grep -v "or be unexported")
@$(shell golint pkg/... | grep -v "or be unexported")
@echo "\033[0;33mgolint was run quietly; to run with noisy errors, run 'make lint'\033[0m"
test:
@echo "\033[0;32mTEST:\033[0m"
@go test ${PROJECT_PKGS}
vet:
@echo "\033[0;32mVET:\033[0m"
@go vet ${PROJECT_PKGS}