libuv 1.48.0.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4828 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2024-02-07 23:12:32 +00:00
parent e98802f5b2
commit 6765254f43
53 changed files with 1172 additions and 305 deletions

View File

@ -810,6 +810,13 @@ apklog:
@adb logcat *:S tildefriends
.PHONY: apklog
fetchdeps:
rm -rfv deps/libuv/
mkdir -p out/deps/ deps/libuv/
test -f out/deps/libuv.tar.gz || curl -q https://dist.libuv.org/dist/v1.48.0/libuv-v1.48.0.tar.gz -o out/deps/libuv.tar.gz
tar -C deps/libuv/ --strip=1 -xvf out/deps/libuv.tar.gz
.PHONE: fetchdeps
clean:
rm -rf $(BUILD_DIR)
.PHONY: clean