2019-05-07 14:53:13 -07:00
|
|
|
# Copyright 2019 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.
|
|
|
|
|
|
2019-06-18 22:47:26 -07:00
|
|
|
# Old-skool build tools.
|
2020-08-06 10:58:03 -07:00
|
|
|
# Simple makefile to build kind quickly and reproducibly
|
2019-06-18 22:47:26 -07:00
|
|
|
#
|
|
|
|
|
# Common uses:
|
|
|
|
|
# - installing kind: `make install INSTALL_DIR=$HOME/go/bin`
|
|
|
|
|
# - building: `make build`
|
|
|
|
|
# - cleaning up and starting over: `make clean`
|
2020-08-06 10:58:03 -07:00
|
|
|
#
|
|
|
|
|
################################################################################
|
|
|
|
|
# ========================== Capture Environment ===============================
|
|
|
|
|
# get the repo root and output path
|
2019-05-08 09:20:14 -07:00
|
|
|
REPO_ROOT:=${CURDIR}
|
2019-06-18 22:47:26 -07:00
|
|
|
OUT_DIR=$(REPO_ROOT)/bin
|
2020-08-06 10:58:03 -07:00
|
|
|
# record the source commit in the binary, overridable
|
|
|
|
|
COMMIT?=$(shell git rev-parse HEAD 2>/dev/null)
|
|
|
|
|
################################################################################
|
|
|
|
|
# ========================= Setup Go With Gimme ================================
|
|
|
|
|
# go version to use for build etc.
|
|
|
|
|
# setup correct go version with gimme
|
2020-08-06 11:39:50 -07:00
|
|
|
PATH:=$(shell . hack/build/setup-go.sh && echo "$${PATH}")
|
2020-08-06 10:58:03 -07:00
|
|
|
export PATH
|
|
|
|
|
# work around broken PATH export
|
|
|
|
|
SHELL:=env PATH=$(PATH) $(SHELL)
|
|
|
|
|
################################################################################
|
|
|
|
|
# ============================== OPTIONS =======================================
|
|
|
|
|
# install tool
|
2019-06-24 16:04:56 -07:00
|
|
|
INSTALL?=install
|
2020-08-06 10:58:03 -07:00
|
|
|
# install will place binaries here, by default attempts to mimic go install
|
2019-06-18 22:47:26 -07:00
|
|
|
INSTALL_DIR?=$(shell hack/build/goinstalldir.sh)
|
2019-05-16 15:18:46 -07:00
|
|
|
# the output binary name, overridden when cross compiling
|
|
|
|
|
KIND_BINARY_NAME?=kind
|
2020-08-06 10:58:03 -07:00
|
|
|
# build flags for the kind binary
|
|
|
|
|
# - reproducible builds: -trimpath and -ldlflags=-buildid=
|
|
|
|
|
# - smaller binaries: -w (trim debugger data, but not panics)
|
|
|
|
|
# - metadata: -X=... to bake in git commit
|
|
|
|
|
KIND_BUILD_FLAGS?=-trimpath -ldflags="-buildid= -w -X=sigs.k8s.io/kind/pkg/cmd/kind/version.GitCommit=$(COMMIT)"
|
2020-08-06 09:43:54 -07:00
|
|
|
################################################################################
|
|
|
|
|
# ================================= Building ===================================
|
2020-08-06 10:58:03 -07:00
|
|
|
# standard "make" target -> builds
|
|
|
|
|
all: build
|
2019-05-08 22:30:06 -07:00
|
|
|
# builds kind in a container, outputs to $(OUT_DIR)
|
2019-06-18 22:47:26 -07:00
|
|
|
kind:
|
2020-08-06 10:58:03 -07:00
|
|
|
go build -v -o $(OUT_DIR)/$(KIND_BINARY_NAME) $(KIND_BUILD_FLAGS)
|
2019-05-07 14:53:13 -07:00
|
|
|
# alias for building kind
|
|
|
|
|
build: kind
|
2019-05-07 21:25:51 -07:00
|
|
|
# use: make install INSTALL_DIR=/usr/local/bin
|
|
|
|
|
install: build
|
2019-06-24 16:05:12 -07:00
|
|
|
$(INSTALL) -d $(INSTALL_DIR)
|
2019-06-24 16:04:56 -07:00
|
|
|
$(INSTALL) $(OUT_DIR)/$(KIND_BINARY_NAME) $(INSTALL_DIR)/$(KIND_BINARY_NAME)
|
2020-08-06 09:43:54 -07:00
|
|
|
################################################################################
|
|
|
|
|
# ================================= Testing ====================================
|
|
|
|
|
# unit tests (hermetic)
|
|
|
|
|
unit:
|
2020-08-06 12:18:12 -07:00
|
|
|
hack/make-rules/unit.sh
|
2020-08-06 09:43:54 -07:00
|
|
|
################################################################################
|
|
|
|
|
# ================================= Cleanup ====================================
|
2019-05-07 14:53:13 -07:00
|
|
|
# standard cleanup target
|
2020-08-06 10:58:03 -07:00
|
|
|
clean:
|
|
|
|
|
rm -rf $(OUT_DIR)/
|
2020-08-06 09:43:54 -07:00
|
|
|
################################################################################
|
|
|
|
|
# ============================== Auto-Update ===================================
|
|
|
|
|
# update generated code, gofmt, etc.
|
|
|
|
|
update:
|
|
|
|
|
hack/make-rules/update/all.sh
|
|
|
|
|
# update generated code
|
|
|
|
|
generate:
|
|
|
|
|
hack/make-rules/update/generated.sh
|
|
|
|
|
# gofmt
|
|
|
|
|
gofmt:
|
|
|
|
|
hack/make-rules/update/gofmt.sh
|
|
|
|
|
################################################################################
|
|
|
|
|
# ================================== Linting ===================================
|
|
|
|
|
# run linters, ensure generated code, etc.
|
|
|
|
|
verify:
|
|
|
|
|
hack/make-rules/verify/all.sh
|
2019-11-07 02:25:55 -08:00
|
|
|
# code linters
|
|
|
|
|
lint:
|
2020-08-06 09:43:54 -07:00
|
|
|
hack/make-rules/verify/lint.sh
|
|
|
|
|
# shell linter
|
2020-07-28 13:03:08 -07:00
|
|
|
shellcheck:
|
2020-08-06 09:43:54 -07:00
|
|
|
hack/make-rules/verify/shellcheck.sh
|
|
|
|
|
#################################################################################
|
2020-08-06 11:05:42 -07:00
|
|
|
.PHONY: all kind build install unit clean update generate gofmt verify lint shellcheck
|