mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-05 00:35:19 -05:00
8 lines
179 B
Bash
8 lines
179 B
Bash
#!/bin/sh
|
|
|
|
export DEVKITPRO=$TOOLPATH
|
|
|
|
cd $BUILDDIR/libnx-$LIBNX_VER
|
|
$MAKE || { echo "error building libnx"; exit 1; }
|
|
$MAKE install || { echo "error installing libnx"; exit 1; }
|