mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-19 08:57:21 -05:00
17 lines
478 B
Bash
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
|
|
|
|
|