Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | VAR = value |
michael@0 | 2 | VAR2 == value |
michael@0 | 3 | |
michael@0 | 4 | VAR5 = $(NULL) $(NULL) |
michael@0 | 5 | VARC = value # comment |
michael@0 | 6 | |
michael@0 | 7 | $(VAR3) |
michael@0 | 8 | $(VAR4) |
michael@0 | 9 | $(VAR5) |
michael@0 | 10 | |
michael@0 | 11 | VAR6$(VAR5) = val6 |
michael@0 | 12 | |
michael@0 | 13 | all: |
michael@0 | 14 | test "$( VAR)" = "" |
michael@0 | 15 | test "$(VAR2)" = "= value" |
michael@0 | 16 | test "${VAR2}" = "= value" |
michael@0 | 17 | test "$(VAR6 )" = "val6" |
michael@0 | 18 | test "$(VARC)" = "value " |
michael@0 | 19 | @echo TEST-PASS |