aboutsummaryrefslogtreecommitdiff
path: root/buildconf.bat
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2015-08-05 17:40:28 +0100
committerSteve Holme <steve_holme@hotmail.com>2015-08-05 18:02:37 +0100
commit6428b8de424bfea92c8c559f77aef4c5c3f507b8 (patch)
treec0f6678216b2b52407f9f43fd75e398853e8345f /buildconf.bat
parent97c9d31884d25322e36bb2bfc5cee6485b503f4d (diff)
buildconf.bat: Added progress output
Diffstat (limited to 'buildconf.bat')
-rw-r--r--buildconf.bat14
1 files changed, 11 insertions, 3 deletions
diff --git a/buildconf.bat b/buildconf.bat
index 5de8bf18c..d20f3c28f 100644
--- a/buildconf.bat
+++ b/buildconf.bat
@@ -38,23 +38,31 @@ rem snapshot archives.
if not exist GIT-INFO goto nogitinfo
:start
+ echo.
+ echo Generating prerequisite files
+
rem create tool_hugehelp.c
if exist src\tool_hugehelp.c.cvs (
- copy /Y src\tool_hugehelp.c.cvs src\tool_hugehelp.c
+ echo * %CD%\src\tool_hugehelp.c
+ copy /Y src\tool_hugehelp.c.cvs src\tool_hugehelp.c 1>NUL
)
rem create Makefile
if exist Makefile.dist (
- copy /Y Makefile.dist Makefile
+ echo * %CD%\Makefile
+ copy /Y Makefile.dist Makefile 1>NUL
)
rem create curlbuild.h
if exist include\curl\curlbuild.h.dist (
- copy /Y include\curl\curlbuild.h.dist include\curl\curlbuild.h
+ echo * %CD%\include\curl\curlbuild.h
+ copy /Y include\curl\curlbuild.h.dist include\curl\curlbuild.h 1>NUL
)
rem setup c-ares git tree
if exist ares\buildconf.bat (
+ echo.
+ echo Configuring c-ares build environment
cd ares
call buildconf.bat
cd ..