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,26 @@
set -x
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
mkdir -p sdk/include
LIB=astronomy
pushd sdk/include
rm astronomy
ln -fs ../../$LIB/astronomy/source/c astronomy
popd
mkdir $LIB
pushd $LIB
git clone -b v2.1.19 https://github.com/cosinekitty/astronomy astronomy
cp -av $DIR/Makefile.project astronomy
ln -s $DIR/../../Makefile-template astronomy/Makefile
pushd astronomy
make
popd
popd