Lines Matching full:var
1 # $NetBSD: var-op-sunsh.mk,v 1.10 2022/02/09 21:09:24 rillig Exp $
11 VAR:sh= echo colon-sh
12 .if ${VAR} != "colon-sh"
18 VAR :sh = echo colon-sh-spaced
19 .if ${VAR} != "colon-sh-spaced"
28 # 'VAR:shell', using the '=' assignment operator.
29 VAR:shell= echo colon-shell
42 VAR:shoe:shore= echo two-colons
57 VAR.${:Uecho 123:sh}= ok-123
58 .if ${VAR.123} != "ok-123"
65 VAR.${:U echo\:shell}= ok-shell
66 .if ${VAR.${:U echo\:shell}} != "ok-shell"
72 VAR.key:shift= Shift
91 VAR :sh :sh :sh :sh= echo multiple
92 .if ${VAR} != "multiple"
104 VAR :sh(Put a comment here)= comment in parentheses
105 .if ${VAR} != "comment in parentheses"
113 VAR :sh{Put}((((a}{comment}}}}{here}= comment in braces
114 .if ${VAR} != "comment in braces"
123 VAR= one
124 VAR :sh += echo two
125 .if ${VAR} != "one echo two"
126 . error ${VAR}
135 VAR :sh != echo echo echo echo spaces-around
136 .if ${VAR} != "echo echo echo spaces-around"
137 . error ${VAR}
144 VAR:sh != echo echo echo echo space-after