comparison Makefile.common @ 310:8541509ff8a0 default tip

Fix verbose build echos.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 29 Feb 2024 21:49:20 +0200
parents 18bef142108d
children
comparison
equal deleted inserted replaced
309:18bef142108d 310:8541509ff8a0
105 ### Functions and compilation/link commands 105 ### Functions and compilation/link commands
106 ### 106 ###
107 ifneq ($(V),1) 107 ifneq ($(V),1)
108 DO_CMD=/bin/echo -E " $(1) $(2)" && $(3) 108 DO_CMD=/bin/echo -E " $(1) $(2)" && $(3)
109 else 109 else
110 DO_CMD=/bin/echo -E $(3) && $(3) 110 DO_CMD=/bin/echo -E "$(3)" && $(3)
111 endif 111 endif
112 DO_MKDIR=if test ! -z "$(1)" -a ! -d "$(1)"; then /bin/echo -E " MKDIR $(1)"; mkdir -p "$(1)"; fi 112 DO_MKDIR=if test ! -z "$(1)" -a ! -d "$(1)"; then /bin/echo -E " MKDIR $(1)"; mkdir -p "$(1)"; fi
113 113
114 114
115 COMPILE_C_OBJ = \ 115 COMPILE_C_OBJ = \