Skip to content

Commit

Permalink
scripts: Added missing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
captain-caveman2k committed Aug 8, 2015
1 parent 4a21346 commit a8e9e0c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions projects/build-openssl.bat
Expand Up @@ -24,6 +24,8 @@ rem ***************************************************************************
:begin
rem Check we are running on a Windows NT derived OS
if not "%OS%" == "Windows_NT" goto nodos

rem Set our variables
setlocal
set VC_VER=
set BUILD_PLATFORM=
Expand Down
2 changes: 2 additions & 0 deletions projects/build-wolfssl.bat
Expand Up @@ -25,6 +25,8 @@ rem ***************************************************************************
:begin
rem Check we are running on a Windows NT derived OS
if not "%OS%" == "Windows_NT" goto nodos

rem Set our variables
setlocal
set SUCCESSFUL_BUILDS=
set VC_VER=
Expand Down
8 changes: 8 additions & 0 deletions projects/checksrc.bat
Expand Up @@ -24,6 +24,8 @@ rem ***************************************************************************
:begin
rem Check we are running on a Windows NT derived OS
if not "%OS%" == "Windows_NT" goto nodos

rem Set our variables
setlocal

:parseArgs
Expand All @@ -50,12 +52,18 @@ rem ***************************************************************************
if not exist "%SRC_DIR%" goto nosrc

: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\*.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\*.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\*.h.*" /b') do @perl "%SRC_DIR%\lib\checksrc.pl" "-D%SRC_DIR%\lib\vtls" "%%i"

goto success

:syntax
Expand Down

0 comments on commit a8e9e0c

Please sign in to comment.