mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
make: introduce QUIETER
Makes the functionality of being more quiet on build (setting `QQ` to `@`) independently configurable from `RIOT_CI_BUILD`.
This commit is contained in:
parent
3d18f1ad67
commit
04ba724763
@ -275,6 +275,7 @@ else
|
||||
endif
|
||||
|
||||
QUIET ?= 1
|
||||
QUIETER ?= 0
|
||||
|
||||
ifeq ($(QUIET),1)
|
||||
Q=@
|
||||
@ -283,8 +284,6 @@ else
|
||||
Q=
|
||||
endif
|
||||
|
||||
QQ=
|
||||
|
||||
# Set this to 1 to enable code in RIOT that does safety checking
|
||||
# which is not needed in a production environment but helps in the
|
||||
# development process:
|
||||
@ -482,7 +481,13 @@ ifeq ($(RIOT_CI_BUILD),1)
|
||||
RIOTNOLINK:=1
|
||||
endif
|
||||
# be more quiet when building for CI
|
||||
QQ:=@
|
||||
QUIETER=1
|
||||
endif
|
||||
|
||||
ifeq ($(QUIETER),1)
|
||||
QQ=@
|
||||
else
|
||||
QQ=
|
||||
endif
|
||||
|
||||
# if you want to publish the board into the sources as an uppercase #define
|
||||
|
Loading…
Reference in New Issue
Block a user