mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
scripts: Added missing comments
This commit is contained in:
parent
4a21346ef3
commit
a8e9e0c205
@ -24,6 +24,8 @@ rem ***************************************************************************
|
|||||||
:begin
|
:begin
|
||||||
rem Check we are running on a Windows NT derived OS
|
rem Check we are running on a Windows NT derived OS
|
||||||
if not "%OS%" == "Windows_NT" goto nodos
|
if not "%OS%" == "Windows_NT" goto nodos
|
||||||
|
|
||||||
|
rem Set our variables
|
||||||
setlocal
|
setlocal
|
||||||
set VC_VER=
|
set VC_VER=
|
||||||
set BUILD_PLATFORM=
|
set BUILD_PLATFORM=
|
||||||
|
@ -25,6 +25,8 @@ rem ***************************************************************************
|
|||||||
:begin
|
:begin
|
||||||
rem Check we are running on a Windows NT derived OS
|
rem Check we are running on a Windows NT derived OS
|
||||||
if not "%OS%" == "Windows_NT" goto nodos
|
if not "%OS%" == "Windows_NT" goto nodos
|
||||||
|
|
||||||
|
rem Set our variables
|
||||||
setlocal
|
setlocal
|
||||||
set SUCCESSFUL_BUILDS=
|
set SUCCESSFUL_BUILDS=
|
||||||
set VC_VER=
|
set VC_VER=
|
||||||
|
@ -24,6 +24,8 @@ rem ***************************************************************************
|
|||||||
:begin
|
:begin
|
||||||
rem Check we are running on a Windows NT derived OS
|
rem Check we are running on a Windows NT derived OS
|
||||||
if not "%OS%" == "Windows_NT" goto nodos
|
if not "%OS%" == "Windows_NT" goto nodos
|
||||||
|
|
||||||
|
rem Set our variables
|
||||||
setlocal
|
setlocal
|
||||||
|
|
||||||
:parseArgs
|
:parseArgs
|
||||||
@ -50,12 +52,18 @@ rem ***************************************************************************
|
|||||||
if not exist "%SRC_DIR%" goto nosrc
|
if not exist "%SRC_DIR%" goto nosrc
|
||||||
|
|
||||||
:start
|
:start
|
||||||
|
rem Check the src directory
|
||||||
for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" -Wtool_hugehelp.c "%%i"
|
for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" -Wtool_hugehelp.c "%%i"
|
||||||
for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" "%%i"
|
for /f "delims=" %%i in ('dir "%SRC_DIR%\src\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\src" "%%i"
|
||||||
|
|
||||||
|
rem Check the lib directory
|
||||||
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" "%%i"
|
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" "%%i"
|
||||||
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" -Wcurl_config.h.cmake "%%i"
|
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib" -Wcurl_config.h.cmake "%%i"
|
||||||
|
|
||||||
|
rem Check the vtls directory
|
||||||
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
|
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.c.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
|
||||||
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
|
for /f "delims=" %%i in ('dir "%SRC_DIR%\lib\vtls\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"
|
||||||
|
|
||||||
goto success
|
goto success
|
||||||
|
|
||||||
:syntax
|
:syntax
|
||||||
|
Loading…
Reference in New Issue
Block a user