Add merge of RnD binaries into epoc32 tree as HLM target. Also create empty sources.csv and baseline.txt files if source sync/get baseline is disabled.
#!perl -w
use strict;
# Assume that all rnd repositories are delivered onto the build machine in \rnd\category\name\epoc32\...
my @rndRepositories = glob "/rnd/*/*";
foreach (@rndRepositories)
{
s{/}{\\}g;
system("xcopy /Q/C/I/Y/E $_\\epoc32 \\epoc32 > nul:");
}