2008-10-14 20:44:49 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
2019-10-28 04:54:52 +00:00
|
|
|
$version="3.15";
|
2008-10-14 20:44:49 +00:00
|
|
|
|
2010-06-03 20:50:07 +00:00
|
|
|
require "tools/builds.pm";
|
|
|
|
|
2008-10-14 20:44:49 +00:00
|
|
|
my $verbose;
|
|
|
|
if($ARGV[0] eq "-v") {
|
|
|
|
$verbose =1;
|
|
|
|
shift @ARGV;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $doonly;
|
|
|
|
if($ARGV[0]) {
|
|
|
|
$doonly = $ARGV[0];
|
|
|
|
print "only build $doonly\n" if($verbose);
|
|
|
|
}
|
|
|
|
|
|
|
|
# made once for all targets
|
|
|
|
sub runone {
|
2009-12-07 12:19:08 +00:00
|
|
|
my ($dir)=@_;
|
2008-10-14 20:44:49 +00:00
|
|
|
my $a;
|
|
|
|
|
|
|
|
if($doonly && ($doonly ne $dir)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mkdir "buildm-$dir";
|
|
|
|
chdir "buildm-$dir";
|
|
|
|
print "Build in buildm-$dir\n" if($verbose);
|
|
|
|
|
|
|
|
# build the manual(s)
|
2009-12-07 12:19:08 +00:00
|
|
|
$a = buildit($dir);
|
2008-10-14 20:44:49 +00:00
|
|
|
|
|
|
|
chdir "..";
|
|
|
|
|
|
|
|
my $o="buildm-$dir/manual/rockbox-build.pdf";
|
|
|
|
if (-f $o) {
|
|
|
|
my $newo="output/rockbox-$dir-$version.pdf";
|
|
|
|
system("mv $o $newo");
|
|
|
|
print "moved $o to $newo\n" if($verbose);
|
|
|
|
}
|
|
|
|
|
|
|
|
$o="buildm-$dir/rockbox-manual.zip";
|
|
|
|
if (-f $o) {
|
|
|
|
my $newo="output/rockbox-$dir-$version-html.zip";
|
|
|
|
system("mv $o $newo");
|
|
|
|
print "moved $o to $newo\n" if($verbose);
|
|
|
|
}
|
|
|
|
|
|
|
|
print "remove all contents in buildm-$dir\n" if($verbose);
|
|
|
|
system("rm -rf buildm-$dir");
|
|
|
|
|
|
|
|
return $a;
|
|
|
|
};
|
|
|
|
|
|
|
|
sub buildit {
|
2009-12-07 12:19:08 +00:00
|
|
|
my ($target)=@_;
|
2008-10-14 20:44:49 +00:00
|
|
|
|
|
|
|
`rm -rf * >/dev/null 2>&1`;
|
|
|
|
|
2010-06-03 21:04:02 +00:00
|
|
|
my $c = "../tools/configure --target=$target --type=m --ram=0";
|
2008-10-14 20:44:49 +00:00
|
|
|
|
|
|
|
print "C: $c\n" if($verbose);
|
|
|
|
`$c`;
|
|
|
|
|
|
|
|
print "Run 'make'\n" if($verbose);
|
2011-12-07 17:59:11 +00:00
|
|
|
`make manual VERSION=$version 2>/dev/null`;
|
2008-10-14 20:44:49 +00:00
|
|
|
|
|
|
|
print "Run 'make manual-zip'\n" if($verbose);
|
2011-12-07 17:59:11 +00:00
|
|
|
`make manual-zip VERSION=$version 2>/dev/null`;
|
2008-10-14 20:44:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# run make in tools first to make sure they're up-to-date
|
|
|
|
`(cd tools && make ) >/dev/null 2>&1`;
|
|
|
|
|
2009-12-07 12:19:08 +00:00
|
|
|
for my $b (&stablebuilds) {
|
2010-06-03 20:56:24 +00:00
|
|
|
next if (length($builds{$b}{configname}) > 0); # no variants
|
2009-12-07 12:19:08 +00:00
|
|
|
|
|
|
|
runone($b);
|
|
|
|
}
|