Home | History | Annotate | Download | only in unit-tests

Lines Matching refs:the

20 	# triggered the error message "Unassociated shell command".
23 .endif # And after the closing directive.
25 VAR= # This comment makes the variable value empty.
26 # ParseRawLine removes any whitespace before the
32 # The comment does not need to start at the beginning of a word (as in the
36 # The space before the comment is always trimmed.
43 # not count as a line continuation, therefore the variable assignment that
45 VAR= not part of the comment
46 .if ${VAR} != "not part of the comment"
51 VAR= \# # Both in the assignment.
52 .if ${VAR} != "\#" # And in the comparison.
56 # Since 2012-03-24 the modifier :[#] does not need to be escaped.
57 # To keep the parsing code simple, the "#" in "[#" does not start a comment,
58 # regardless of the syntactical context it appears in.
67 This is the last line of the comment.
74 # In the commands associated with a target, the '#' does not start a makefile
75 # comment. The '#' is just passed to the shell, like any ordinary character.
77 # If the '#' were to start a makefile comment, the following shell command
80 @echo A shell comment can#not start in the middle of a word.