comparison Makefile.common @ 107:2b30217a3c39 default tip

Fix verbose build echos.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 29 Feb 2024 21:48:47 +0200
parents 10adf567b6f2
children
comparison
equal deleted inserted replaced
106:f8880b75524b 107:2b30217a3c39
44 ### Functions and compilation/link commands 44 ### Functions and compilation/link commands
45 ### 45 ###
46 ifneq ($(V),1) 46 ifneq ($(V),1)
47 DO_CMD=/bin/echo -E " $(1) $(2)" && $(3) 47 DO_CMD=/bin/echo -E " $(1) $(2)" && $(3)
48 else 48 else
49 DO_CMD=/bin/echo -E $(3) && $(3) 49 DO_CMD=/bin/echo -E "$(3)" && $(3)
50 endif 50 endif
51 DO_MKDIR=if test ! -z "$(1)" -a ! -d "$(1)"; then /bin/echo -E " MKDIR $(1)"; mkdir -p "$(1)"; fi 51 DO_MKDIR=if test ! -z "$(1)" -a ! -d "$(1)"; then /bin/echo -E " MKDIR $(1)"; mkdir -p "$(1)"; fi
52 52
53 53
54 COMPILE_C_OBJ = \ 54 COMPILE_C_OBJ = \