###	SPAR <http://www.cpan.org/scripts/>
###	1	755	1118558856	1212336975	.makepprc
--rm-stale
###	29	644	1143572904	1234386298	Makeppfile
#
# Test making files in directories that don't exist yet.
#

.PHONY: all

perl_begin
  # Make sure that '/' gets parsed properly (not as ''!)
  use Mpp::File;
  die unless file_info('/') == file_info('/.');
perl_end

all: a b c

%: subdir/%
	&echo $@ -o $@
	&cat $< -o>>$@

subdir/$( a b c): subdir
	&echo $@ -o $@

subdir:
	&mkdir $@

subdir2/Makeppfile:
	&mkdir $(dir $@)
	&touch $@

load_makefile subdir2/Makeppfile
###	D	755	1067451874	965619410	answers
###	2	644	1067451874	965619363	answers/a
a
subdir/a
###	2	644	1067451874	965619363	answers/b
b
subdir/b
###	2	644	1067451874	965619363	answers/c
c
subdir/c
###	1	644	1067451874	1190053826	answers/n_files
8 1 0