File: double_colon.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 (35 lines) | stat: -rw-r--r-- 566 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
29
30
31
32
33
34
35
###	SPAR <http://www.cpan.org/scripts/>
###	24	644	1164354575	1060925871	Makeppfile
#
# A test of our hack to support the dastardly double colon syntax (often
# used by makefiles from MakeMaker).
#

$(phony all):: a

a:: c
	&cat c -o $@

b :: d
	&cat d -o $@

a :: d
	&cat d -o>>$@
	# Can't use $< here--would be c, not d!!!

b :: c
	&cat c -o>>$@

c d :
	&echo $@ -o $@

all:: b
###	D	755	1067451882	1060925891	answers
###	2	644	1067451882	1060925879	answers/a
c
d
###	2	644	1067451882	1060925879	answers/b
d
c
###	1	644	1067451882	1190056049	answers/n_files
4 1 0