blob: ce718625fe630d748e8cf5f92a21249a9236d080 [file] [log] [blame]
Joey Armstronge6cdd8e2022-12-29 11:58:15 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrongc2277652023-01-11 17:41:36 -05003# Copyright 2022-2023 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 Armstronge6cdd8e2022-12-29 11:58:15 -050016# -----------------------------------------------------------------------
17
Joey Armstronge66eaaf2023-01-15 18:58:52 -050018$(if $(DEBUG),$(warning ENTER))
19
20##-------------------##
21##---] GLOBALS [---##
22##-------------------##
Joey Armstrongc2277652023-01-11 17:41:36 -050023null :=#
24space :=$(null) $(null)
25dot :=.
Joey Armstronge66eaaf2023-01-15 18:58:52 -050026
Joey Armstrongc2277652023-01-11 17:41:36 -050027HIDE ?=@
Joey Armstronge6cdd8e2022-12-29 11:58:15 -050028
Joey Armstronge66eaaf2023-01-15 18:58:52 -050029env-clean = /usr/bin/env --ignore-environment
30xargs-n1 := xargs -0 -t -n1 --no-run-if-empty
31
32have-shell-bash := $(filter bash,$(subst /,$(space),$(SHELL)))
33$(if $(have-shell-bash),$(null),\
34 $(eval export SHELL := /bin/bash -euo pipefail))
35
36$(if $(DEBUG),$(warning LEAVE))
Joey Armstronge6cdd8e2022-12-29 11:58:15 -050037
38# [EOF]