File: 2004_03_25_repository_rule.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-- 655 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/>
###	12	644	1080239550	1080240115	Makeppfile
# Test case to make sure that we don't publish files from a repository
# just because they can be built, because that interferes with the same
# file being published when a rule to build it locally is encountered.

x: d/foo.v
	&cp -l $< x

%.v: %.vx
	&cp -l $< $@

foo.vx: bar.vx
	&cp -l $< $@
###	D	755	1080240134	1080240122	d
###	7	644	1080239413	1080239329	d/Makeppfile
repository ..

%.v: %.vx
	&cp -l $< $@

foo.vx: bar.vx
	&cp -l $< $@
###	1	644	1080239531	1080239512	d/bar.vx
OK
###	D	755	1080239550	1080239531	answers
###	1	644	1080239811	1080239531	answers/x
OK