curl/buildconf.bat

151 lines
3.4 KiB
Batchfile
Raw Normal View History

2009-04-30 08:12:31 -04:00
@echo off
rem ***************************************************************************
rem * _ _ ____ _
rem * Project ___| | | | _ \| |
rem * / __| | | | |_) | |
rem * | (__| |_| | _ <| |___
rem * \___|\___/|_| \_\_____|
rem *
rem * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
rem *
rem * This software is licensed as described in the file COPYING, which
rem * you should have received as part of this distribution. The terms
rem * are also available at http://curl.haxx.se/docs/copyright.html.
rem *
rem * You may opt to use, copy, modify, merge, publish, distribute and/or sell
rem * copies of the Software, and permit persons to whom the Software is
rem * furnished to do so, under the terms of the COPYING file.
rem *
rem * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
rem * KIND, either express or implied.
rem *
rem ***************************************************************************
rem NOTES
rem
rem This batch file must be used to set up a git tree to build on systems where
rem there is no autotools support (i.e. Windows).
rem
rem This file is not included or required for curl's release archives or daily
rem snapshot archives.
:begin
rem Display the help
if /i "%~1" == "-?" goto syntax
if /i "%~1" == "-h" goto syntax
if /i "%~1" == "-help" goto syntax
rem Switch to this batch file's directory
cd /d "%~0\.." 1>NUL 2>&1
rem Check we are running from a curl git repository
if not exist GIT-INFO goto norepo
2009-04-30 08:12:31 -04:00
rem Set our variables
setlocal
set MODE=GENERATE
:parseArgs
if "%~1" == "" goto start
if /i "%~1" == "-clean" (
set MODE=CLEAN
) else (
goto unknown
)
shift & goto parseArgs
:start
if "%MODE%" == "GENERATE" (
call :generate
) else (
call :clean
)
goto success
rem Main generate function.
rem
:generate
2015-08-05 12:40:28 -04:00
echo.
echo Generating prerequisite files
rem create tool_hugehelp.c
if exist src\tool_hugehelp.c.cvs (
2015-08-05 12:40:28 -04:00
echo * %CD%\src\tool_hugehelp.c
copy /Y src\tool_hugehelp.c.cvs src\tool_hugehelp.c 1>NUL
)
2009-04-30 08:12:31 -04:00
rem create Makefile
if exist Makefile.dist (
2015-08-05 12:40:28 -04:00
echo * %CD%\Makefile
copy /Y Makefile.dist Makefile 1>NUL
)
2009-04-30 08:12:31 -04:00
rem create curlbuild.h
if exist include\curl\curlbuild.h.dist (
2015-08-05 12:40:28 -04:00
echo * %CD%\include\curl\curlbuild.h
copy /Y include\curl\curlbuild.h.dist include\curl\curlbuild.h 1>NUL
)
2009-04-30 08:12:31 -04:00
rem setup c-ares git tree
if exist ares\buildconf.bat (
2015-08-05 12:40:28 -04:00
echo.
echo Configuring c-ares build environment
cd ares
call buildconf.bat
cd ..
)
exit /B
rem Main clean function.
rem
:clean
echo.
echo Removing prerequisite files
echo * %CD%\Makefile
if exist Makefile (
del Makefile
)
echo * %CD%\src\tool_hugehelp.c
if exist src\tool_hugehelp.c (
del src\tool_hugehelp.c
)
echo * %CD%\include\curl\curlbuild.h
if exist include\curl\curlbuild.h (
del include\curl\curlbuild.h
)
exit /B
2009-04-30 08:12:31 -04:00
:syntax
rem Display the help
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
:error
endlocal
exit /B 1
:success
endlocal
exit /B 0