Merge pull request #305 from frtos-wpan/pull-verbosity
Makefile.include: add verbosity control (make V=1 for old behaviour)
This commit is contained in:
commit
231e772118
|
@ -131,6 +131,21 @@ ifdef PLATFORMAPPS
|
||||||
APPDS += $(PLATFORMAPPDS)
|
APPDS += $(PLATFORMAPPDS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
### Verbosity control. Use make V=1 to get verbose builds.
|
||||||
|
|
||||||
|
CC_normal := $(CC)
|
||||||
|
AR_normal := $(AR)
|
||||||
|
|
||||||
|
CC_quiet = @echo " CC " $< && $(CC_normal)
|
||||||
|
AR_quiet = @echo " AR " $@ && $(AR_normal)
|
||||||
|
|
||||||
|
ifeq ($(V),1)
|
||||||
|
CC = $(CC_normal)
|
||||||
|
AR = $(AR_normal)
|
||||||
|
else
|
||||||
|
CC = $(CC_quiet)
|
||||||
|
AR = $(AR_quiet)
|
||||||
|
endif
|
||||||
|
|
||||||
### Forward comma-separated list of arbitrary defines to the compiler
|
### Forward comma-separated list of arbitrary defines to the compiler
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue