Skip to content
Snippets Groups Projects
Commit a5603ec1 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

make: rename AD variable to Q

parent 924fff75
No related branches found
No related tags found
No related merge requests found
...@@ -83,10 +83,10 @@ endif ...@@ -83,10 +83,10 @@ endif
QUIET ?= 1 QUIET ?= 1
ifeq ($(QUIET),1) ifeq ($(QUIET),1)
AD=@ Q=@
MAKEFLAGS += --no-print-directory MAKEFLAGS += --no-print-directory
else else
AD= Q=
endif endif
# Fail on warnings. Can be overridden by `make WERROR=0`. # Fail on warnings. Can be overridden by `make WERROR=0`.
......
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 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. export APPLICATION # The application, set in the Makefile which is run by the user.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment