(RARCH_CONSOLE) Append _libretro_{platform} to static core executables

This commit is contained in:
twinaphex 2013-11-02 04:36:30 +01:00
parent ee89f3b711
commit ec27e9cc88
6 changed files with 7 additions and 7 deletions

View file

@ -14,6 +14,6 @@ for f in *_ngc.a ; do
fi
cp -f "$f" ../libretro_ngc.a
make -C ../ -f Makefile.ngc $whole_archive $big_stack -j3 || exit 1
mv -f ../retroarch_ngc.dol ../ngc/pkg/$name.dol
mv -f ../retroarch_ngc.dol ../ngc/pkg/${name}_libretro_ngc.dol
rm -f ../retroarch_ngc.dol ../retroarch_ngc.elf ../retroarch_ngc.elf.map
done

View file

@ -20,7 +20,7 @@ for f in *_ps3.a ; do
cp -f "$f" ../libretro_ps3.a
make -C ../ -f Makefile.ps3 $whole_archive -j3 || exit 1
make_self_wc ../retroarch_ps3.elf ../CORE.SELF
mv -f ../CORE.SELF ../ps3/pkg/USRDIR/cores/"$name.SELF"
mv -f ../CORE.SELF ../ps3/pkg/USRDIR/cores/"${name}_libretro_ps3.SELF"
rm -f ../retroarch_ps3.elf ../retroarch_ps3.self ../CORE.SELF
done

View file

@ -21,7 +21,7 @@ for f in *_ps3.a ; do
cp -f "$f" ../libretro_ps3.a
make -C ../ -f Makefile.ps3 $whole_archive -j3 || exit 1
$MAKE_FSELF_NPDRM ../retroarch_ps3.elf ../CORE.SELF
mv -f ../CORE.SELF ../ps3/pkg/USRDIR/cores/"$name.SELF"
mv -f ../CORE.SELF ../ps3/pkg/USRDIR/cores/"${name}_libretro_ps3.SELF"
rm -f ../retroarch_ps3.elf ../retroarch_ps3.self ../CORE.SELF
done

View file

@ -18,6 +18,6 @@ for f in *_wii.a ; do
fi
cp -f "$f" ../libretro_wii.a
make -C ../ -f Makefile.wii $whole_archive $big_stack -j3 || exit 1
mv -f ../retroarch_wii.dol ../wii/pkg/$name.dol
mv -f ../retroarch_wii.dol ../wii/pkg/${name}_libretro_wii.dol
rm -f ../retroarch_wii.dol ../retroarch_wii.elf ../retroarch_wii.elf.map
done

View file

@ -16,9 +16,9 @@ for f in *_xdk.lib ; do
echo $name
if [ $name = "tyrquake" ] || [ $name = "genesis_plus_gx" ] ; then
cp -f "$f" ../msvc/RetroArch-Xbox1/Release_LTCG_BigStack/libretro_xdk.lib
cmd.exe /k xdk1_env_bigstack.bat $name
cmd.exe /k xdk1_env_bigstack.bat ${name}_libretro_xdk1
else
cp -f "$f" ../msvc/RetroArch-Xbox1/Release_LTCG/libretro_xdk.lib
cmd.exe /k xdk1_env.bat $name
cmd.exe /k xdk1_env.bat ${name}_libretro_xdk1
fi
done

View file

@ -13,5 +13,5 @@ for f in *_xdk360.lib ; do
name=`echo "$f" | sed 's/\(_libretro\|\)_xdk360.lib$//'`
echo $name
cp -f "$f" ../msvc/RetroArch-360/Release_LTCG/libretro_xdk360.lib
cmd.exe /k xdk360_env.bat $name
cmd.exe /k xdk360_env.bat ${name}_libretro_xdk360
done