1236769Sobrien# This is a comment
2236769Sobrien.if ${MACHINE_ARCH} == something
3236769SobrienFOO=bar
4236769Sobrien.endif
5236769Sobrien
6236769Sobrien#\
7236769Sobrien	Multiline comment
8236769Sobrien
9236769SobrienBAR=# defined
10236769SobrienFOOBAR= # defined 
11236769Sobrien
12236769Sobrien# This is an escaped comment \
13236769Sobrienthat keeps going until the end of this line
14236769Sobrien
15236769Sobrien# Another escaped comment \
16236769Sobrienthat \
17236769Sobriengoes \
18236769Sobrienon
19236769Sobrien
20236769Sobrien# This is NOT an escaped comment due to the double backslashes \\
21236769Sobrienall: hi foo bar
22236769Sobrien	@echo comment testing done
23236769Sobrien
24236769Sobrienhi:
25236769Sobrien	@echo comment testing start
26236769Sobrien
27236769Sobrienfoo:
28236769Sobrien	@echo this is $@
29236769Sobrien
30236769Sobrienbar:
31236769Sobrien	@echo This is how a comment looks: '# comment'
32