alex a9b78e7d47 Progetti Linux
git-svn-id: svn://10.65.10.50/trunk@11985 c028cbd2-c16b-5b4b-a496-9718f37d4682
2004-04-21 21:21:13 +00:00

23 lines
289 B
Plaintext
Executable File

compiler=$1
dstext=$1
srcext=$dstext
if [ $dstext == msk2 ];
then
dstext=msk
fi
if [ $dstext == msk ];
then
srcext=uml
fi
for i in $2*.$srcext
do
n=`basename $i .$srcext`
of=../../exed/$n.$dstext
of1=../../exe/$n.$dstext
./$compiler $i $of
if [ ! -L $of1 ];
then
ln -s $of $of1
fi
done