-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
compile.bat
320 lines (266 loc) · 12.8 KB
/
compile.bat
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
@echo off
rem
rem $Id: compile.bat $
rem
:COMPILE
cls
pushd "%~dp0"
set HG_START_DP_COMPILE_BAT=%CD%
popd
if /I not "%1" == "/C" goto ROOT
shift
set HG_ROOT=
set HG_HRB=
set HG_MINGW=
set HG_BCC=
set HG_CCOMP=
set HG_RC=
set LIB_GUI=
set LIB_HRB=
set BIN_HRB=
set HG_ADDLIBS=
set HG_ADDSTATIC=
set HG_FLAVOR=
:ROOT
if not "%HG_ROOT%" == "" goto TEST
set HG_ROOT=%HG_START_DP_COMPILE_BAT%
:TEST
if /I "%1" == "HM30" goto TEST_HM30
if /I "%1" == "HM32" goto TEST_HM32
if /I "%1" == "HM3264" goto TEST_HM3264
if /I "%1" == "HM34" goto TEST_HM34
if /I "%1" == "HM3464" goto TEST_HM3464
if /I "%1" == "XB55" goto TEST_XB
if /I "%1" == "XB58" goto TEST_XB
if /I "%1" == "XM" goto TEST_XM
:DETECT_HM30
if not exist "%HG_ROOT%\compile30.bat" goto DETECT_HM32
if exist "%HG_ROOT%\compile32.bat" goto SYNTAX
if exist "%HG_ROOT%\compile3264.bat" goto SYNTAX
if exist "%HG_ROOT%\compile34.bat" goto SYNTAX
if exist "%HG_ROOT%\compile3464.bat" goto SYNTAX
if exist "%HG_ROOT%\compileXB.bat" goto SYNTAX
if exist "%HG_ROOT%\compileXM.bat" goto SYNTAX
goto COMPILE_HM30
:DETECT_HM32
if not exist "%HG_ROOT%\compile32.bat" goto DETECT_HM3264
if exist "%HG_ROOT%\compile3264.bat" goto SYNTAX
if exist "%HG_ROOT%\compile34.bat" goto SYNTAX
if exist "%HG_ROOT%\compile3464.bat" goto SYNTAX
if exist "%HG_ROOT%\compileXB.bat" goto SYNTAX
if exist "%HG_ROOT%\compileXM.bat" goto SYNTAX
goto COMPILE_HM32
:DETECT_HM3264
if not exist "%HG_ROOT%\compile3264.bat" goto DETECT_HM34
if exist "%HG_ROOT%\compile34.bat" goto SYNTAX
if exist "%HG_ROOT%\compile3464.bat" goto SYNTAX
if exist "%HG_ROOT%\compileXB.bat" goto SYNTAX
if exist "%HG_ROOT%\compileXM.bat" goto SYNTAX
goto COMPILE_HM3264
:DETECT_HM34
if not exist "%HG_ROOT%\compile34.bat" goto DETECT_HM3464
if exist "%HG_ROOT%\compile3464.bat" goto SYNTAX
if exist "%HG_ROOT%\compileXB.bat" goto SYNTAX
if exist "%HG_ROOT%\compileXM.bat" goto SYNTAX
goto COMPILE_HM34
:DETECT_HM3464
if not exist "%HG_ROOT%\compile3464.bat" goto DETECT_XB
if exist "%HG_ROOT%\compileXB.bat" goto SYNTAX
if exist "%HG_ROOT%\compileXM.bat" goto SYNTAX
goto COMPILE_HM3464
:DETECT_XB
if not exist "%HG_ROOT%\compileXB.bat" goto DETECT_XM
if exist "%HG_ROOT%\compileXM.bat" goto SYNTAX
goto COMPILE_XB
:DETECT_XM
if exist "%HG_ROOT%\compileXM.bat" goto COMPILE_XM
echo File %HG_ROOT%\compile30.bat not found !!!
echo File %HG_ROOT%\compile32.bat not found !!!
echo File %HG_ROOT%\compile3264.bat not found !!!
echo File %HG_ROOT%\compile34.bat not found !!!
echo File %HG_ROOT%\compile3464.bat not found !!!
echo File %HG_ROOT%\compileXB.bat not found !!!
echo File %HG_ROOT%\compileXM.bat not found !!!
echo.
goto END
:SYNTAX
echo Syntax:
echo To build with Harbour 3.0 and MinGW
echo compile [/C] HM30 file [options]
echo To build with Harbour 3.2 and MinGW
echo compile [/C] HM32 file [options]
echo To build with Harbour 3.2 and MinGW, 64 bits
echo compile [/C] HM3264 file [options]
echo To build with Harbour 3.4 and MinGW
echo compile [/C] HM34 file [options]
echo To build with Harbour 3.4 and MinGW, 64 bits
echo compile [/C] HM3464 file [options]
echo To build with xHarbour and BCC 5.5.1
echo compile [/C] XB55 file [options]
echo To build with xHarbour and BCC 5.8.2
echo compile [/C] XB58 file [options]
echo To build with xHarbour and MinGW
echo compile [/C] XM file [options]
echo.
goto END
:TEST_HM30
shift
if exist "%HG_ROOT%\compile30.bat" goto COMPILE_HM30
echo File compile30.bat not found !!!
echo.
goto END
:TEST_HM32
shift
if exist "%HG_ROOT%\compile32.bat" goto COMPILE_HM32
echo File compile32.bat not found !!!
echo.
goto END
:TEST_HM3264
shift
if exist "%HG_ROOT%\compile3264.bat" goto COMPILE_HM3264
echo File compile3264.bat not found !!!
echo.
goto END
:TEST_HM34
shift
if exist "%HG_ROOT%\compile34.bat" goto COMPILE_HM34
echo File compile34.bat not found !!!
echo.
goto END
:TEST_HM3464
shift
if exist "%HG_ROOT%\compile3464.bat" goto COMPILE_HM3464
echo File compile3464.bat not found !!!
echo.
goto END
:TEST_XB
shift
if exist "%HG_ROOT%\compileXB.bat" goto COMPILE_XB
echo File compileXB.bat not found !!!
echo.
goto END
:TEST_XM
shift
if exist "%HG_ROOT%\compileXM.bat" goto COMPILE_XM
echo File compileXM.bat not found !!!
echo.
goto END
:COMPILE_HM30
if "%HG_HRB%" == "" set HG_HRB=%HG_ROOT%\hb30
if "%HG_MINGW%" == "" set HG_MINGW=%HG_CCOMP%
if "%HG_MINGW%" == "" set HG_MINGW=%HG_HRB%\comp\mingw
set HG_CCOMP=%HG_MINGW%
if "%LIB_GUI%" == "" set LIB_GUI=lib
if "%LIB_HRB%" == "" set LIB_HRB=lib
if "%BIN_HRB%" == "" set BIN_HRB=bin
if "%HG_RC%" == "" set HG_RC=%HG_ROOT%\resources\ooHG_HM30.o
if "%HG_ADDLIBS%" == "" set HG_ADDLIBS=-lhbpcre -lhbhpdf -llibhpdf -lhbuddall
if "%HG_INC_HRB%" == "" set HG_INC_HRB=%HG_HRB%\contrib\hbct;%HG_HRB%\contrib\hbhpdf;%HG_HRB%\contrib\hbmysql;%HG_HRB%\contrib\hbmzip;%HG_HRB%\contrib\hbwin;%HG_HRB%\contrib\hbzebra;%HG_HRB%\contrib\xhb;
if "%HG_INC_CCOMP%" == "" set HG_INC_CCOMP=-I%HG_HRB%\contrib\hbct -I%HG_HRB%\contrib\hbhpdf -I%HG_HRB%\contrib\hbmysql -I%HG_HRB%\contrib\hbmzip -I%HG_HRB%\contrib\hbwin -I%HG_HRB%\contrib\hbzebra -I%HG_HRB%\contrib\xhb
if "%HG_INC_RC%" == "" set HG_INC_RC=-I%HG_ROOT%\resources
set HG_FLAVOR=HARBOUR
call "%HG_ROOT%\compile_mingw.bat" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto END
:COMPILE_HM32
if "%HG_HRB%" == "" set HG_HRB=%HG_ROOT%\hb32
if "%HG_MINGW%" == "" set HG_MINGW=%HG_CCOMP%
if "%HG_MINGW%" == "" set HG_MINGW=%HG_HRB%\comp\mingw
set HG_CCOMP=%HG_MINGW%
if "%LIB_GUI%" == "" set LIB_GUI=lib\hb\mingw
if "%LIB_HRB%" == "" set LIB_HRB=lib\win\mingw
if "%BIN_HRB%" == "" set BIN_HRB=bin
if "%HG_RC%" == "" set HG_RC=%HG_ROOT%\resources\ooHG_HM32.o
if "%HG_ADDLIBS%" == "" set HG_ADDLIBS=-lhbpcre -lhbhpdf -llibhpdf -lhbuddall -lhbcurl -llibcurl-4
if "%HG_ADDSTATIC%" == "" set HG_ADDSTATIC=-static-libstdc++ -pthread -lpthread
if "%HG_INC_HRB%" == "" set HG_INC_HRB=%HG_HRB%\contrib\hbct;%HG_HRB%\contrib\hbhpdf;%HG_HRB%\contrib\hbmysql;%HG_HRB%\contrib\hbmzip;%HG_HRB%\contrib\hbwin;%HG_HRB%\contrib\hbzebra;%HG_HRB%\contrib\xhb;
if "%HG_INC_CCOMP%" == "" set HG_INC_CCOMP=-I%HG_HRB%\contrib\hbct -I%HG_HRB%\contrib\hbhpdf -I%HG_HRB%\contrib\hbmysql -I%HG_HRB%\contrib\hbmzip -I%HG_HRB%\contrib\hbwin -I%HG_HRB%\contrib\hbzebra -I%HG_HRB%\contrib\xhb
if "%HG_INC_RC%" == "" set HG_INC_RC=-I%HG_ROOT%\resources
set HG_FLAVOR=HARBOUR
call "%HG_ROOT%\compile_mingw.bat" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto END
:COMPILE_HM3264
if "%HG_HRB%" == "" set HG_HRB=%HG_ROOT%\hb3264
if "%HG_MINGW%" == "" set HG_MINGW=%HG_CCOMP%
if "%HG_MINGW%" == "" set HG_MINGW=%HG_HRB%\comp\mingw
set HG_CCOMP=%HG_MINGW%
if "%LIB_GUI%" == "" set LIB_GUI=lib\hb\mingw64
if "%LIB_HRB%" == "" set LIB_HRB=lib\win\mingw64
if "%BIN_HRB%" == "" set BIN_HRB=bin
if "%HG_RC%" == "" set HG_RC=%HG_ROOT%\resources\ooHG_HM3264.o
if "%HG_ADDLIBS%" == "" set HG_ADDLIBS=-lhbpcre -lhbhpdf -llibhpdf -lhbuddall -lhbcurl -llibcurl-4
if "%HG_ADDSTATIC%" == "" set HG_ADDSTATIC=-static-libstdc++ -pthread -lpthread
if "%HG_INC_HRB%" == "" set HG_INC_HRB=%HG_HRB%\contrib\hbct;%HG_HRB%\contrib\hbhpdf;%HG_HRB%\contrib\hbmysql;%HG_HRB%\contrib\hbmzip;%HG_HRB%\contrib\hbwin;%HG_HRB%\contrib\hbzebra;%HG_HRB%\contrib\xhb;
if "%HG_INC_CCOMP%" == "" set HG_INC_CCOMP=-I%HG_HRB%\contrib\hbct -I%HG_HRB%\contrib\hbhpdf -I%HG_HRB%\contrib\hbmysql -I%HG_HRB%\contrib\hbmzip -I%HG_HRB%\contrib\hbwin -I%HG_HRB%\contrib\hbzebra -I%HG_HRB%\contrib\xhb
if "%HG_INC_RC%" == "" set HG_INC_RC=-I%HG_ROOT%\resources
set HG_FLAVOR=HARBOUR
call "%HG_ROOT%\compile_mingw.bat" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto END
:COMPILE_HM34
if "%HG_HRB%" == "" set HG_HRB=%HG_ROOT%\hb34
if "%HG_MINGW%" == "" set HG_MINGW=%HG_CCOMP%
if "%HG_MINGW%" == "" set HG_MINGW=%HG_HRB%\comp\mingw
set HG_CCOMP=%HG_MINGW%
if "%LIB_GUI%" == "" set LIB_GUI=lib\hb34\mingw
if "%LIB_HRB%" == "" set LIB_HRB=lib\win\clang
if "%BIN_HRB%" == "" set BIN_HRB=bin
if "%HG_RC%" == "" set HG_RC=%HG_ROOT%\resources\ooHG_HM34.o
if "%HG_ADDLIBS%" == "" set HG_ADDLIBS=-lhbpcre2 -lhpdf -lhbhpdf -lhbcurl -llibcurl-4
if "%HG_ADDSTATIC%" == "" set HG_ADDSTATIC=-static-libstdc++ -pthread -lpthread
if "%HG_INC_HRB%" == "" set HG_INC_HRB=%HG_HRB%\contrib\hbct;%HG_HRB%\contrib\hbhpdf;%HG_HRB%\contrib\hbmysql;%HG_HRB%\contrib\hbmzip;%HG_HRB%\contrib\hbwin;%HG_HRB%\contrib\hbzebra;%HG_HRB%\contrib\xhb;
if "%HG_INC_CCOMP%" == "" set HG_INC_CCOMP=-I%HG_HRB%\contrib\hbct -I%HG_HRB%\contrib\hbhpdf -I%HG_HRB%\contrib\hbmysql -I%HG_HRB%\contrib\hbmzip -I%HG_HRB%\contrib\hbwin -I%HG_HRB%\contrib\hbzebra -I%HG_HRB%\contrib\xhb
if "%HG_INC_RC%" == "" set HG_INC_RC=-I%HG_ROOT%\resources
set HG_FLAVOR=HARBOUR
call "%HG_ROOT%\compile_mingw.bat" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto END
:COMPILE_HM3464
if "%HG_HRB%" == "" set HG_HRB=%HG_ROOT%\hb3464
if "%HG_MINGW%" == "" set HG_MINGW=%HG_CCOMP%
if "%HG_MINGW%" == "" set HG_MINGW=%HG_HRB%\comp\mingw
set HG_CCOMP=%HG_MINGW%
if "%LIB_GUI%" == "" set LIB_GUI=lib\hb34\mingw64
if "%LIB_HRB%" == "" set LIB_HRB=lib\win\clang64
if "%BIN_HRB%" == "" set BIN_HRB=bin
if "%HG_RC%" == "" set HG_RC=%HG_ROOT%\resources\ooHG_HM3464.o
if "%HG_ADDLIBS%" == "" set HG_ADDLIBS=-lhbpcre2 -lhpdf -lhbhpdf -lhbcurl -llibcurl-4
if "%HG_ADDSTATIC%" == "" set HG_ADDSTATIC=-static-libstdc++ -pthread -lpthread
if "%HG_INC_HRB%" == "" set HG_INC_HRB=%HG_HRB%\contrib\hbct;%HG_HRB%\contrib\hbhpdf;%HG_HRB%\contrib\hbmysql;%HG_HRB%\contrib\hbmzip;%HG_HRB%\contrib\hbwin;%HG_HRB%\contrib\hbzebra;%HG_HRB%\contrib\xhb;
if "%HG_INC_CCOMP%" == "" set HG_INC_CCOMP=-I%HG_HRB%\contrib\hbct -I%HG_HRB%\contrib\hbhpdf -I%HG_HRB%\contrib\hbmysql -I%HG_HRB%\contrib\hbmzip -I%HG_HRB%\contrib\hbwin -I%HG_HRB%\contrib\hbzebra -I%HG_HRB%\contrib\xhb
if "%HG_INC_RC%" == "" set HG_INC_RC=-I%HG_ROOT%\resources
set HG_FLAVOR=HARBOUR
call "%HG_ROOT%\compile_mingw.bat" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto END
:COMPILE_XB
if "%HG_HRB%" == "" set HG_HRB=%HG_ROOT%\xhbcc
if "%HG_BCC%" == "" set HG_BCC=%HG_CCOMP%
if "%HG_BCC%" == "" if /I "%1" == "XB58" set HG_BCC=c:\Borland\BCC58
if "%HG_BCC%" == "" set HG_BCC=c:\Borland\BCC55
set HG_CCOMP=%HG_BCC%
if "%LIB_GUI%" == "" set LIB_GUI=lib\xhb\bcc
if "%LIB_HRB%" == "" set LIB_HRB=lib
if "%BIN_HRB%" == "" set BIN_HRB=bin
if "%HG_RC%" == "" set HG_RC=%HG_ROOT%\resources\oohg.res
if "%HG_ADDLIBS%" == "" set HG_ADDLIBS=pcrepos hbhpdf libharu
if "%HG_INC_HRB%" == "" set HG_INC_HRB=%HG_HRB%\contrib\hbct;%HG_HRB%\contrib\hbhpdf;%HG_HRB%\contrib\hbmysql;%HG_HRB%\contrib\hbmzip;%HG_HRB%\contrib\hbwin;%HG_HRB%\contrib\hbzebra;%HG_HRB%\contrib\xhb;
if "%HG_INC_CCOMP%" == "" set HG_INC_CCOMP=-I%HG_HRB%\contrib\hbct -I%HG_HRB%\contrib\hbhpdf -I%HG_HRB%\contrib\hbmysql -I%HG_HRB%\contrib\hbmzip -I%HG_HRB%\contrib\hbwin -I%HG_HRB%\contrib\hbzebra -I%HG_HRB%\contrib\xhb
if "%HG_INC_RC%" == "" set HG_INC_RC=-i%HG_ROOT%\resources
set HG_FLAVOR=XHARBOUR
call "%HG_ROOT%\compile_bcc.bat" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto END
:COMPILE_XM
if "%HG_HRB%" == "" set HG_HRB=%HG_ROOT%\xhmingw
if "%HG_MINGW%" == "" set HG_MINGW=%HG_CCOMP%
if "%HG_MINGW%" == "" set HG_MINGW=%HG_HRB%\comp\mingw
set HG_CCOMP=%HG_MINGW%
if "%LIB_GUI%" == "" set LIB_GUI=lib\xhb\mingw
if "%LIB_HRB%" == "" set LIB_HRB=lib
if "%BIN_HRB%" == "" set BIN_HRB=bin
if "%HG_RC%" == "" set HG_RC=%HG_ROOT%\resources\oohg.res
if "%HG_ADDLIBS%" == "" set HG_ADDLIBS=-lpcrepos -lhbhpdf -llibharu
if "%HG_INC_HRB%" == "" set HG_INC_HRB=%HG_HRB%\contrib\hbct;%HG_HRB%\contrib\hbhpdf;%HG_HRB%\contrib\hbmysql;%HG_HRB%\contrib\hbmzip;%HG_HRB%\contrib\hbwin;%HG_HRB%\contrib\hbzebra;%HG_HRB%\contrib\xhb;
if "%HG_INC_CCOMP%" == "" set HG_INC_CCOMP=-I%HG_HRB%\contrib\hbct -I%HG_HRB%\contrib\hbhpdf -I%HG_HRB%\contrib\hbmysql -I%HG_HRB%\contrib\hbmzip -I%HG_HRB%\contrib\hbwin -I%HG_HRB%\contrib\hbzebra -I%HG_HRB%\contrib\xhb
if "%HG_INC_RC%" == "" set HG_INC_RC=-I%HG_ROOT%\resources
set HG_FLAVOR=XHARBOUR
call "%HG_ROOT%\compile_mingw.bat" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto END
:END
set HG_START_DP_COMPILE_BAT=