blob: 5800750e525c650164093c261f46934e00defb62 (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
|
use File::Basename;
use Cwd;
use FindExt;
my $here = getcwd();
my $perl = $^X;
$here =~ s,/,\\,g;
if ($perl =~ m#^\.\.#)
{
$perl = "$here\\$perl";
}
my $make = shift;
$make .= " ".shift while $ARGV[0]=~/^-/;
my $dep = shift;
my $dmod = -M $dep;
my $dir = shift;
chdir($dir) || die "Cannot cd to $dir\n";
(my $ext = getcwd()) =~ s,/,\\,g;
FindExt::scan_ext($ext);
my @ext = FindExt::extensions();
foreach my $dir (sort @ext)
{
if (chdir("$ext\\$dir"))
{
my $mmod = -M 'Makefile';
if (!(-f 'Makefile') || $mmod > $dmod)
{
print "\nRunning Makefile.PL in $dir\n";
my $code = system($perl,"-I$here\\..\lib",'Makefile.PL','INSTALLDIRS=perl');
warn "$code from $dir's Makefile.PL" if $code;
$mmod = -M 'Makefile';
if ($mmod > $dmod)
{
warn "Makefile $mmod > $dmod ($dep)\n";
}
}
print "\nMaking $dir\n";
system($make);
chdir($here) || die "Cannot cd to $here:$!";
}
else
{
warn "Cannot cd to $ext\\$dir:$!";
}
}
|