File: comment

package info (click to toggle)
bmake 20140620-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,784 kB
  • ctags: 3,362
  • sloc: ansic: 17,315; sh: 842; python: 419; exp: 379; makefile: 280; perl: 55
file content (31 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (5)
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
29
30
31
# 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: hi foo bar
	@echo comment testing done

hi:
	@echo comment testing start

foo:
	@echo this is $@

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