Skip to content
Snippets Groups Projects
Unverified Commit ae337eba authored by Nicolas Tsiftes's avatar Nicolas Tsiftes Committed by GitHub
Browse files

Merge pull request #1781 from pjonsson/override-q

Makefile: allow overriding $(Q)
parents e887dda8 b08060a3
Branches
No related tags found
No related merge requests found
......@@ -276,7 +276,7 @@ ifeq ($(V),1)
TRACE_OBJDUMP =
TRACE_MKDIR =
TRACE_CP =
Q=
Q ?=
else
TRACE_CC = @echo " CC " $<
TRACE_CXX = @echo " CXX " $<
......@@ -287,7 +287,7 @@ else
TRACE_OBJDUMP = @echo " OBJDUMP " $< "-->" $@
TRACE_MKDIR = @echo " MKDIR " $@
TRACE_CP = @echo " CP " $< "-->" $@
Q=@
Q ?= @
endif
### Forward comma-separated list of arbitrary defines to the compiler
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment