1@echo off
2rem This is a Windows cmd.exe script used to invoke the NDK-specific GNU Make executable
3call "%~dp0find-win-host.cmd" NDK_WIN_HOST
4if ERRORLEVEL 1 (exit /b 1)
5set NDK_ROOT=%~dp0
6"%NDK_ROOT%prebuilt/%NDK_WIN_HOST%/bin/make.exe" -f "%NDK_ROOT%build/core/build-local.mk" SHELL=cmd %*
7