flatten 20260225

This commit is contained in:
Timothy Prepscius
2026-02-25 13:00:25 -05:00
commit b308a4c280
114 changed files with 14759 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
set -x
mkdir -p sdk/include
LIB=libev
SRC=libev
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
mkdir $LIB
pushd $LIB
wget http://dist.schmorp.de/libev/libev-4.33.tar.gz
tar xf libev-4.33.tar.gz
ln -s libev*/ libev
pushd libev
./configure
make
popd
popd
pushd sdk/include
ln -s ../../$LIB/$SRC libev
popd
UNAME_S=`uname -s`
UNAME_M=`uname -m`
EXT=${UNAME_S}-${UNAME_M}
pushd sdk/lib
cp ../../$LIB/$SRC/.libs/*.a Debug.$EXT/
cp ../../$LIB/$SRC/.libs/*.a Release.$EXT/
popd