File: 2005_01_17_runtime.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-- 724 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/>
###	1	775	1168790726	1168790726	is_relevant.pl
-x 'a';				# Can't set this on VFAT, but may be the default.
###	3	775	1168790818	1168790819	makepp_test_script.pl
makepp;
c_cp x => 'x-1';
makepp 'C=12';
###	14	775	1168790874	1168789807	Makeppfile
runtime $(patsubst %.m, %.n, a), b
runtime b, c

C := 1

$(phony default): x

x:
	./a > x

c:
	&echo "#!/bin/sh" -o $@
	&echo "echo $(C)" -o>>$@
	-&chmod 755 $@		# Can't set this on VFAT.
###	3	775	1168789807	1168789807	a
#!/bin/sh

exec ./b "$@"
###	3	775	1168789807	1168789807	b
#!/bin/sh

exec ./c "$@"
###	D	775	1168789807	1168789807	answers/
###	1	775	1168789807	1168789807	answers/x
12
###	1	775	1168789807	1168789807	answers/x-1
1