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
|
endif
|
||||||
|
|
||||||
QUIET ?= 1
|
QUIET ?= 1
|
||||||
|
QUIETER ?= 0
|
||||||
|
|
||||||
ifeq ($(QUIET),1)
|
ifeq ($(QUIET),1)
|
||||||
Q=@
|
Q=@
|
||||||
@ -283,8 +284,6 @@ else
|
|||||||
Q=
|
Q=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
QQ=
|
|
||||||
|
|
||||||
# Set this to 1 to enable code in RIOT that does safety checking
|
# 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
|
# which is not needed in a production environment but helps in the
|
||||||
# development process:
|
# development process:
|
||||||
@ -482,7 +481,13 @@ ifeq ($(RIOT_CI_BUILD),1)
|
|||||||
RIOTNOLINK:=1
|
RIOTNOLINK:=1
|
||||||
endif
|
endif
|
||||||
# be more quiet when building for CI
|
# be more quiet when building for CI
|
||||||
QQ:=@
|
QUIETER=1
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(QUIETER),1)
|
||||||
|
QQ=@
|
||||||
|
else
|
||||||
|
QQ=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# if you want to publish the board into the sources as an uppercase #define
|
# if you want to publish the board into the sources as an uppercase #define
|
||||||
|
Loading…
Reference in New Issue
Block a user