Update dist-scripts/ngc-cores and dist-scripts/wii-cores.sh

This commit is contained in:
twinaphex 2014-02-19 16:29:13 +01:00
parent f1d2aedbbd
commit d2c47ea600
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
make -C ../ -f Makefile.ngc clean || exit 1
make -C ../ -f Makefile.griffin platform=ngc clean || exit 1
for f in *_ngc.a ; do
name=`echo "$f" | sed 's/\(_libretro\|\)_ngc.a$//'`
@ -13,7 +13,7 @@ for f in *_ngc.a ; do
big_stack="BIG_STACK=1"
fi
cp -f "$f" ../libretro_ngc.a
make -C ../ -f Makefile.ngc $whole_archive $big_stack -j3 || exit 1
make -C ../ -f Makefile.griffin platform=ngc $whole_archive $big_stack -j3 || exit 1
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

@ -1,7 +1,7 @@
#!/bin/sh
make -C ../ -f Makefile.wii.salamander clean || exit 1
make -C ../ -f Makefile.wii clean || exit 1
make -C ../ -f Makefile.griffin platform=wii clean || exit 1
make -C ../ -f Makefile.wii.salamander || exit 1
make -C ../ -f Makefile.wii.salamander pkg || exit 1
@ -17,7 +17,7 @@ for f in *_wii.a ; do
big_stack="BIG_STACK=1"
fi
cp -f "$f" ../libretro_wii.a
make -C ../ -f Makefile.wii $whole_archive $big_stack -j3 || exit 1
make -C ../ -f Makefile.griffin platform=wii $whole_archive $big_stack -j3 || exit 1
mv -f ../retroarch_wii.dol ../wii/pkg/${name}_libretro_wii.dol
rm -f ../retroarch_wii.dol ../retroarch_wii.elf ../retroarch_wii.elf.map
done