blob: 21f9fbc53568c1faabe6d9675d18e3eaddc797ad [file] [log] [blame]
Joey Armstrong0205d332023-04-11 17:29:23 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-FileCopyrightText: 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
18# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
Joey Armstronge98239c2023-05-08 17:10:07 -040020# https://gerrit.opencord.org/plugins/gitiles/onf-make
Joey Armstrong0205d332023-04-11 17:29:23 -040021# ONF.makefile.version = 1.0
22# -----------------------------------------------------------------------
23
24$(if $(DEBUG),$(warning ENTER))
25
26# include makefiles/constants.mk
27export dot :=.
28export null :=#
29export space := $(null) $(null)
Joey Armstronge98239c2023-05-08 17:10:07 -040030export quote-single := $(null)'$(null)#'
31export quote-double := $(null)"$(null)#"
Joey Armstrong0205d332023-04-11 17:29:23 -040032
Joey Armstrongc2094fc2023-11-17 15:16:27 -050033## -----------------------------
34## Macro definition for tab stop
35## Usage:
36## o $(info white$(\t)space
37## o @echo "white$(tab)space"
38## -----------------------------
39\t := $(NULL) $(NULL)
40tab := $(\t)
41
42## -----------------------------------------------
43## Macro definition for newline
44## Usage:
45## - Format output:
46## $(info two$(crlf)lines)
47## - Generate dynamic makefile rules:
48## $(eval mytarget:$(newline)$(tab)echo FOO)
49## -----------------------------------------------
50define crlf :=
51
52
53endef
54newline := $(crlf)
55
56# ------------------------------------------------------
57# [DEBUG] - Define HIDE=<null> to display shell commands
58# ------------------------------------------------------
59# Target rule definition:
60# show:
61# <tab>$(HIDE)echo "Display rule when HIDE != '@'
62# ------------------------------------------------------
63# Usage: make show HIDE=
64# ------------------------------------------------------
Joey Armstrong7ad5c362023-07-09 19:10:16 -040065HIDE ?= @
Joey Armstrong0205d332023-04-11 17:29:23 -040066
Joey Armstrongc2094fc2023-11-17 15:16:27 -050067# -----------------------------------------------------------------------
68# Intent: Define a prefix macro for shell commands that will inhibit
69# loading user defined environment vars (consistent command use w/o
70# potential for per-user tainting of command behavior).
71# -----------------------------------------------------------------------
72# Target usage:
73# mytarget:
74# <tab>$(env-clean) ls
75# -----------------------------------------------------------------------
Joey Armstrong0205d332023-04-11 17:29:23 -040076env-clean ?= /usr/bin/env --ignore-environment
Joey Armstrongf128de82023-09-08 17:05:18 -040077
Joey Armstrongc2094fc2023-11-17 15:16:27 -050078# -----------------------------------------------------------------------
79# Intent: Define convenience xargs macros to shorten target command lines
80# -----------------------------------------------------------------------
81# Target usage:
82# mytarget:
83# <tab>$(env-clean) ls
84# -----------------------------------------------------------------------
85# Usage:
86# lint-shell:
87# <tab>find . -name '*.sh' -print0 | $(xargs-n1-clean) shellcheck $(args)
88# -----------------------------------------------------------------------
Joey Armstrongf128de82023-09-08 17:05:18 -040089xargs-cmd := xargs -0 -t --no-run-if-empty
90xargs-n1 := $(xargs-cmd) -n1
91xargs-n1-clean := $(env-clean) $(xargs-n1)
92xargs-cmd-clean := $(env-clean) $(xargs-cmd)
Joey Armstrong0205d332023-04-11 17:29:23 -040093
94## -----------------------------------------------------------------------
Joey Armstrong7ad5c362023-07-09 19:10:16 -040095## Intent: NOP command for targets whose dependencies do all heavy lifting
96## -----------------------------------------------------------------------
97## usage: foo bar tans
98## <tab>$(nop-command)
99## -----------------------------------------------------------------------
100nop-cmd := :
101
102## -----------------------------------------------------------------------
Joey Armstrong0205d332023-04-11 17:29:23 -0400103## Default shell:
104## o set -e enable error checking
105## o set -u report undefined errors
106## o set -o pipefail propogate shell pipeline failures.
107## -----------------------------------------------------------------------
108SHELL ?= /bin/bash
109have-shell-bash := $(filter bash,$(subst /,$(space),$(SHELL)))
110$(if $(have-shell-bash),$(null),\
111 $(eval export SHELL := bash -euo pipefail))
112
113export SHELL ?= bash -euo pipefail
114
115$(if $(DEBUG),$(warning LEAVE))
116
117# [EOF]