Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
Joey Armstrong | b3a0641 | 2023-02-06 09:58:58 -0500 | [diff] [blame] | 3 | # Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 4 | # |
| 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 Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 16 | # |
Joey Armstrong | b3a0641 | 2023-02-06 09:58:58 -0500 | [diff] [blame] | 17 | # SPDX-FileCopyrightText: 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 18 | # SPDX-License-Identifier: Apache-2.0 |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 19 | # ----------------------------------------------------------------------- |
| 20 | |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 21 | $(if $(DEBUG),$(warning ENTER)) |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 22 | |
Joey Armstrong | b3a0641 | 2023-02-06 09:58:58 -0500 | [diff] [blame] | 23 | # include makefiles/constants.mk |
| 24 | export dot :=. |
| 25 | export null :=# |
| 26 | export space := $(null) $(null) |
| 27 | export quote-single := $(null)"$(null)#" |
| 28 | export quote-double := $(null)'$(null)#' |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 29 | |
Joey Armstrong | b3a0641 | 2023-02-06 09:58:58 -0500 | [diff] [blame] | 30 | # [DEBUG] make {target} HIDE= |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 31 | HIDE ?= @ |
| 32 | |
Joey Armstrong | 068d645 | 2023-02-01 11:09:18 -0500 | [diff] [blame] | 33 | env-clean ?= /usr/bin/env --ignore-environment |
| 34 | xargs-n1 := xargs -0 -t -n1 --no-run-if-empty |
| 35 | xargs-n1-clean := $(env-clean) $(xargs-n1) |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 36 | |
| 37 | ## ----------------------------------------------------------------------- |
Joey Armstrong | b3a0641 | 2023-02-06 09:58:58 -0500 | [diff] [blame] | 38 | ## Default shell: |
| 39 | ## o set -e enable error checking |
| 40 | ## o set -u report undefined errors |
| 41 | ## o set -o pipefail propogate shell pipeline failures. |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 42 | ## ----------------------------------------------------------------------- |
Joey Armstrong | b3a0641 | 2023-02-06 09:58:58 -0500 | [diff] [blame] | 43 | SHELL ?= /bin/bash |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 44 | have-shell-bash := $(filter bash,$(subst /,$(space),$(SHELL))) |
| 45 | $(if $(have-shell-bash),$(null),\ |
Joey Armstrong | b3a0641 | 2023-02-06 09:58:58 -0500 | [diff] [blame] | 46 | $(eval export SHELL := bash -euo pipefail)) |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 47 | |
Joey Armstrong | 068d645 | 2023-02-01 11:09:18 -0500 | [diff] [blame] | 48 | export SHELL ?= bash -euo pipefail |
| 49 | |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 50 | $(if $(DEBUG),$(warning LEAVE)) |
Joey Armstrong | 28eddda | 2023-01-10 03:09:34 -0500 | [diff] [blame] | 51 | |
| 52 | # [EOF] |