1 echo '3 spaces'; false 2 3 spaces 3 4 *** Failed target: fail-spaces 5 *** Failed commands: 6 echo '3 spaces'; false 7 *** [fail-spaces] Error code 1 8 9 make: stopped in unit-tests 10 echo \ indented; false 11 indented 12 13 *** Failed target: fail-escaped-space 14 *** Failed commands: 15 echo \ indented; false 16 *** [fail-escaped-space] Error code 1 17 18 make: stopped in unit-tests 19 echo 'line1 20 line2'; false 21 line1 22 line2 23 24 *** Failed target: fail-newline 25 *** Failed commands: 26 echo 'line1${.newline}line2'; false 27 => echo 'line1 28 line2'; false 29 *** [fail-newline] Error code 1 30 31 make: stopped in unit-tests 32 echo 'line1 line2'; false 33 line1 line2 34 35 *** Failed target: fail-multiline 36 *** Failed commands: 37 echo 'line1 line2'; false 38 *** [fail-multiline] Error code 1 39 40 make: stopped in unit-tests 41 echo 'word1' 'word2'; false 42 word1 word2 43 44 *** Failed target: fail-multiline-intention 45 *** Failed commands: 46 echo 'word1' 'word2'; false 47 *** [fail-multiline-intention] Error code 1 48 49 make: stopped in unit-tests 50 51 *** Failed target: fail-vars 52 *** Failed commands: 53 @${COMPILE_C} ${COMPILE_C_FLAGS} 54 => @false c-compiler flag1 -macro="several words" 55 *** [fail-vars] Error code 1 56 57 make: stopped in unit-tests 58 exit status 1 59