-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
34 lines (30 loc) · 1.41 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# SPDX-FileCopyrightText: The terraform-provider-k8s Authors
# SPDX-License-Identifier: 0BSD
###############################################################################
# PROLOGUE #
###############################################################################
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
.ONESHELL:
.DELETE_ON_ERROR:
.DEFAULT_GOAL := help
ifneq ($(strip $(shell which zsh)),)
SHELL := zsh
.SHELLFLAGS += -o pipefail
else ifneq ($(strip $(shell which bash)),)
SHELL := bash
.SHELLFLAGS += -o pipefail
else
SHELL := sh
endif
###############################################################################
# COMMON RULES #
###############################################################################
##@ other
.PHONY: help
help: ## Display this help message
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make <target>\033[36m\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-25s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
###############################################################################
# PROJECT SPECIFIC RULES #
###############################################################################
-include project.mk