|
|
@echo off
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:begin
|
|
|
|
|
|
if "%OS%" == "Windows_NT" setlocal
|
|
|
set MODE=GENERATE
|
|
|
|
|
|
|
|
|
cd /d "%~0\.." 1>NUL 2>&1
|
|
|
|
|
|
|
|
|
if not exist GIT-INFO.md goto norepo
|
|
|
|
|
|
:parseArgs
|
|
|
if "%~1" == "" goto start
|
|
|
|
|
|
if /i "%~1" == "-clean" (
|
|
|
set MODE=CLEAN
|
|
|
) else if /i "%~1" == "-?" (
|
|
|
goto syntax
|
|
|
) else if /i "%~1" == "-h" (
|
|
|
goto syntax
|
|
|
) else if /i "%~1" == "-help" (
|
|
|
goto syntax
|
|
|
) else (
|
|
|
goto unknown
|
|
|
)
|
|
|
|
|
|
shift & goto parseArgs
|
|
|
|
|
|
:start
|
|
|
if "%MODE%" == "GENERATE" (
|
|
|
echo.
|
|
|
echo Generating prerequisite files
|
|
|
|
|
|
call :generate
|
|
|
if errorlevel 3 goto nogenhugehelp
|
|
|
if errorlevel 2 goto nogenmakefile
|
|
|
if errorlevel 1 goto warning
|
|
|
|
|
|
) else (
|
|
|
echo.
|
|
|
echo Removing prerequisite files
|
|
|
|
|
|
call :clean
|
|
|
if errorlevel 2 goto nocleanhugehelp
|
|
|
if errorlevel 1 goto nocleanmakefile
|
|
|
)
|
|
|
|
|
|
goto success
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:generate
|
|
|
if "%OS%" == "Windows_NT" setlocal
|
|
|
set BASIC_HUGEHELP=0
|
|
|
|
|
|
|
|
|
echo * %CD%\Makefile
|
|
|
if exist Makefile.dist (
|
|
|
copy /Y Makefile.dist Makefile 1>NUL 2>&1
|
|
|
if errorlevel 1 (
|
|
|
if "%OS%" == "Windows_NT" endlocal
|
|
|
exit /B 2
|
|
|
)
|
|
|
)
|
|
|
|
|
|
|
|
|
echo * %CD%\src\tool_hugehelp.c
|
|
|
call :genHugeHelp
|
|
|
if errorlevel 2 (
|
|
|
if "%OS%" == "Windows_NT" endlocal
|
|
|
exit /B 3
|
|
|
)
|
|
|
if errorlevel 1 (
|
|
|
set BASIC_HUGEHELP=1
|
|
|
)
|
|
|
cmd /c exit 0
|
|
|
|
|
|
if "%BASIC_HUGEHELP%" == "1" (
|
|
|
if "%OS%" == "Windows_NT" endlocal
|
|
|
exit /B 1
|
|
|
)
|
|
|
|
|
|
if "%OS%" == "Windows_NT" endlocal
|
|
|
exit /B 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:clean
|
|
|
|
|
|
echo * %CD%\Makefile
|
|
|
if exist Makefile (
|
|
|
del Makefile 2>NUL
|
|
|
if exist Makefile (
|
|
|
exit /B 1
|
|
|
)
|
|
|
)
|
|
|
|
|
|
|
|
|
echo * %CD%\src\tool_hugehelp.c
|
|
|
if exist src\tool_hugehelp.c (
|
|
|
del src\tool_hugehelp.c 2>NUL
|
|
|
if exist src\tool_hugehelp.c (
|
|
|
exit /B 2
|
|
|
)
|
|
|
)
|
|
|
|
|
|
exit /B
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:genHugeHelp
|
|
|
if "%OS%" == "Windows_NT" setlocal
|
|
|
set LC_ALL=C
|
|
|
set BASIC=1
|
|
|
|
|
|
if exist src\tool_hugehelp.c.cvs (
|
|
|
copy /Y src\tool_hugehelp.c.cvs src\tool_hugehelp.c 1>NUL 2>&1
|
|
|
) else (
|
|
|
echo #include "tool_setup.h"> src\tool_hugehelp.c
|
|
|
echo #include "tool_hugehelp.h">> src\tool_hugehelp.c
|
|
|
echo.>> src\tool_hugehelp.c
|
|
|
echo void hugehelp(void^)>> src\tool_hugehelp.c
|
|
|
echo {>> src\tool_hugehelp.c
|
|
|
echo #ifdef USE_MANUAL>> src\tool_hugehelp.c
|
|
|
echo fputs("Built-in manual not included\n", stdout^);>> src\tool_hugehelp.c
|
|
|
echo #endif>> src\tool_hugehelp.c
|
|
|
echo }>> src\tool_hugehelp.c
|
|
|
)
|
|
|
|
|
|
findstr "/C:void hugehelp(void)" src\tool_hugehelp.c 1>NUL 2>&1
|
|
|
if errorlevel 1 (
|
|
|
if "%OS%" == "Windows_NT" endlocal
|
|
|
exit /B 2
|
|
|
)
|
|
|
|
|
|
if "%BASIC%" == "1" (
|
|
|
if "%OS%" == "Windows_NT" endlocal
|
|
|
exit /B 1
|
|
|
)
|
|
|
|
|
|
if "%OS%" == "Windows_NT" endlocal
|
|
|
exit /B 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:dosCleanup
|
|
|
set MODE=
|
|
|
set BASIC_HUGEHELP=
|
|
|
set LC_ALL
|
|
|
set BASIC=
|
|
|
|
|
|
exit /B
|
|
|
|
|
|
:syntax
|
|
|
|
|
|
echo.
|
|
|
echo Usage: buildconf [-clean]
|
|
|
echo.
|
|
|
echo -clean - Removes the files
|
|
|
goto error
|
|
|
|
|
|
:unknown
|
|
|
echo.
|
|
|
echo Error: Unknown argument '%1'
|
|
|
goto error
|
|
|
|
|
|
:norepo
|
|
|
echo.
|
|
|
echo Error: This batch file should only be used with a curl git repository
|
|
|
goto error
|
|
|
|
|
|
:nogenmakefile
|
|
|
echo.
|
|
|
echo Error: Unable to generate Makefile
|
|
|
goto error
|
|
|
|
|
|
:nogenhugehelp
|
|
|
echo.
|
|
|
echo Error: Unable to generate src\tool_hugehelp.c
|
|
|
goto error
|
|
|
|
|
|
:nocleanmakefile
|
|
|
echo.
|
|
|
echo Error: Unable to clean Makefile
|
|
|
goto error
|
|
|
|
|
|
:nocleanhugehelp
|
|
|
echo.
|
|
|
echo Error: Unable to clean src\tool_hugehelp.c
|
|
|
goto error
|
|
|
|
|
|
:warning
|
|
|
echo.
|
|
|
echo Warning: The curl manual could not be integrated in the source. This means when
|
|
|
echo you build curl the manual will not be available (curl --manual^). Integration of
|
|
|
echo the manual is not required and a summary of the options will still be available
|
|
|
echo (curl --help^). To integrate the manual build with configure or cmake.
|
|
|
goto success
|
|
|
|
|
|
:error
|
|
|
if "%OS%" == "Windows_NT" (
|
|
|
endlocal
|
|
|
) else (
|
|
|
call :dosCleanup
|
|
|
)
|
|
|
exit /B 1
|
|
|
|
|
|
:success
|
|
|
if "%OS%" == "Windows_NT" (
|
|
|
endlocal
|
|
|
) else (
|
|
|
call :dosCleanup
|
|
|
)
|
|
|
exit /B 0
|
|
|
|