mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-23 10:57:23 -05:00
17 lines
337 B
Bash
17 lines
337 B
Bash
#!/bin/sh
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Install and build the pspsdk
|
|
#---------------------------------------------------------------------------------
|
|
|
|
echo "building pspsdk ..."
|
|
cd $PSPSDK_SRCDIR
|
|
./configure
|
|
$MAKE
|
|
echo "installing pspsdk ..."
|
|
$MAKE install
|
|
|
|
cd $BUILDSCRIPTDIR
|
|
|
|
|