We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67fbd60 commit e6e4b4aCopy full SHA for e6e4b4a
1 file changed
Makefile
@@ -13,12 +13,13 @@
13
# limitations under the License.
14
15
PACKAGES=$(shell go list ./... | grep -v /vendor/)
16
+GO_TAGS=$(if $(GO_BUILDTAGS),-tags "$(strip $(GO_BUILDTAGS))",)
17
18
all: cgutil
- go build -v
19
+ go build -v $(GO_TAGS)
20
21
cgutil:
- cd cmd/cgctl && go build -v
22
+ cd cmd/cgctl && go build -v $(GO_TAGS)
23
24
proto:
25
protobuild --quiet ${PACKAGES}
0 commit comments