Split sf-run-analysis into bit-sized targets, which can run in parallel to reduce the post-build time on a platform build.
#!perl -w
use strict;
my @includefiles = glob "*_includefile.txt";
foreach (@includefiles)
{
my $includefilename=$_;
if (m/(.*)(_includefile.txt)/) {
my $zipfilename = $1.".zip";
system("7za a -tzip -i@".$includefilename . " " .$zipfilename);
}
}