mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-21 01:47:21 -05:00
17 lines
575 B
Bash
Executable File
17 lines
575 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
|