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,29 @@
set -x
if [ -d "_empty" ]; then
echo "_empty does exists already"
exit 0
fi
mkdir -p sdk/include
LIB=_empty
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
mkdir _empty
pushd _empty
mkdir $LIB
cp -av $DIR/Makefile.* $LIB/
cp -av $DIR/*.cpp $LIB/
$DIR/../../prepare-template-just-makefile $LIB $DIR
pushd $LIB
make
popd
popd