mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-21 17:44:41 -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.
16 lines
538 B
Bash
16 lines
538 B
Bash
#!/bin/sh
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# set env variables
|
|
#---------------------------------------------------------------------------------
|
|
export DEVKITPRO=$TOOLPATH
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Install the rules files
|
|
#---------------------------------------------------------------------------------
|
|
cd $BUILDDIR
|
|
|
|
tar -xvf $SRCDIR/devkita64-rules-$DKA64_RULES_VER.tar.gz
|
|
cd devkita64-rules-$DKA64_RULES_VER
|
|
$MAKE install
|