pulumi/Makefile
joeduffy 5774999957 Clean up the Makefile
This adds a bunch of independent targets to the Makefile, to help
run individual commands as needed.  It also skips running `golint`
by default (per golint's advice, actually), because it spews lots
of documentation-related things at the moment, which we are
intentionally ignoring.  (Mainly just hundreds of public members
without comments; eventually we'll need to tackle this.)
2017-01-27 15:42:55 -08:00

33 lines
628 B
Makefile

.PHONY: build install lint nolint test vet
PROJECT=github.com/marapongo/mu
PROJECT_PKGS=$(shell go list ./... | grep -v /vendor/)
default: build test nolint vet install
build:
@echo "\033[0;32mBUILD:\033[0m"
@go build ${PROJECT}
install:
@echo "\033[0;32mINSTALL:\033[0m"
@go install ${PROJECT}
lint:
@echo "\033[0;32mLINT:\033[0m"
@golint cmd/...
@golint pkg/...
nolint:
@echo "\033[0;32mLINT:\033[0m"
@echo "\033[0;33mgolint not run on build automatically; to 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}