blob: e10707bebe47089dab49a55a3e66c748c0627e7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
|
@echo OFF
rem Copyright by The HDF Group.
rem Copyright by the Board of Trustees of the University of Illinois.
rem All rights reserved.
rem
rem This file is part of HDF5. The full HDF5 copyright notice, including
rem terms governing use, modification, and redistribution, is contained in
rem the files COPYING and Copyright.html. COPYING can be found at the root
rem of the source code distribution tree; Copyright.html can be found at the
rem root level of an installed copy of the electronic HDF5 document set and
rem is linked from the top-level documents page. It can also be found at
rem http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
rem access to either file, you may request a copy from help@hdfgroup.org.
rem This batch file is used to install HDF5 libraries and tools
rem Last Updated: 2/12/2007
setlocal enabledelayedexpansion
pushd %~dp0
set install_dir=%systemroot%\system
goto main
rem Create the directory structure that we'll need to install
:create_directories
for %%a in (debug release) do (
for %%b in (bin bindll dll lib include modsdll) do (
if not exist hdf5lib\%%a\%%b (
mkdir hdf5lib\%%a\%%b
)
)
)
exit /b
rem This function actally copies the file over, first making sure it exists. If not, we increment nerrors
rem Expected parameters:
rem %1 - name of file to copy
rem %2 - destination to copy to
:safe_copy
if exist %1 (
copy /y %1 %2 > nul
) else (
set /a nerrors=%nerrors%+1
)
exit /b
rem Only delete a file if it actually exists. Return the status of delete if it was called
rem Expected paramters:
rem %1 - name of file to delete
:safe_delete
if exist %1 (
del /f %1 > nul
)
exit /b
rem Install C Libraries and Tools
:install_c
set nerrors=0
rem ===DEBUG===
rem include
call :safe_copy src\*.h hdf5lib\debug\include
call :safe_delete hdf5lib\debug\include\*private.h
rem lib
call :safe_copy proj\hdf5\debug\hdf5d.lib hdf5lib\debug\lib
rem dll
call :safe_copy proj\hdf5dll\debug\hdf5ddll.lib hdf5lib\debug\dll
call :safe_copy proj\hdf5dll\debug\hdf5ddll.dll hdf5lib\debug\dll
rem bin
call :safe_copy hl\tools\gifconv\gif2h5\debug\gif2h5.exe hdf5lib\debug\bin
call :safe_copy hl\tools\gifconv\h52gif\debug\h52gif.exe hdf5lib\debug\bin
call :safe_copy tools\h5copy\debug\h5copy.exe hdf5lib\debug\bin
call :safe_copy tools\h5debug\debug\h5debug.exe hdf5lib\debug\bin
call :safe_copy tools\h5diff\debug\h5diff.exe hdf5lib\debug\bin
call :safe_copy tools\h5dump\debug\h5dump.exe hdf5lib\debug\bin
call :safe_copy tools\h5import\debug\h5import.exe hdf5lib\debug\bin
call :safe_copy tools\h5jam\debug\h5jam.exe hdf5lib\debug\bin
call :safe_copy tools\h5ls\debug\h5ls.exe hdf5lib\debug\bin
call :safe_copy tools\h5mkgrp\debug\h5mkgrp.exe hdf5lib\debug\bin
call :safe_copy tools\h5repack\debug\h5repack.exe hdf5lib\debug\bin
call :safe_copy tools\h5repart\debug\h5repart.exe hdf5lib\debug\bin
call :safe_copy tools\h5stat\debug\h5stat.exe hdf5lib\debug\bin
call :safe_copy tools\h5unjam\debug\h5unjam.exe hdf5lib\debug\bin
rem bindll
call :safe_copy hl\tools\gifconvdll\h52gifdll\debug\h52gifdll.exe hdf5lib\debug\bindll
call :safe_copy hl\tools\gifconvdll\gif2h5dll\debug\gif2h5dll.exe hdf5lib\debug\bindll
call :safe_copy tools\h5debugdll\debug\h5debugdll.exe hdf5lib\debug\bindll
call :safe_copy tools\h5diffdll\debug\h5diffdll.exe hdf5lib\debug\bindll
call :safe_copy tools\h5dumpdll\debug\h5dumpdll.exe hdf5lib\debug\bindll
call :safe_copy tools\h5importdll\debug\h5importdll.exe hdf5lib\debug\bindll
call :safe_copy tools\h5lsdll\debug\h5lsdll.exe hdf5lib\debug\bindll
call :safe_copy tools\h5repackdll\debug\h5repackdll.exe hdf5lib\debug\bindll
call :safe_copy tools\h5repartdll\debug\h5repartdll.exe hdf5lib\debug\bindll
rem ===RELEASE===
rem include
call :safe_copy src\*.h hdf5lib\release\include
call :safe_delete hdf5lib\release\include\*private.h
rem lib
call :safe_copy proj\hdf5\release\hdf5.lib hdf5lib\release\lib
rem dll
call :safe_copy proj\hdf5dll\release\hdf5dll.lib hdf5lib\release\dll
call :safe_copy proj\hdf5dll\release\hdf5dll.dll hdf5lib\release\dll
rem bin
call :safe_copy hl\tools\gifconv\gif2h5\release\gif2h5.exe hdf5lib\release\bin
call :safe_copy hl\tools\gifconv\h52gif\release\h52gif.exe hdf5lib\release\bin
call :safe_copy tools\h5copy\release\h5copy.exe hdf5lib\release\bin
call :safe_copy tools\h5debug\release\h5debug.exe hdf5lib\release\bin
call :safe_copy tools\h5diff\release\h5diff.exe hdf5lib\release\bin
call :safe_copy tools\h5dump\release\h5dump.exe hdf5lib\release\bin
call :safe_copy tools\h5import\release\h5import.exe hdf5lib\release\bin
call :safe_copy tools\h5jam\release\h5jam.exe hdf5lib\release\bin
call :safe_copy tools\h5ls\release\h5ls.exe hdf5lib\release\bin
call :safe_copy tools\h5mkgrp\release\h5mkgrp.exe hdf5lib\release\bin
call :safe_copy tools\h5repack\release\h5repack.exe hdf5lib\release\bin
call :safe_copy tools\h5repart\release\h5repart.exe hdf5lib\release\bin
call :safe_copy tools\h5stat\release\h5stat.exe hdf5lib\release\bin
call :safe_copy tools\h5unjam\release\h5unjam.exe hdf5lib\release\bin
rem bindll
call :safe_copy hl\tools\gifconvdll\h52gifdll\release\h52gifdll.exe hdf5lib\release\bindll
call :safe_copy hl\tools\gifconvdll\gif2h5dll\release\gif2h5dll.exe hdf5lib\release\bindll
call :safe_copy tools\h5debugdll\release\h5debugdll.exe hdf5lib\release\bindll
call :safe_copy tools\h5diffdll\release\h5diffdll.exe hdf5lib\release\bindll
call :safe_copy tools\h5dumpdll\release\h5dumpdll.exe hdf5lib\release\bindll
call :safe_copy tools\h5importdll\release\h5importdll.exe hdf5lib\release\bindll
call :safe_copy tools\h5lsdll\release\h5lsdll.exe hdf5lib\release\bindll
call :safe_copy tools\h5repackdll\release\h5repackdll.exe hdf5lib\release\bindll
call :safe_copy tools\h5repartdll\release\h5repartdll.exe hdf5lib\release\bindll
exit /b %nerrors%
rem Install HL Libraries and Tools
:install_hl
set nerrors=0
rem ===DEBUG===
rem include
call :safe_copy hl\src\*.h hdf5lib\debug\include
rem lib
call :safe_copy proj\hdf5_hl\debug\hdf5_hld.lib hdf5lib\debug\lib
rem dll
call :safe_copy proj\hdf5_hldll\debug\hdf5_hlddll.lib hdf5lib\debug\dll
call :safe_copy proj\hdf5_hldll\debug\hdf5_hlddll.dll hdf5lib\debug\dll
rem ===RELEASE===
rem include
call :safe_copy hl\src\*.h hdf5lib\release\include
rem lib
call :safe_copy proj\hdf5_hl\release\hdf5_hl.lib hdf5lib\release\lib
rem dll
call :safe_copy proj\hdf5_hldll\release\hdf5_hldll.lib hdf5lib\release\dll
call :safe_copy proj\hdf5_hldll\release\hdf5_hldll.dll hdf5lib\release\dll
exit /b %nerrors%
rem Install C++ Libraries and Tools
:install_cpp
set nerrors=0
REM ===DEBUG===
rem include
call :safe_copy "c++\src\*.h" hdf5lib\debug\include
rem lib
call :safe_copy proj\hdf5_cpp\debug\hdf5_cppd.lib hdf5lib\debug\lib
rem dll
call :safe_copy proj\hdf5_cppdll\debug\hdf5_cppddll.lib hdf5lib\debug\dll
call :safe_copy proj\hdf5_cppdll\debug\hdf5_cppddll.dll hdf5lib\debug\dll
rem ===RELEASE===
rem include
call :safe_copy "c++\src\*.h" hdf5lib\release\include
rem lib
call :safe_copy proj\hdf5_cpp\release\hdf5_cpp.lib hdf5lib\release\lib
rem dll
call :safe_copy proj\hdf5_cppdll\release\hdf5_cppdll.lib hdf5lib\release\dll
call :safe_copy proj\hdf5_cppdll\release\hdf5_cppdll.dll hdf5lib\release\dll
exit /b %nerrors%
rem Install HL C++ Libraries and Tools
:install_hlcpp
set nerrors=0
rem ===DEBUG===
rem include
call :safe_copy "hl\c++\src\*.h" hdf5lib\debug\include
rem lib
call :safe_copy proj\hdf5_hl_cpp\debug\hdf5_hl_cppd.lib hdf5lib\debug\lib
rem dll
call :safe_copy proj\hdf5_hl_cppdll\debug\hdf5_hl_cppddll.lib hdf5lib\debug\dll
call :safe_copy proj\hdf5_hl_cppdll\debug\hdf5_hl_cppddll.dll hdf5lib\debug\dll
rem ===RELEASE===
rem include
call :safe_copy "hl\c++\src\*.h" hdf5lib\release\include
rem lib
call :safe_copy proj\hdf5_hl_cpp\release\hdf5_hl_cpp.lib hdf5lib\release\lib
rem dll
call :safe_copy proj\hdf5_hl_cppdll\release\hdf5_hl_cppdll.lib hdf5lib\release\dll
call :safe_copy proj\hdf5_hl_cppdll\release\hdf5_hl_cppdll.dll hdf5lib\release\dll
exit /b %nerrors%
rem Install Fortran Libraries and Tools
:install_fortran
set nerrors=0
rem ===DEBUG===
rem include
call :safe_copy proj\hdf5_fortran\debug\*.mod hdf5lib\debug\include
rem lib
call :safe_copy proj\hdf5_fortran\debug\hdf5_fortrand.lib hdf5lib\debug\lib
call :safe_copy proj\hdf5_f90cstub\debug\hdf5_f90cstubd.lib hdf5lib\debug\lib
rem modsdll
call :safe_copy proj\hdf5_fortrandll\debug\*.mod hdf5lib\debug\modsdll
rem dll
call :safe_copy proj\hdf5_fortrandll\debug\hdf5_fortranddll.lib hdf5lib\debug\dll
call :safe_copy proj\hdf5_fortrandll\debug\hdf5_fortranddll.dll hdf5lib\debug\dll
call :safe_copy proj\hdf5_f90cstubdll\debug\hdf5_f90cstubddll.lib hdf5lib\debug\dll
call :safe_copy proj\hdf5_f90cstubdll\debug\hdf5_f90cstubddll.dll hdf5lib\debug\dll
rem ===RELEASE===
rem include
call :safe_copy proj\hdf5_fortran\release\*.mod hdf5lib\release\include
rem lib
call :safe_copy proj\hdf5_fortran\release\hdf5_fortran.lib hdf5lib\release\lib
call :safe_copy proj\hdf5_f90cstub\release\hdf5_f90cstub.lib hdf5lib\release\lib
rem modsdll
call :safe_copy proj\hdf5_fortrandll\release\*.mod hdf5lib\release\modsdll
rem dll
call :safe_copy proj\hdf5_fortrandll\release\hdf5_fortrandll.lib hdf5lib\release\dll
call :safe_copy proj\hdf5_fortrandll\release\hdf5_fortrandll.dll hdf5lib\release\dll
call :safe_copy proj\hdf5_f90cstubdll\release\hdf5_f90cstubdll.lib hdf5lib\release\dll
call :safe_copy proj\hdf5_f90cstubdll\release\hdf5_f90cstubdll.dll hdf5lib\release\dll
exit /b %nerrors%
rem Install HL Fortran Libraries and Tools
:install_hlfortran
set nerrors=0
rem ===DEBUG===
rem include
call :safe_copy proj\hdf5_hl_fortran\debug\*.mod hdf5lib\debug\include
rem lib
call :safe_copy proj\hdf5_hl_fortran\debug\hdf5_hl_fortrand.lib hdf5lib\debug\lib
call :safe_copy proj\hdf5_hl_f90cstub\debug\hdf5_hl_f90cstubd.lib hdf5lib\debug\lib
rem modsdll
call :safe_copy proj\hdf5_hl_fortrandll\debug\*.mod hdf5lib\debug\modsdll
rem dll
call :safe_copy proj\hdf5_hl_fortrandll\debug\hdf5_hl_fortranddll.lib hdf5lib\debug\dll
call :safe_copy proj\hdf5_hl_fortrandll\debug\hdf5_hl_fortranddll.dll hdf5lib\debug\dll
call :safe_copy proj\hdf5_hl_f90cstubdll\debug\hdf5_hl_f90cstubddll.lib hdf5lib\debug\dll
call :safe_copy proj\hdf5_hl_f90cstubdll\debug\hdf5_hl_f90cstubddll.dll hdf5lib\debug\dll
rem ===RELEASE===
rem include
call :safe_copy proj\hdf5_hl_fortran\release\*.mod hdf5lib\release\include
rem lib
call :safe_copy proj\hdf5_hl_fortran\release\hdf5_hl_fortran.lib hdf5lib\release\lib
call :safe_copy proj\hdf5_hl_f90cstub\release\hdf5_hl_f90cstub.lib hdf5lib\release\lib
rem modsdll
call :safe_copy proj\hdf5_hl_fortrandll\release\*.mod hdf5lib\release\modsdll
rem dll
call :safe_copy proj\hdf5_hl_fortrandll\release\hdf5_hl_fortrandll.lib hdf5lib\release\dll
call :safe_copy proj\hdf5_hl_fortrandll\release\hdf5_hl_fortrandll.dll hdf5lib\release\dll
call :safe_copy proj\hdf5_hl_f90cstubdll\release\hdf5_hl_f90cstubdll.lib hdf5lib\release\dll
call :safe_copy proj\hdf5_hl_f90cstubdll\release\hdf5_hl_f90cstubdll.dll hdf5lib\release\dll
exit /b %nerrors%
:main
call :create_directories
call :install_c
if %errorlevel% equ 0 (
echo.C libraries and tools installed
) else (
echo.C libraries and tools NOT installed
)
call :install_hl
if %errorlevel% equ 0 (
echo.High Level C libraries and tools installed
) else (
echo.High Level C libraries and tools NOT installed
)
call :install_cpp
if %errorlevel% equ 0 (
echo.C++ libraries and tools installed
) else (
echo.C++ libraries and tools NOT installed
)
call :install_hlcpp
if %errorlevel% equ 0 (
echo.High Level C++ libraries and tools installed
) else (
echo.High Level C++ libraries and tools NOT installed
)
call :install_fortran
if %errorlevel% equ 0 (
echo.Fortran libraries and tools installed
) else (
echo.Fortran libraries and tools NOT installed
)
call :install_hlfortran
if %errorlevel% equ 0 (
echo.High Level Fortran libraries and tools installed
) else (
echo.High Level Fortran libraries and tools NOT installed
)
popd
endlocal & exit /b 0
|