add a lib for rendering text in sdl2 and rules to make in makefile

This commit is contained in:
2026-01-21 14:45:11 -06:00
parent f3c0aafe2f
commit e7d9c013f4
1754 changed files with 850297 additions and 0 deletions

23
SDL2_ttf/external/download.sh vendored Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/sh
set -e
ARGUMENTS="$*"
cd $(dirname "$0")/..
cat .gitmodules | \
while true; do
read module || break
read line; set -- $line
path=$3
read line; set -- $line
url=$3
read line; set -- $line
branch=$3
if [ -z "$ARGUMENTS" ]; then
ARGUMENTS="--depth 1"
fi
git clone --filter=blob:none $url $path -b $branch --recursive $ARGUMENTS
done