1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

make: rename AD variable to Q

This commit is contained in:
Kaspar Schleiser 2016-12-17 01:16:07 +01:00
parent 924fff7513
commit a5603ec1b3
2 changed files with 3 additions and 3 deletions

View File

@ -83,10 +83,10 @@ endif
QUIET ?= 1
ifeq ($(QUIET),1)
AD=@
Q=@
MAKEFLAGS += --no-print-directory
else
AD=
Q=
endif
# Fail on warnings. Can be overridden by `make WERROR=0`.

View File

@ -1,4 +1,4 @@
export AD # Used in front of Makefile lines to suppress the printing of the command if user did not opt-in to see them.
export Q # Used in front of Makefile lines to suppress the printing of the command if user did not opt-in to see them.
export QUIET # The parameter to use whether to show verbose makefile commands or not.
export APPLICATION # The application, set in the Makefile which is run by the user.