Hi Budo
I had a look into runcode.pl (perl script).
As i understand (but not tested) if you give different file name separated by semicolon (";") all the file should be take in account.
# @FicFortToCompile=();
foreach $FORTFIC (@FORTRANS)
{
($FORTRAN,$FORAC)=split (/;/,$FORTFIC);
if ($FORTRAN ne "DEFAUT")
{ acquihp($FORTRAN, $FORAC); #keyword "FORTRAN FILE"
ecrire_FicTitrVal("FICHIER FORTRAN","FORTRAN FILE", $FORTRAN);
push (@FicFortToCompile, $FORAC);
}
#We add the Fortran Include File(FORTINC)
foreach $FORTFIC (@FORTINC)
{
($FORTR,$FORAC)=split (/;/,$FORTFIC);
acquihp($FORTR, $FORAC); #keyword "FORTRAN FILE"
ecrire_FicTitrVal("FICHIER FORTRAN INCLU","FORTRAN INCLUDE FILE", $FORTR);
}
}#foreach FORTFIC
$FORTRAN=@FORTRANS[0]; #for the exe local name
($FORTRAN,$TMP)=split (/;/,$FORTRAN); #on the basis of first FORTRAN
Moreover, it seems to me that if you run Telemac and sisyphein coupled mode and if each sterring file has it's own fortran file, both are merged when you run simulation
Hope this helps