mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-08-13 21:54:32 -05:00
move psp sdk building to build-gcc script
This commit is contained in:
@@ -146,7 +146,25 @@ fi
|
||||
|
||||
cd $BUILDSCRIPTDIR
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# build and install the psp sdk
|
||||
#---------------------------------------------------------------------------------
|
||||
echo "building pspsdk ..."
|
||||
cd pspsdk
|
||||
|
||||
if [ ! -f built-sdk ]
|
||||
then
|
||||
$MAKE || { echo "ERROR BUILDING PSPSDK"; exit 1; }
|
||||
touch built-sdk
|
||||
fi
|
||||
|
||||
if [ ! -f installed-sdk ]
|
||||
then
|
||||
$MAKE install || { echo "ERROR INSTALLING PSPSDK"; exit 1; }
|
||||
touch built-sdk
|
||||
fi
|
||||
|
||||
cd $BUILDSCRIPTDIR
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# build and install the debugger
|
||||
|
||||
Reference in New Issue
Block a user