mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(Dist-scripts) compiling script for Wii cores
This commit is contained in:
parent
98fa22bd37
commit
fc59c126ba
1 changed files with 11 additions and 0 deletions
11
dist-scripts/wii-cores.sh
Normal file
11
dist-scripts/wii-cores.sh
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
make -C ../ -f Makefile.wii clean || exit 1
|
||||
|
||||
for f in *_wii.a ; do
|
||||
name=`echo "$f" | sed 's/\(_libretro\|\)_wii.a$//'`
|
||||
cp -f "$f" ../libretro.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
|
Loading…
Add table
Reference in a new issue