blob: 8961b3a47c957e1fc44daae13d3d19d9ae91eec3 [file] [log] [blame]
Joey Armstrong36592e32022-11-28 09:00:28 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong8388b7f2023-01-23 11:20:04 -05003# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong36592e32022-11-28 09:00:28 -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 Armstrong4de98b72023-02-09 14:51:38 -050016#
17# SPDX-FileCopyrightText: 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
18# SPDX-License-Identifier: Apache-2.0
Joey Armstrong36592e32022-11-28 09:00:28 -050019# -----------------------------------------------------------------------
Joey Armstrong64b82492023-06-01 17:34:39 -040020# https://gerrit.opencord.org/plugins/gitiles/onf-make
21# ONF.makefile.version = 1.0
22# -----------------------------------------------------------------------
Joey Armstrong36592e32022-11-28 09:00:28 -050023
Joey Armstrong4de98b72023-02-09 14:51:38 -050024$(if $(DEBUG),$(warning ENTER))
Joey Armstrong36592e32022-11-28 09:00:28 -050025
Joey Armstrong4de98b72023-02-09 14:51:38 -050026# include makefiles/constants.mk
27export dot :=.
28export null :=#
29export space := $(null) $(null)
Joey Armstrong64b82492023-06-01 17:34:39 -040030export quote-single := $(null)'$(null)#'
31export quote-double := $(null)"$(null)#"
Joey Armstrong4de98b72023-02-09 14:51:38 -050032
33# [DEBUG] make {target} HIDE=
Joey Armstrong64b82492023-06-01 17:34:39 -040034HIDE ?= @
Joey Armstrong4de98b72023-02-09 14:51:38 -050035
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## -----------------------------------------------------------------------
Joey Armstrong64b82492023-06-01 17:34:39 -040041## 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## -----------------------------------------------------------------------
Joey Armstrong4de98b72023-02-09 14:51:38 -050049## 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 Armstrong36592e32022-11-28 09:00:28 -050062
63# [EOF]