mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-25 15:41:31 -05:00
move psp sdk building to build-gcc script
This commit is contained in:
parent
d5ab855f41
commit
7c4e904fe5
|
|
@ -468,7 +468,9 @@ then
|
||||||
rm -fr $GCC_SRCDIR
|
rm -fr $GCC_SRCDIR
|
||||||
|
|
||||||
rm -fr $LIBOGC_SRCDIR $LIBGBA_SRCDIR $LIBNDS_SRCDIR $LIBMIRKO_SRCDIR $DSWIFI_SRCDIR $LIBFAT_SRCDIR $GDB_SRCDIR
|
rm -fr $LIBOGC_SRCDIR $LIBGBA_SRCDIR $LIBNDS_SRCDIR $LIBMIRKO_SRCDIR $DSWIFI_SRCDIR $LIBFAT_SRCDIR $GDB_SRCDIR
|
||||||
rm extracted_archives patched_sources
|
rm -fr mn10200
|
||||||
|
rm -fr pspsdk
|
||||||
|
rm -fr extracted_archives patched_sources checkout-psp-sdk
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -146,7 +146,25 @@ fi
|
||||||
|
|
||||||
cd $BUILDSCRIPTDIR
|
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
|
# build and install the debugger
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user