blob: 1b84ed87668ca435877c1c8443644e30b093a5f0 [file] [log] [blame]
Joey Armstronge6cdd8e2022-12-29 11:58:15 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong25589d82024-01-02 22:31:35 -05003# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstronge6cdd8e2022-12-29 11:58:15 -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 Armstrong761579c2023-05-08 11:59:57 -040016#
17# SPDX-FileCopyrightText: 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
18# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
20# https://gerrit.opencord.org/plugins/gitiles/onf-make
21# ONF.makefile.version = 1.0
Joey Armstronge6cdd8e2022-12-29 11:58:15 -050022# -----------------------------------------------------------------------
23
Joey Armstronge66eaaf2023-01-15 18:58:52 -050024$(if $(DEBUG),$(warning ENTER))
25
Joey Armstrong761579c2023-05-08 11:59:57 -040026# include makefiles/constants.mk
27export dot :=.
28export null :=#
29export space := $(null) $(null)
30export quote-single := $(null)'$(null)#'
31export quote-double := $(null)"$(null)#"
Joey Armstronge66eaaf2023-01-15 18:58:52 -050032
Joey Armstrong761579c2023-05-08 11:59:57 -040033# [DEBUG] make {target} HIDE=
Joey Armstrong1ff23e92023-07-13 16:24:32 -040034HIDE ?= @
Joey Armstronge6cdd8e2022-12-29 11:58:15 -050035
Joey Armstrong761579c2023-05-08 11:59:57 -040036env-clean ?= /usr/bin/env --ignore-environment
37xargs-n1 := xargs -0 -t -n1 --no-run-if-empty
38xargs-n1-clean := $(env-clean) $(xargs-n1)
Joey Armstronge66eaaf2023-01-15 18:58:52 -050039
Joey Armstrong761579c2023-05-08 11:59:57 -040040## -----------------------------------------------------------------------
Joey Armstrong1ff23e92023-07-13 16:24:32 -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 Armstrong761579c2023-05-08 11:59:57 -040049## 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
Joey Armstronge66eaaf2023-01-15 18:58:52 -050055have-shell-bash := $(filter bash,$(subst /,$(space),$(SHELL)))
56$(if $(have-shell-bash),$(null),\
Joey Armstrong761579c2023-05-08 11:59:57 -040057 $(eval export SHELL := bash -euo pipefail))
58
59export SHELL ?= bash -euo pipefail
Joey Armstronge66eaaf2023-01-15 18:58:52 -050060
61$(if $(DEBUG),$(warning LEAVE))
Joey Armstronge6cdd8e2022-12-29 11:58:15 -050062
63# [EOF]