From 2ea4762d0fb6456c37077384be9a772abfc335df Mon Sep 17 00:00:00 2001 From: Jeff Regan Date: Mon, 28 Oct 2019 11:54:44 -0700 Subject: [PATCH] Delete makefile This isn't maintained because it's not used by ./travis/pre-commit.sh or any other automated process. It's just causing confusion. --- Makefile | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index ba06308f9..000000000 --- a/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -BIN_NAME=kustomize - -COVER_FILE=coverage.out - -export GO111MODULE=on - -all: test build - -test: generate-code test-lint test-go - -test-go: - go test -v ./... - -test-lint: - golangci-lint run ./... - -generate-code: - ./plugin/generateBuiltins.sh $(GOPATH) - -build: - go build -o $(BIN_NAME) cmd/kustomize/main.go - -install: - go install $(PWD)/cmd/kustomize - -cover: - # The plugin directory eludes coverage, and is therefore omitted - go test ./pkg/... ./k8sdeps/... ./internal/... -coverprofile=$(COVER_FILE) && \ - go tool cover -html=$(COVER_FILE) - - -clean: - go clean - rm -f $(BIN_NAME) - rm -f $(COVER_FILE) - -.PHONY: test build install clean generate-code test-go test-lint cover