RetroArch/dist-scripts/wii-cores.sh

12 lines
333 B
Bash
Raw Normal View History

#!/bin/sh
make -C ../ -f Makefile.wii clean || exit 1
for f in *_wii.a ; do
name=`echo "$f" | sed 's/\(_libretro\|\)_wii.a$//'`
2013-02-01 22:29:04 +00:00
cp -f "$f" ../libretro_wii.a
make -C ../ -f Makefile.wii -j3 || exit 1
mv -f ../retroarch_wii.dol "$name.dol"
rm -f ../retroarch_wii.dol ../retroarch_wii.elf ../retroarch_wii.elf.map
done