mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-13 21:36:07 -05:00
24 lines
697 B
Bash
24 lines
697 B
Bash
#!/bin/sh
|
|
|
|
export DEVKITPPC=$TOOLPATH/devkitPPC
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Install and build the gamecube crt and libogc
|
|
#---------------------------------------------------------------------------------
|
|
|
|
echo "installing specs ..."
|
|
cp `pwd`/dkppc/crtls/gcn* $DEVKITPPC/$target/lib/
|
|
#---------------------------------------------------------------------------------
|
|
# copy base rulesets
|
|
#---------------------------------------------------------------------------------
|
|
cp `pwd`/dkppc/rules/gamecube_rules dkppc/rules/base_rules $DEVKITPPC
|
|
|
|
echo "building libogc ..."
|
|
cd $LIBOGC_SRCDIR
|
|
$MAKE
|
|
echo "installing libogc ..."
|
|
$MAKE install
|
|
|
|
|
|
|