File: 2003_08_08_whitespace.test

package info (click to toggle)
makepp 2.0.98.5-2.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 2,744 kB
  • sloc: perl: 15,893; makefile: 38; javascript: 25; sh: 1
file content (28 lines) | stat: -rw-r--r-- 588 bytes parent folder | download | duplicates (3)
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
###	SPAR <http://www.cpan.org/scripts/>
###	20	644	1067451881	1060385735	Makeppfile
#
# Test comment syntax (bug reported by hgoldman)
#
$(phony all): xyz abc

xyz:
	&echo This is a test. -o $@
# this is a comment
	&echo This is the second part of the test. -o>>$@


#
# Test ifeq syntax with spaces (bug reported by Chris van Engelen):
#
abc:
ifeq (a, a)
	&echo good -o $@
else
	&echo bad -o $@
endif
###	D	755	1067451881	1060385756	answers
###	1	644	1067451881	1060385743	answers/abc
good
###	2	644	1067451881	1060385743	answers/xyz
This is a test.
This is the second part of the test.