mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-08-13 21:54:32 -05:00
remove library building from scripts
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
export DEVKITPPC=$TOOLPATH/devkitPPC
|
||||
export DEVKITPRO=$TOOLPATH
|
||||
|
||||
cd $BUILDDIR
|
||||
mkdir -p rules
|
||||
cd rules
|
||||
tar -xvf $SRCDIR/devkitppc-rules-$DKPPC_RULES_VER.tar.xz
|
||||
make install
|
||||
|
||||
cd $BUILDDIR/libogc-$LIBOGC_VER
|
||||
|
||||
if [ ! -f installed ]; then
|
||||
echo "Building & installing libogc"
|
||||
$MAKE install || { echo "libogc install failed"; exit 1; }
|
||||
touch installed
|
||||
fi
|
||||
|
||||
cd $BUILDDIR/libfat-$LIBFAT_VER
|
||||
|
||||
if [ ! -f installed ]; then
|
||||
echo "Building & installing libfat"
|
||||
$MAKE ogc-install || { echo "libfat install failed"; exit 1; }
|
||||
touch installed
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user