Skip to content

Commit 5475f28

Browse files
authoredNov 29, 2023
Merge pull request #304 from oss-qm/submit/makefile-fixes
makefile fixes
2 parents a0ae1c2 + 481d64b commit 5475f28

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎Makefile

+5-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@
1313
# limitations under the License.
1414

1515
PACKAGES=$(shell go list ./... | grep -v /vendor/)
16+
GO_TAGS=$(if $(GO_BUILDTAGS),-tags "$(strip $(GO_BUILDTAGS))",)
17+
GO ?= go
18+
GO_BUILD_FLAGS ?=
1619

1720
all: cgutil
18-
go build -v
21+
$(GO) build -v $(GO_TAGS)
1922

2023
cgutil:
21-
cd cmd/cgctl && go build -v
24+
cd cmd/cgctl && $(GO) build $(GO_BUILD_FLAGS) -v $(GO_TAGS)
2225

2326
proto:
2427
protobuild --quiet ${PACKAGES}

0 commit comments

Comments
 (0)
Please sign in to comment.