source: build/snova/trunk/obuild/DOS/build_lib_snova.bat @ 275

Last change on this file since 275 was 275, checked in by barrand, 17 years ago
  • Property svn:executable set to *
File size: 16.5 KB
Line 
1@ECHO OFF
2SETLOCAL
3
4REM #
5REM # File produced by the obuild tool version 1.0
6REM # for the package snova with version v2r0p0.
7REM #
8
9REM #////////////////////////////////////////////////
10REM # Usage :
11REM #   DOS> CD some_path\pack\version\obuild
12REM #   DOS> DOS\build_snova
13REM #
14REM #////////////////////////////////////////////////
15
16REM #////////////////////////////////////////////////
17REM #/// Get path of this file :
18REM #////////////////////////////////////////////////
19SET obuild_snova_path=%~dp0
20REM # Remove ending \obuild\DOS\
21SET obuild_snova_path=%obuild_snova_path:~0,-12%
22
23REM #////////////////////////////////////////////////
24REM #/// Treat arguments :
25REM #////////////////////////////////////////////////
26
27SET obuild_verbose=no
28SET obuild_debug=no
29SET obuild_optimize=yes
30SET obuild_set_x=no
31
32:next_arg
33IF "%1%" == "" GOTO end_args
34
35IF NOT "%1%" == "-v" GOTO end_if_v
36  SET obuild_verbose=yes
37  SHIFT
38  GOTO next_arg
39:end_if_v
40
41IF NOT "%1%" == "-g" GOTO end_if_g
42  SET obuild_debug=yes
43  SHIFT
44  GOTO next_arg
45:end_if_g
46
47IF NOT "%1%" == "-x" GOTO end_if_x
48  SET obuild_set_x=yes
49  SHIFT
50  GOTO next_arg
51:end_if_x
52
53:end_args
54
55REM #////////////////////////////////////////////////
56REM #/// End arguments.
57REM #////////////////////////////////////////////////
58
59IF %obuild_set_x% == yes ECHO ON
60
61IF %obuild_debug% == yes SET obuild_optimize=no
62
63IF "%OBUILD_PLATFORM%" == "" (
64  IF "%OS%" == "" ECHO Environment variable OS not found. & GOTO obuild_return
65  SET obuild_platform=%OS%
66) ELSE (
67  SET obuild_platform=%OBUILD_PLATFORM%
68)
69
70IF "%obuild_platform%" == "" (
71  ECHO obuild_platform variable not defined.
72  GOTO obuild_return
73)
74
75IF "%OBUILD_DIR_BIN%" == "" (
76  SET obuild_dir_bin=bin_obuild
77) ELSE (
78  SET obuild_dir_bin=%OBUILD_DIR_BIN%
79)
80
81IF "%obuild_dir_bin%" == "" (
82  ECHO obuild_dir_bin variable not defined.
83  GOTO obuild_return
84)
85
86IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%" MKDIR "%obuild_snova_path%\%obuild_dir_bin%"
87
88IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%" MKDIR "%obuild_snova_path%\%obuild_dir_bin%"
89IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%\obuild_platform.exe" (
90  cl.exe /nologo /DWIN32 /MD /O2 /W3  /GX /GR /Fe"%obuild_snova_path%\%obuild_dir_bin%\obuild_platform.exe" "%obuild_snova_path%\obuild\cpp\obuild_platform.cpp" 1> NUL
91  IF EXIST obuild_platform.obj DEL obuild_platform.obj
92)
93
94FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
95cd "%obuild_snova_path%\%obuild_dir_bin%"
96IF NOT EXIST .\obuild_platform.exe  ECHO Program obuild_platform.exe not found.  && GOTO obuild_return
97FOR /F "usebackq" %%j IN (`.\obuild_platform.exe  %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
98cd "%obuild_pwd_snova_0%"
99SET obuild_pwd_snova_0=
100IF NOT %obuild_platform_result% == yes GOTO end_if_platform_0
101SET obuild_cxx_command=cl.exe
102:end_if_platform_0
103SET obuild_platform_result=
104IF "%obuild_cxx_command%" == ""  ECHO Variable obuild_cxx_command not defined.  && GOTO obuild_return
105
106FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
107cd "%obuild_snova_path%\%obuild_dir_bin%"
108IF NOT EXIST .\obuild_platform.exe  ECHO Program obuild_platform.exe not found.  && GOTO obuild_return
109FOR /F "usebackq" %%j IN (`.\obuild_platform.exe  %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
110cd "%obuild_pwd_snova_0%"
111SET obuild_pwd_snova_0=
112IF NOT %obuild_platform_result% == yes GOTO end_if_platform_1
113SET obuild_cxx_optimize=/O2
114:end_if_platform_1
115SET obuild_platform_result=
116
117FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
118cd "%obuild_snova_path%\%obuild_dir_bin%"
119IF NOT EXIST .\obuild_platform.exe  ECHO Program obuild_platform.exe not found.  && GOTO obuild_return
120FOR /F "usebackq" %%j IN (`.\obuild_platform.exe  %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
121cd "%obuild_pwd_snova_0%"
122SET obuild_pwd_snova_0=
123IF NOT %obuild_platform_result% == yes GOTO end_if_platform_2
124SET obuild_cxx_debug=/ZI /Od
125:end_if_platform_2
126SET obuild_platform_result=
127
128FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
129cd "%obuild_snova_path%\%obuild_dir_bin%"
130IF NOT EXIST .\obuild_platform.exe  ECHO Program obuild_platform.exe not found.  && GOTO obuild_return
131FOR /F "usebackq" %%j IN (`.\obuild_platform.exe  %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
132cd "%obuild_pwd_snova_0%"
133SET obuild_pwd_snova_0=
134IF NOT %obuild_platform_result% == yes GOTO end_if_platform_3
135SET obuild_cxx_options=/nologo /DWIN32 /MD /GX /GR /W3
136:end_if_platform_3
137SET obuild_platform_result=
138
139IF NOT %obuild_debug% == yes GOTO else_if_db_build_lib_snova_sh_4
140  SET obuild_cxx_debug_local=%obuild_cxx_debug%
141  GOTO end_if_db_build_lib_snova_sh_4
142:else_if_db_build_lib_snova_sh_4
143  SET obuild_cxx_debug_local=
144:end_if_db_build_lib_snova_sh_4
145
146IF NOT %obuild_optimize% == yes GOTO else_if_opt_build_lib_snova_sh_5
147  SET obuild_cxx_optimize_local=%obuild_cxx_optimize%
148  GOTO end_if_opt_build_lib_snova_sh_5
149:else_if_opt_build_lib_snova_sh_5
150  SET obuild_cxx_optimize_local=
151:end_if_opt_build_lib_snova_sh_5
152
153
154IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%" MKDIR "%obuild_snova_path%\%obuild_dir_bin%"
155IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%\obuild_find.exe" (
156  cl.exe /nologo /DWIN32 /MD /O2 /W3 /GX /GR /Fe"%obuild_snova_path%\%obuild_dir_bin%\obuild_find.exe" "%obuild_snova_path%\obuild\cpp\obuild_find.cpp" 1> NUL
157  IF EXIST obuild_find.obj DEL obuild_find.obj
158)
159FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
160cd "%obuild_snova_path%\%obuild_dir_bin%"
161IF NOT EXIST obuild_find.exe  ECHO Program obuild_find.exe not found.  && GOTO obuild_return
162FOR /F "usebackq delims=;" %%j IN (`.\obuild_find.exe  bhep v1r4p2`) DO SET obuild_bhep_path=%%j
163cd "%obuild_pwd_snova_0%"
164SET obuild_pwd_snova_0=
165IF NOT DEFINED obuild_bhep_path  ECHO Can't find bhep package.  && GOTO obuild_return
166
167SET obuild_cxx_includes=/I"%obuild_snova_path%"
168SET obuild_cxx_includes=%obuild_cxx_includes% /I"%obuild_snova_path%\source\GeomUtils\include"
169SET obuild_cxx_includes=%obuild_cxx_includes% /I"%obuild_snova_path%\source\SNgeom2\include"
170SET obuild_cxx_includes=%obuild_cxx_includes% /I"%obuild_snova_path%\source\SNvertex\include"
171SET obuild_cxx_includes=%obuild_cxx_includes% /I"%obuild_bhep_path%"
172
173IF EXIST "%obuild_snova_path%\%obuild_dir_bin%\lib_snova" RMDIR /S /Q "%obuild_snova_path%\%obuild_dir_bin%\lib_snova"
174IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%\lib_snova" MKDIR "%obuild_snova_path%\%obuild_dir_bin%\lib_snova"
175
176@IF %obuild_verbose% == yes @ECHO ON
177cd "%obuild_snova_path%\%obuild_dir_bin%"
178%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\event.obj  /Tp"..\source\snova\base\event.cc" 1> cl_exe_error
179@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
180@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
181cd "%obuild_snova_path%\obuild"
182
183cd "%obuild_snova_path%\%obuild_dir_bin%"
184%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\generator.obj  /Tp"..\source\snova\base\generator.cc" 1> cl_exe_error
185@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
186@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
187cd "%obuild_snova_path%\obuild"
188
189cd "%obuild_snova_path%\%obuild_dir_bin%"
190%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\run.obj  /Tp"..\source\snova\base\run.cc" 1> cl_exe_error
191@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
192@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
193cd "%obuild_snova_path%\obuild"
194
195cd "%obuild_snova_path%\%obuild_dir_bin%"
196%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\snova_const.obj  /Tp"..\source\snova\base\snova_const.cc" 1> cl_exe_error
197@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
198@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
199cd "%obuild_snova_path%\obuild"
200
201cd "%obuild_snova_path%\%obuild_dir_bin%"
202%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\snova_mgr.obj  /Tp"..\source\snova\base\snova_mgr.cc" 1> cl_exe_error
203@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
204@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
205cd "%obuild_snova_path%\obuild"
206
207cd "%obuild_snova_path%\%obuild_dir_bin%"
208%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\snova_utils.obj  /Tp"..\source\snova\base\snova_utils.cc" 1> cl_exe_error
209@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
210@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
211cd "%obuild_snova_path%\obuild"
212
213cd "%obuild_snova_path%\%obuild_dir_bin%"
214%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\stacking.obj  /Tp"..\source\snova\base\stacking.cc" 1> cl_exe_error
215@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
216@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
217cd "%obuild_snova_path%\obuild"
218
219cd "%obuild_snova_path%\%obuild_dir_bin%"
220%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\stepping.obj  /Tp"..\source\snova\base\stepping.cc" 1> cl_exe_error
221@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
222@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
223cd "%obuild_snova_path%\obuild"
224
225cd "%obuild_snova_path%\%obuild_dir_bin%"
226%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\stepping_verbose.obj  /Tp"..\source\snova\base\stepping_verbose.cc" 1> cl_exe_error
227@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
228@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
229cd "%obuild_snova_path%\obuild"
230
231cd "%obuild_snova_path%\%obuild_dir_bin%"
232%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\tracking.obj  /Tp"..\source\snova\base\tracking.cc" 1> cl_exe_error
233@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
234@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
235cd "%obuild_snova_path%\obuild"
236
237cd "%obuild_snova_path%\%obuild_dir_bin%"
238%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\geometry2.obj  /Tp"..\source\snova\geom\geometry2.cc" 1> cl_exe_error
239@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
240@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
241cd "%obuild_snova_path%\obuild"
242
243cd "%obuild_snova_path%\%obuild_dir_bin%"
244%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\materials.obj  /Tp"..\source\snova\geom\materials.cc" 1> cl_exe_error
245@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
246@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
247cd "%obuild_snova_path%\obuild"
248
249cd "%obuild_snova_path%\%obuild_dir_bin%"
250%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\nemo_field2.obj  /Tp"..\source\snova\geom\nemo_field2.cc" 1> cl_exe_error
251@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
252@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
253cd "%obuild_snova_path%\obuild"
254
255cd "%obuild_snova_path%\%obuild_dir_bin%"
256%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\visibilities2.obj  /Tp"..\source\snova\geom\visibilities2.cc" 1> cl_exe_error
257@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
258@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
259cd "%obuild_snova_path%\obuild"
260
261cd "%obuild_snova_path%\%obuild_dir_bin%"
262%obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova\physics.obj  /Tp"..\source\snova\physics\physics.cc" 1> cl_exe_error
263@IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
264@IF NOT ERRORLEVEL 1 @DEL cl_exe_error
265cd "%obuild_snova_path%\obuild"
266
267@IF %obuild_verbose% == yes @ECHO OFF
268
269FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
270cd "%obuild_snova_path%\%obuild_dir_bin%"
271IF NOT EXIST .\obuild_platform.exe  ECHO Program obuild_platform.exe not found.  && GOTO obuild_return
272FOR /F "usebackq" %%j IN (`.\obuild_platform.exe  %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
273cd "%obuild_pwd_snova_0%"
274SET obuild_pwd_snova_0=
275IF NOT %obuild_platform_result% == yes GOTO end_if_platform_26
276SET obuild_cxx_linker_command=link.exe
277:end_if_platform_26
278SET obuild_platform_result=
279IF "%obuild_cxx_linker_command%" == ""  ECHO Variable obuild_cxx_linker_command not defined.  && GOTO obuild_return
280
281FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
282cd "%obuild_snova_path%\%obuild_dir_bin%"
283IF NOT EXIST .\obuild_platform.exe  ECHO Program obuild_platform.exe not found.  && GOTO obuild_return
284FOR /F "usebackq" %%j IN (`.\obuild_platform.exe  %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
285cd "%obuild_pwd_snova_0%"
286SET obuild_pwd_snova_0=
287IF NOT %obuild_platform_result% == yes GOTO end_if_platform_27
288SET obuild_cxx_linker_debug=/DEBUG
289:end_if_platform_27
290SET obuild_platform_result=
291
292FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
293cd "%obuild_snova_path%\%obuild_dir_bin%"
294IF NOT EXIST .\obuild_platform.exe  ECHO Program obuild_platform.exe not found.  && GOTO obuild_return
295FOR /F "usebackq" %%j IN (`.\obuild_platform.exe  %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
296cd "%obuild_pwd_snova_0%"
297SET obuild_pwd_snova_0=
298IF NOT %obuild_platform_result% == yes GOTO end_if_platform_28
299SET obuild_cxx_linker_options=/nologo
300:end_if_platform_28
301SET obuild_platform_result=
302
303IF NOT %obuild_debug% == yes GOTO else_if_db_build_lib_snova_sh_29
304  SET obuild_cxx_linker_debug_local=%obuild_cxx_linker_debug%
305  GOTO end_if_db_build_lib_snova_sh_29
306:else_if_db_build_lib_snova_sh_29
307  SET obuild_cxx_linker_debug_local=
308:end_if_db_build_lib_snova_sh_29
309
310IF NOT %obuild_optimize% == yes GOTO else_if_opt_build_lib_snova_sh_30
311  SET obuild_cxx_linker_optimize_local=%obuild_cxx_linker_optimize%
312  GOTO end_if_opt_build_lib_snova_sh_30
313:else_if_opt_build_lib_snova_sh_30
314  SET obuild_cxx_linker_optimize_local=
315:end_if_opt_build_lib_snova_sh_30
316
317FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
318cd "%obuild_snova_path%\%obuild_dir_bin%"
319IF EXIST .\lib_snova\tmp_objs DEL .\lib_snova\tmp_objs
320FOR %%f IN (.\lib_snova\*.obj) DO ECHO %%f >> .\lib_snova\tmp_objs
321
322REM # Create the archive library snova :
323@IF %obuild_verbose% == yes @ECHO ON
324lib.exe /nologo /machine:ix86 /out:.\lib_snova\snova.arc @.\lib_snova\tmp_objs
325@IF ERRORLEVEL 1 @GOTO obuild_return
326@IF %obuild_verbose% == yes @ECHO OFF
327
328REM # Build the obuild_windef.exe utility program :
329cl.exe /nologo /DWIN32 /MD /O2 /W3 /Feobuild_windef.exe "%obuild_snova_path%\obuild\cpp\obuild_windef.c" 1> NUL
330IF EXIST obuild_windef.obj DEL obuild_windef.obj
331
332REM # Building the .def file :
333@IF %obuild_verbose% == yes @ECHO ON
334dumpbin.exe /symbols /out:.\lib_snova\tmp .\lib_snova\snova.arc 1> dumpbin_exe_error .\lib_snova\snova.arc
335@IF ERRORLEVEL 1 @TYPE dumpbin_exe_error && @GOTO obuild_return
336@IF NOT ERRORLEVEL 1 @DEL dumpbin_exe_error
337@IF %obuild_verbose% == yes @ECHO OFF
338.\obuild_windef.exe snova < .\lib_snova\tmp > .\lib_snova\snova.def
339REM # Building the linking library :
340REM # It produces a .exp file.
341@IF %obuild_verbose% == yes @ECHO ON
342lib.exe /nologo /machine:ix86 /out:.\snova.lib /def:.\lib_snova\snova.def 1> lib_exe_error
343@IF ERRORLEVEL 1 @TYPE lib_exe_error && @GOTO obuild_return
344@IF NOT ERRORLEVEL 1 @DEL lib_exe_error
345@IF %obuild_verbose% == yes @ECHO OFF
346
347REM # Building the DLL :
348IF EXIST .\snova.dll DEL .\snova.dll
349@IF %obuild_verbose% == yes @ECHO ON
350link.exe /nologo /dll /out:.\snova.dll .\snova.exp .\lib_snova\snova.arc %obuild_linked_libraries%
351@IF %obuild_verbose% == yes @ECHO OFF
352
353cd "%obuild_pwd_snova_0%"
354SET obuild_pwd_snova_0=
355REM # Some cleanup :
356IF EXIST "%obuild_snova_path%\%obuild_dir_bin%\lib_snova\tmp_objs" DEL "%obuild_snova_path%\%obuild_dir_bin%\lib_snova\tmp_objs"
357IF EXIST "%obuild_snova_path%\%obuild_dir_bin%\snova.exp" DEL "%obuild_snova_path%\%obuild_dir_bin%\snova.exp"
358
359:obuild_return
360ENDLOCAL
361@ECHO ON
Note: See TracBrowser for help on using the repository browser.