From a8e9e0c205ac27ef73d1ae09327be4e89b90894c Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 8 Aug 2015 11:11:46 +0100 Subject: scripts: Added missing comments --- projects/checksrc.bat | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'projects/checksrc.bat') diff --git a/projects/checksrc.bat b/projects/checksrc.bat index 37dc808a9..23d3aa2e7 100644 --- a/projects/checksrc.bat +++ b/projects/checksrc.bat @@ -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 @@ -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 -- cgit v1.2.3