X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/e2d11959004b18bef392cbc913279eb1b5503b89..1df67d3c22d5dc267368861d75bc10975b0327a4:/include/verbose.mk diff --git a/include/verbose.mk b/include/verbose.mk index b4242f212..6b2d6d044 100644 --- a/include/verbose.mk +++ b/include/verbose.mk @@ -19,17 +19,21 @@ ifeq ("$(origin V)", "command line") endif ifeq ($(IS_TTY),1) - _Y:="\\33[33m"# yellow - _N:="\\33[m"# normal + _Y:="\\033[33m" # yellow + _N:="\\033[m" #normal endif +define MESSAGE + echo -e "$(_Y)$(1)$(_N)" >&3 +endef + ifneq ($(KBUILD_VERBOSE),99) ifeq ($(QUIET),1) $(MAKECMDGOALS): trace trace: FORCE @[ -f "$(MAKECMDGOALS)" ] || { \ [ -z "$${PWD##$$TOPDIR}" ] || DIR=" -C $${PWD##$$TOPDIR/}"; \ - echo -e "$(_Y)make[$$(($(MAKELEVEL)+1))]$$DIR $(MAKECMDGOALS)$(_N)" >&3; \ + $(call MESSAGE, "make[$$(($(MAKELEVEL)+1))]$$DIR $(MAKECMDGOALS)"); \ } else export QUIET:=1