t40c term[] count fix
[minix.git] / usr.bin / make / unit-tests / comment
blob7dd7dbbe28b5d47bff74812a157b63276efbc52f
1 # This is a comment
2 .if ${MACHINE_ARCH} == something
3 FOO=bar
4 .endif
6 #\
7         Multiline comment
9 BAR=# defined
10 FOOBAR= # defined 
12 # This is an escaped comment \
13 that keeps going until the end of this line
15 # Another escaped comment \
16 that \
17 goes \
20 # This is NOT an escaped comment due to the double backslashes \\
21 all: hi foo bar
22         @echo comment testing done
24 hi:
25         @echo comment testing start
27 foo:
28         @echo this is $@
30 bar:
31         @echo This is how a comment looks: '# comment'