mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-22 01:54:32 -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; }
|