include build/private/bgo_exports.makefile

# Don't include the fakes in the list of which go packages we build
T_EXCLUSIONS=$(filter %fakes,$(T))

include ${BGO_MAKEFILE}

# Run gofmt during builds
build:: fmt

.PHONY: counterfeiter
counterfeiter::
	go generate ./...

.PHONY: golangci-lint
golangci-lint::
	golangci-lint run

pre-test:: counterfeiter

release:: golangci-lint