buildscripts/dkpsp/scripts/build-crtls.sh
Dave Murphy dc235a0800 improved script error checking
set syscalls dir for devkitPSP
2005-07-08 07:33:31 +00:00

17 lines
478 B
Bash

#!/bin/sh
#---------------------------------------------------------------------------------
# Install and build the pspsdk
#---------------------------------------------------------------------------------
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 $BUILDSCRIPTDIR