File: comment

package info (click to toggle)
pmake 1.111-3.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,052 kB
  • sloc: ansic: 14,169; exp: 230; makefile: 132; sh: 59
file content (28 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This is a comment
.if ${MACHINE_ARCH} == something
FOO=bar
.endif

#\
	Multiline comment

BAR=# defined
FOOBAR= # defined 

# This is an escaped comment \
that keeps going until the end of this line

# Another escaped comment \
that \
goes \
on

# This is NOT an escaped comment due to the double backslashes \\
all: foo bar
	@echo comment testing done

foo:
	@echo this is $@

bar:
	@echo This is how a comment looks: '# comment'