From e671fea954a78c6732b35ff83d41bd09a51a6f96 Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Thu, 13 Jan 2022 22:16:37 -0800 Subject: [PATCH] Remove hack/tools/Makefile --- hack/tools/Makefile | 53 -------------------------------------------- hack/tools/README.md | 3 --- 2 files changed, 56 deletions(-) delete mode 100644 hack/tools/Makefile diff --git a/hack/tools/Makefile b/hack/tools/Makefile deleted file mode 100644 index 822c48e84ec..00000000000 --- a/hack/tools/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2020 The Kubernetes Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -export GO111MODULE=on - -GOBIN ?= $(shell go env GOPATH)/bin -DEP_PROGS=\ - $(GOBIN)/gotestsum\ - $(GOBIN)/misspell\ - $(GOBIN)/prettybench\ - $(GOBIN)/staticcheck\ - $(GOBIN)/logcheck\ - -.PHONY: all -all: clean build - -.PHONY: clean -clean: - rm -f $(DEP_PROGS) - rm -rf vendor/ - -.PHONY: build -build: $(DEP_PROGS) - -.PHONY: deps -deps: - go mod vendor - -$(GOBIN)/gotestsum: deps - go install gotest.tools/gotestsum - -$(GOBIN)/misspell: deps - go install github.com/client9/misspell/cmd/misspell - -$(GOBIN)/prettybench: deps - go install github.com/cespare/prettybench - -$(GOBIN)/staticcheck: deps - go install honnef.co/go/tools/cmd/staticcheck - -$(GOBIN)/logcheck: deps - go install k8s.io/klog/hack/tools/logcheck diff --git a/hack/tools/README.md b/hack/tools/README.md index 1da7039bf02..26b808deb5b 100644 --- a/hack/tools/README.md +++ b/hack/tools/README.md @@ -1,5 +1,2 @@ This directory contains a stub go module used to track version of development tools like the ones needed for linting go sources. - -Run `make build` to download the dependencies, build the binaries and add -them to your `$GOBIN` directory.