diff options
author | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-03-22 13:49:02 (GMT) |
---|---|---|
committer | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-03-22 13:49:02 (GMT) |
commit | 36d7bd204d1d270b702ef581446afc1e1080cbd7 (patch) | |
tree | 83c0ea6a67669573a19756109fd475d468090c2e /windows/installhdf5lib_fort.bat | |
parent | 9a80e52533e2038c392c671d72d907d5919a6d9a (diff) | |
download | hdf5-36d7bd204d1d270b702ef581446afc1e1080cbd7.zip hdf5-36d7bd204d1d270b702ef581446afc1e1080cbd7.tar.gz hdf5-36d7bd204d1d270b702ef581446afc1e1080cbd7.tar.bz2 |
[svn-r10251] Purpose:
Remove all.zip for supporting windows.
Why?
1. Avoid confliction for windows programmers
2. Decrease size of CVS tree by adding all.zip
3. Avoid using winzip as the intermediate step
Kent Yang
Description:
Put all windows project files under hdf5/windows directory.
This check-in includes some batch files.
Solution:
Platforms tested:
VS 6.0, windows XP
Misc. update:
Diffstat (limited to 'windows/installhdf5lib_fort.bat')
-rwxr-xr-x | windows/installhdf5lib_fort.bat | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/windows/installhdf5lib_fort.bat b/windows/installhdf5lib_fort.bat new file mode 100755 index 0000000..dde2d21 --- /dev/null +++ b/windows/installhdf5lib_fort.bat @@ -0,0 +1,66 @@ +mkdir hdf5lib +cd hdf5lib +mkdir debug +cd debug +mkdir bin +mkdir bindll +mkdir dll +mkdir lib +mkdir include +cd .. +mkdir release +cd release +mkdir bin +mkdir bindll +mkdir dll +mkdir lib +mkdir include +cd .. +cd .. + + +move src\*.h hdf5lib\debug\include +move proj\hdf5\debug\*.mod hdf5lib\debug\include +del hdf5lib\debug\include\*private.h +move proj\hdf5\debug\hdf5.lib hdf5lib\debug\lib +move proj\hdf5dll\debug\hdf5ddll.lib hdf5lib\debug\dll +move proj\hdf5dll\debug\hdf5ddll.dll hdf5lib\debug\dll + +move tools\h5dump\debug\h5dump.exe hdf5lib\debug\bin +move tools\h5import\debug\h5import.exe hdf5lib\debug\bin +move tools\h5repart\debug\h5repart.exe hdf5lib\debug\bin +move tools\h5ls\debug\h5ls.exe hdf5lib\debug\bin +move tools\h5debug\debug\h5debug.exe hdf5lib\debug\bin +move tools\gifconv\debug\gif2h5.exe hdf5lib\debug\bin +move tools\gifconv\debug\h52gif.exe hdf5lib\debug\bin + +move tools\h5dumpdll\debug\h5dumpdll.exe hdf5lib\debug\bindll +move tools\h5importdll\debug\h5importdll.exe hdf5lib\debug\bindll +move tools\h5repartdll\debug\h5repartdll.exe hdf5lib\debug\bindll +move tools\h5lsdll\debug\h5lsdll.exe hdf5lib\debug\bindll +move tools\h5debugdll\debug\h5debugdll.exe hdf5lib\debug\bindll + + +move src\*.h hdf5lib\release\include +move proj\hdf5\release\*.mod hdf5lib\release\include +del hdf5lib\release\include\*private.h +move proj\hdf5\release\hdf5.lib hdf5lib\release\lib +move proj\hdf5dll\release\hdf5dll.lib hdf5lib\release\dll +move proj\hdf5dll\release\hdf5dll.dll hdf5lib\release\dll + +move tools\h5dump\release\h5dump.exe hdf5lib\release\bin +move tools\h5import\release\h5import.exe hdf5lib\release\bin +move tools\h5repart\release\h5repart.exe hdf5lib\release\bin +move tools\h5ls\release\h5ls.exe hdf5lib\release\bin +move tools\h5debug\release\h5debug.exe hdf5lib\release\bin +move tools\gifconv\release\gif2h5.exe hdf5lib\release\bin +move tools\gifconv\release\h52gif.exe hdf5lib\release\bin + +move tools\h5dumpdll\release\h5dumpdll.exe hdf5lib\release\bindll +move tools\h5importdll\release\h5importdll.exe hdf5lib\release\bindll +move tools\h5repartdll\release\h5repartdll.exe hdf5lib\release\bindll +move tools\h5lsdll\release\h5lsdll.exe hdf5lib\release\bindll +move tools\h5debugdll\release\h5debugdll.exe hdf5lib\release\bindll + + + |