blob: 4e3e24d7a66ec4d72f4a0a58a97886015a091823 [file] [log] [blame]
Joey Armstrong28eddda2023-01-10 03:09:34 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrongb3a06412023-02-06 09:58:58 -05003# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong28eddda2023-01-10 03:09:34 -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 Armstrong3f575f72023-01-15 23:49:19 -050016#
Joey Armstrongb3a06412023-02-06 09:58:58 -050017# SPDX-FileCopyrightText: 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong3f575f72023-01-15 23:49:19 -050018# SPDX-License-Identifier: Apache-2.0
Joey Armstrong28eddda2023-01-10 03:09:34 -050019# -----------------------------------------------------------------------
20
Joey Armstrong3f575f72023-01-15 23:49:19 -050021$(if $(DEBUG),$(warning ENTER))
Joey Armstrong28eddda2023-01-10 03:09:34 -050022
Joey Armstrongb3a06412023-02-06 09:58:58 -050023# include makefiles/constants.mk
24export dot :=.
25export null :=#
26export space := $(null) $(null)
27export quote-single := $(null)"$(null)#"
28export quote-double := $(null)'$(null)#'
Joey Armstrong3f575f72023-01-15 23:49:19 -050029
Joey Armstrongb3a06412023-02-06 09:58:58 -050030# [DEBUG] make {target} HIDE=
Joey Armstrong3f575f72023-01-15 23:49:19 -050031HIDE ?= @
32
33env-clean = /usr/bin/env --ignore-environment
34xargs-n1 := xargs -0 -t -n1 --no-run-if-empty
35
36## -----------------------------------------------------------------------
Joey Armstrongb3a06412023-02-06 09:58:58 -050037## Default shell:
38## o set -e enable error checking
39## o set -u report undefined errors
40## o set -o pipefail propogate shell pipeline failures.
Joey Armstrong3f575f72023-01-15 23:49:19 -050041## -----------------------------------------------------------------------
Joey Armstrongb3a06412023-02-06 09:58:58 -050042SHELL ?= /bin/bash
Joey Armstrong3f575f72023-01-15 23:49:19 -050043have-shell-bash := $(filter bash,$(subst /,$(space),$(SHELL)))
44$(if $(have-shell-bash),$(null),\
Joey Armstrongb3a06412023-02-06 09:58:58 -050045 $(eval export SHELL := bash -euo pipefail))
Joey Armstrong3f575f72023-01-15 23:49:19 -050046
47$(if $(DEBUG),$(warning LEAVE))
Joey Armstrong28eddda2023-01-10 03:09:34 -050048
49# [EOF]