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