26 lines
342 B
Plaintext
Executable File
26 lines
342 B
Plaintext
Executable File
mkdir -p sdk/include
|
|
|
|
LIB=ezaudio
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
mkdir $LIB
|
|
pushd $LIB
|
|
|
|
git clone https://github.com/timprepscius/EZAudio.git
|
|
|
|
cp -av $DIR/Makefile.* $LIB/
|
|
$DIR/../../prepare-template-just-makefile $LIB $DIR
|
|
|
|
|
|
pushd $LIB
|
|
make
|
|
popd
|
|
|
|
popd
|
|
|
|
pushd sdk/include
|
|
ln -s ../../ezaudio/EZAudio/EZAudio
|
|
popd
|
|
|