### SPAR <http://www.cpan.org/scripts/>
### 29 644 1164352699 1404837541 Makeppfile
#
# This is a test of lines that specify extra dependencies but no rules.
#
.PHONY: all
# Try some crazy indentation (broken before 2014-07-08)
all: a
a: c d
a: b
&echo a -o $@
&cat $^ -o>>$@
#
# Test out this obfuscated idiom for changing two files at once with
# one command:
#
b: c
c:
&echo c -o c
&echo b -o b
&cat d -o>>c
c: $(( # Multiline list with comment, after rule.
d))
d:
&echo $@ -o $@
### D 755 1067451875 965751450 answers
### 5 644 1067451875 965751410 answers/a
a
b
c
d
d
### 1 644 1067451875 965751410 answers/b
b
### 2 644 1067451875 965751410 answers/c
c
d
### 1 644 1067451875 965751410 answers/d
d
### 1 644 1067451875 1190053836 answers/n_files
3 1 0