We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0701e9b commit 5d76d3dCopy full SHA for 5d76d3d
Makefile
@@ -11,14 +11,14 @@
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
-
15
PACKAGES=$(shell go list ./... | grep -v /vendor/)
+GO_TAGS=$(if $(GO_BUILDTAGS),-tags "$(strip $(GO_BUILDTAGS))",)
16
17
all: cgutil
18
- go build -v
+ go build -v $(GO_TAGS)
19
20
cgutil:
21
- cd cmd/cgctl && go build -v
+ cd cmd/cgctl && go build -v $(GO_TAGS)
22
23
proto:
24
protobuild --quiet ${PACKAGES}
0 commit comments