summaryrefslogtreecommitdiffstats
path: root/windows/copy_hdf.bat
diff options
context:
space:
mode:
authorScott Wegner <swegner@hdfgroup.org>2008-02-18 15:48:34 (GMT)
committerScott Wegner <swegner@hdfgroup.org>2008-02-18 15:48:34 (GMT)
commit728e308764b30e3e9e64f21d644722f2b523ad9d (patch)
treeb5530f885537ae5ba025358607f77c3f3b6f7b52 /windows/copy_hdf.bat
parentdee9447656a78e53342ec84eda9bd3a19be21920 (diff)
downloadhdf5-728e308764b30e3e9e64f21d644722f2b523ad9d.zip
hdf5-728e308764b30e3e9e64f21d644722f2b523ad9d.tar.gz
hdf5-728e308764b30e3e9e64f21d644722f2b523ad9d.tar.bz2
[svn-r14597] Purpose: Backport Windows cleanup checkins from trunk
Description: Make the Windows copy_hdf.bat a little cleaner/safer, and produce useful output in installhdf5lib.bat Previously, all of our build output would simply go to stdout/stderr for command-line builds. We can pipe this into a log file as a whole, but the complete logfile becomes very large very quickly. Instead, we give the user an option to place build results and test results into separate logs (or even the same). This will help keeping track of results in our automated testing. Tested: VS2005 on WinXP
Diffstat (limited to 'windows/copy_hdf.bat')
-rwxr-xr-xwindows/copy_hdf.bat14
1 files changed, 7 insertions, 7 deletions
diff --git a/windows/copy_hdf.bat b/windows/copy_hdf.bat
index b02e2eb..7648a30 100755
--- a/windows/copy_hdf.bat
+++ b/windows/copy_hdf.bat
@@ -17,15 +17,15 @@ rem Purpose : Copy all Files in the following formats from Windows to
rem approapriate directory: .bat .c .f90 .h .txt .js
rem :
rem Written By : Muqun Yang
-rem Last Update : November 17, 2007 by Scott Wegner
+rem Last Update : 2/18/08 by Scott Wegner
pushd %~dp0
-copy src\H5Tinit.c ..\src
-copy src\H5pubconf.h ..\src
-copy fortran\src\H5f90i_gen.h ..\fortran\src
-copy fortran\src\H5fortran_types.f90 ..\fortran\src
-xcopy /e/i/Y *.bat ..\
-copy examples\testExamples_exp_output.txt ..\examples
+copy /y src\H5Tinit.c ..\src > nul
+copy /y src\H5pubconf.h ..\src > nul
+copy /y fortran\src\H5f90i_gen.h ..\fortran\src > nul
+copy /y fortran\src\H5fortran_types.f90 ..\fortran\src > nul
+xcopy /s /i /y *.bat ..\ > nul
+copy /y examples\testExamples_exp_output.txt ..\examples > nul
popd