*** empty log message ***

This commit is contained in:
Dave Murphy
2005-08-14 09:37:27 +00:00
parent 40f2af0095
commit adcdc466b6
5 changed files with 327 additions and 407 deletions

View File

@@ -5,11 +5,16 @@
#---------------------------------------------------------------------------------
echo "building pspsdk ..."
cd $PSPSDK_SRCDIR
./configure || { echo "Error configuring pspsdk"; exit 1; }
$MAKE || { echo "Error building pspsdk"; exit 1; }
echo "installing pspsdk ..."
$MAKE install || { echo "Error installing pspsdk"; exit 1; }
cd pspsdk
./configure || { echo "ERROR RUNNING PSPSDK CONFIGURE"; exit 1; }
$MAKE || { echo "ERROR BUILDING PSPSDK"; exit 1; }
$MAKE install || { echo "ERROR INSTALLING PSPSDK"; exit 1; }
cd $BUILDSCRIPTDIR
rm -fr pspsdk
cd $BUILDSCRIPTDIR

View File

@@ -52,6 +52,13 @@ $MAKE install-gcc || { echo "Error installing gcc"; exit 1; }
cd $BUILDSCRIPTDIR
svn checkout svn://svn.pspdev.org/psp/trunk/pspsdk || { echo "ERROR GETTING PSPSDK"; exit 1; }
cd pspsdk
./bootstrap || { echo "ERROR RUNNING PSPSDK BOOSTRAP"; exit 1; }
./configure || { echo "ERROR RUNNING PSPSDK CONFIGURE"; exit 1; }
$MAKE install-data || { echo "ERROR INSTALLING PSPSDK HEADERS"; exit 1; }
#---------------------------------------------------------------------------------
# build and install newlib
#---------------------------------------------------------------------------------
@@ -87,6 +94,7 @@ $MAKE install || { echo "Error installing g++"; exit 1; }
cd $BUILDSCRIPTDIR
#---------------------------------------------------------------------------------
# remove temp stuff to conserve disc space
#---------------------------------------------------------------------------------