mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-22 01:54:32 -05:00
Without this, when building on platforms where 'make' is not GNU Make, building crtls will fail. The Makefiles used to build crtls depend on GNU Make and will not work on e.g. BSD Make.
17 lines
576 B
Bash
Executable File
17 lines
576 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# set env variables
|
|
#---------------------------------------------------------------------------------
|
|
export DEVKITPRO=$TOOLPATH
|
|
export DEVKITPPC=$DEVKITPRO/devkitPPC
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Install the rules files
|
|
#---------------------------------------------------------------------------------
|
|
cd $BUILDDIR
|
|
|
|
tar -xvf $SRCDIR/devkitppc-rules-$DKPPC_RULES_VER.tar.gz
|
|
cd devkitppc-rules-$DKPPC_RULES_VER
|
|
$MAKE install
|