Lines Matching refs:comment
1 # $NetBSD: comment.mk,v 1.7 2024/04/23 22:51:28 rillig Exp $
5 # This is a comment.
8 This is a multiline comment.
10 # Another multiline comment \
25 VAR= # This comment makes the variable value empty.
27 # comment.
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.
42 # This comment ends with 2 backslashes. An even number of backslashes does
45 VAR= not part of the comment
46 .if ${VAR} != "not part of the comment"
50 # To escape a comment sign, precede it with a backslash.
57 # To keep the parsing code simple, the "#" in "[#" does not start a comment,
67 This is the last line of the comment.
68 VAR= no comment anymore
69 .if ${VAR} != "no comment anymore"
75 # comment. The '#' is just passed to the shell, like any ordinary character.
76 echo This is a shell comment: # comment
77 # If the '#' were to start a makefile comment, the following shell command
79 echo This is not a shell comment: '# comment'
80 @echo A shell comment can#not start in the middle of a word.