Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2024, Arm Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | ifndef common-mk |
| 8 | common-mk := $(lastword $(MAKEFILE_LIST)) |
| 9 | |
| 10 | include $(dir $(common-mk))utilities.mk |
| 11 | |
Boyan Karatotev | ebbb9ac | 2024-10-10 13:37:00 +0100 | [diff] [blame] | 12 | silent := $(call bool,$(findstring s,$(firstword ~$(MAKEFLAGS)))) |
| 13 | verbose := $(if $(silent),,$(call bool,$(V))) |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 14 | |
Boyan Karatotev | ebbb9ac | 2024-10-10 13:37:00 +0100 | [diff] [blame] | 15 | s := @$(if $(or $(verbose),$(silent)),: ) |
| 16 | q := $(if $(verbose),,@) |
Chris Kay | 1870c72 | 2024-05-02 17:52:37 +0000 | [diff] [blame] | 17 | endif |