blob: 3b9f9b952b112e966cb540771a4cab9ca9727222 [file] [log] [blame]
Joey Armstrong811e9542022-12-25 21:45:27 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong7a9af442024-01-03 19:26:36 -05003# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong811e9542022-12-25 21:45:27 -05004#
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.
Joey Armstrong367d76b2023-06-08 17:16:46 -040016#
Joey Armstrong653504f2024-01-18 12:58:56 -050017# SPDX-FileCopyrightText: 2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong367d76b2023-06-08 17:16:46 -040018# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
20# https://gerrit.opencord.org/plugins/gitiles/onf-make
21# ONF.makefile.version = 1.0
Joey Armstrong811e9542022-12-25 21:45:27 -050022# -----------------------------------------------------------------------
23
Joey Armstrong367d76b2023-06-08 17:16:46 -040024$(if $(DEBUG),$(warning ENTER))
Joey Armstrong811e9542022-12-25 21:45:27 -050025
Joey Armstrong367d76b2023-06-08 17:16:46 -040026# include makefiles/constants.mk
27export dot :=.
28export null :=#
29export space := $(null) $(null)
30export quote-single := $(null)'$(null)#'
31export quote-double := $(null)"$(null)#"
32
33# [DEBUG] make {target} HIDE=
34HIDE ?= @
35
36env-clean ?= /usr/bin/env --ignore-environment
37xargs-n1 := xargs -0 -t -n1 --no-run-if-empty
38xargs-n1-clean := $(env-clean) $(xargs-n1)
39
40## -----------------------------------------------------------------------
41## Intent: NOP command for targets whose dependencies do all heavy lifting
42## -----------------------------------------------------------------------
43## usage: foo bar tans
44## <tab>$(nop-command)
45## -----------------------------------------------------------------------
46nop-cmd := :
47
48## -----------------------------------------------------------------------
49## Default shell:
50## o set -e enable error checking
51## o set -u report undefined errors
52## o set -o pipefail propogate shell pipeline failures.
53## -----------------------------------------------------------------------
54SHELL ?= /bin/bash
55have-shell-bash := $(filter bash,$(subst /,$(space),$(SHELL)))
56$(if $(have-shell-bash),$(null),\
57 $(eval export SHELL := bash -euo pipefail))
58
59export SHELL ?= bash -euo pipefail
60
61$(if $(DEBUG),$(warning LEAVE))
Joey Armstrong811e9542022-12-25 21:45:27 -050062
63# [EOF]