blob: dd23ec391e00c4e907a14788176a00a10b3c54f7 [file] [log] [blame]
Joey Armstrong9fc4fa82022-12-19 18:38:40 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong903c69d2024-02-01 19:46:39 -05003# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong9fc4fa82022-12-19 18:38:40 -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.
16#
Joey Armstrong903c69d2024-02-01 19:46:39 -050017# SPDX-FileCopyrightText: 2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong9fc4fa82022-12-19 18:38:40 -050018# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
Joey Armstrongf863afb2023-03-29 12:08:38 -040020# ONF.makefile.version = 1.0
21# -----------------------------------------------------------------------
Joey Armstrong9fc4fa82022-12-19 18:38:40 -050022
Joey Armstrongf863afb2023-03-29 12:08:38 -040023$(if $(DEBUG),$(warning ENTER))
Joey Armstrong9fc4fa82022-12-19 18:38:40 -050024
Joey Armstrongf863afb2023-03-29 12:08:38 -040025# include makefiles/constants.mk
26export dot :=.
27export null :=#
28export space := $(null) $(null)
Joey Armstrong173f2552023-04-04 08:44:21 -040029export quote-single := $(null)'$(null)# colorization-closing-quote(')
30export quote-double := $(null)"$(null)# colorization-closing-quote(")
Joey Armstrongf863afb2023-03-29 12:08:38 -040031
32# [DEBUG] make {target} HIDE=
Joey Armstrong9fc4fa82022-12-19 18:38:40 -050033HIDE ?= @
Joey Armstrong9fc4fa82022-12-19 18:38:40 -050034
Joey Armstrongf863afb2023-03-29 12:08:38 -040035env-clean ?= /usr/bin/env --ignore-environment
36xargs-n1 := xargs -0 -t -n1 --no-run-if-empty
37xargs-n1-clean := $(env-clean) $(xargs-n1)
Joey Armstrong9fc4fa82022-12-19 18:38:40 -050038
Joey Armstrongf863afb2023-03-29 12:08:38 -040039## -----------------------------------------------------------------------
40## Default shell:
41## o set -e enable error checking
42## o set -u report undefined errors
43## o set -o pipefail propogate shell pipeline failures.
44## -----------------------------------------------------------------------
45SHELL ?= /bin/bash
46have-shell-bash := $(filter bash,$(subst /,$(space),$(SHELL)))
47$(if $(have-shell-bash),$(null),\
48 $(eval export SHELL := bash -euo pipefail))
49
50export SHELL ?= bash -euo pipefail
51
52$(if $(DEBUG),$(warning LEAVE))
Joey Armstrong9fc4fa82022-12-19 18:38:40 -050053
54# [EOF]