Commit 8202fa2f by Oleg Gaidarenko Committed by GitHub

Build: change definition of the vars in makefile (#18151)

Prompted by the @slim-bean talk (thanks!). With that definition
`GO_FILES` var can be dynamically changed, that will be very helpful
in grafana enterprise repo
parent c8498461
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
.PHONY: all deps-go deps-js deps build-go build-server build-cli build-js build build-docker-dev build-docker-full lint-go gosec revive golangci-lint go-vet test-go test-js test run clean devenv devenv-down revive-alerting .PHONY: all deps-go deps-js deps build-go build-server build-cli build-js build build-docker-dev build-docker-full lint-go gosec revive golangci-lint go-vet test-go test-js test run clean devenv devenv-down revive-alerting
GO := GO111MODULE=on go GO = GO111MODULE=on go
GO_FILES := ./pkg/... GO_FILES ?= ./pkg/...
all: deps build all: deps build
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment