(Wii) Improve build script

This commit is contained in:
twinaphex 2013-02-02 03:41:33 +01:00
parent b7d1ab6aea
commit 8781251750

6
dist-scripts/wii-cores.sh Normal file → Executable file
View File

@ -1,11 +1,15 @@
#!/bin/sh
make -C ../ -f Makefile.wii.salamander clean || exit 1
make -C ../ -f Makefile.wii clean || exit 1
make -C ../ -f Makefile.wii.salamander || exit 1
make -C ../ -f Makefile.wii.salamander pkg || exit 1
for f in *_wii.a ; do
name=`echo "$f" | sed 's/\(_libretro\|\)_wii.a$//'`
cp -f "$f" ../libretro_wii.a
make -C ../ -f Makefile.wii -j3 || exit 1
mv -f ../retroarch_wii.dol "$name.dol"
mv -f ../retroarch_wii.dol ../wii/pkg/$name.dol
rm -f ../retroarch_wii.dol ../retroarch_wii.elf ../retroarch_wii.elf.map
done