blob: 7bb882dca61052c835f4709e567257ea58c72c08 [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 Armstronga5325392024-04-02 13:22:12 -040089xargs-cmd0 := xargs -0 --no-run-if-empty
90xargs-cmd := $(xargs-cmd0) -t
Joey Armstrongf128de82023-09-08 17:05:18 -040091xargs-n1 := $(xargs-cmd) -n1
92xargs-n1-clean := $(env-clean) $(xargs-n1)
93xargs-cmd-clean := $(env-clean) $(xargs-cmd)
Joey Armstrong0205d332023-04-11 17:29:23 -040094
95## -----------------------------------------------------------------------
Joey Armstrong7ad5c362023-07-09 19:10:16 -040096## Intent: NOP command for targets whose dependencies do all heavy lifting
97## -----------------------------------------------------------------------
98## usage: foo bar tans
99## <tab>$(nop-command)
100## -----------------------------------------------------------------------
101nop-cmd := :
102
103## -----------------------------------------------------------------------
Joey Armstrong0205d332023-04-11 17:29:23 -0400104## Default shell:
105## o set -e enable error checking
106## o set -u report undefined errors
107## o set -o pipefail propogate shell pipeline failures.
108## -----------------------------------------------------------------------
109SHELL ?= /bin/bash
110have-shell-bash := $(filter bash,$(subst /,$(space),$(SHELL)))
111$(if $(have-shell-bash),$(null),\
112 $(eval export SHELL := bash -euo pipefail))
113
114export SHELL ?= bash -euo pipefail
115
116$(if $(DEBUG),$(warning LEAVE))
117
118# [EOF]