mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-21 17:44:41 -05:00
26 lines
890 B
Bash
Executable File
26 lines
890 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# set env variables
|
|
#---------------------------------------------------------------------------------
|
|
export DEVKITPRO=$TOOLPATH
|
|
export DEVKITPPC=$DEVKITPRO/devkitPPC
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Install the rules files
|
|
#---------------------------------------------------------------------------------
|
|
cd $BUILDDIR
|
|
|
|
tar -xvf $SRCDIR/devkitppc-rules-$DKPPC_RULES_VER.tar.gz
|
|
cd devkitppc-rules-$DKPPC_RULES_VER
|
|
$MAKE install
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Install the linkscripts
|
|
#---------------------------------------------------------------------------------
|
|
cd $BUILDDIR
|
|
|
|
tar -xvf $SRCDIR/devkitppc-crtls-$DKPPC_CRTLS_VER.tar.gz
|
|
cd devkitppc-crtls-$DKPPC_CRTLS_VER
|
|
$MAKE install
|