]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/bmake/unit-tests/comment
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / bmake / unit-tests / comment
1 # This is a comment
2 .if ${MACHINE_ARCH} == something
3 FOO=bar
4 .endif
5
6 #\
7         Multiline comment
8
9 BAR=# defined
10 FOOBAR= # defined 
11
12 # This is an escaped comment \
13 that keeps going until the end of this line
14
15 # Another escaped comment \
16 that \
17 goes \
18 on
19
20 # This is NOT an escaped comment due to the double backslashes \\
21 all: hi foo bar
22         @echo comment testing done
23
24 hi:
25         @echo comment testing start
26
27 foo:
28         @echo this is $@
29
30 bar:
31         @echo This is how a comment looks: '# comment'