-
Notifications
You must be signed in to change notification settings - Fork 18
/
make_vc.bat
251 lines (220 loc) · 7.92 KB
/
make_vc.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
@echo off
rem ============================================================================
rem
rem $Id$
rem
rem FILE: make_vc.bat
rem BATCH FILE FOR Microsoft C/C++
rem
rem This is Generic File, do not change it. If you should require your own build
rem version, changes should only be made on your local copy.(AJ:2008-04-26)
rem
rem ============================================================================
REM SET HB_ARCH=w64
REM SET HB_WARNING_FLAGS=
REM SET HB_DEBUG=d
REM SET HB_GUI=1
REM SET HB_NO_BACKGROUND=1
REM SET HB_DIR_POSTGRESQL=
REM SET HB_DIR_OCILIB=
REM SET HB_DIR_MYSQL=
REM SET HB_DIR_FIREBIRD=
REM SET HB_DIR_CAIRO=
REM SET HB_DIR_CURL=
REM SET HB_DIR_OPENSSL=
REM SET HB_DIR_MAGIC=
REM SET HB_DIR_ADS=
IF "%__MAKE__%"=="" SET __MAKE__=nmake
REM Make that the current directory is the same as the batch file (root of xHarbour)
CD %~dp0
SET "scriptName=%~n0"
ECHO *** START [%~f0](%*) > winmake\functions.log
:SET_CC
CALL winmake\find_vc.bat
IF ERRORLEVEL 99 GOTO ERROR_99
IF ERRORLEVEL 2 GOTO ABORTED
IF ERRORLEVEL 1 GOTO NOT_READY
GOTO FIND_BISON
:ERROR_99
ECHO.
ECHO. ---------------------------------------
ECHO. Make Utility for %C_LONG_NAME%
ECHO. ---------------------------------------
ECHO.
ECHO. Unexpected error!
ECHO.
GOTO EXIT
:ABORTED
ECHO.
ECHO. ---------------------------------------
ECHO. Make Utility for %C_LONG_NAME%
ECHO. ---------------------------------------
ECHO.
ECHO. Aborted by user.
ECHO.
GOTO EXIT
:NOT_READY
ECHO.
ECHO. ---------------------------------------
ECHO. Make Utility for %C_LONG_NAME%
ECHO. ---------------------------------------
ECHO.
ECHO. %C_LONG_NAME% not found.
ECHO. Please install and try again.
ECHO.
GOTO EXIT
:FIND_BISON
IF NOT "%BISON_DIR%"=="" GOTO READY
CALL winmake\find_bison.bat
IF "%CC%"=="" GOTO NOT_READY
GOTO READY
:READY
REM NOT an error using $() synttax because it will be LATE expanded by make!
IF "%HB_GT_LIB%" == "" SET "HB_GT_LIB=$(GTWIN_LIB)"
REM echo "%CC_DIR%"
:SAVE_PATH
REM Save the original path before further modifications
SET _PATH=%PATH%
rem ============================================================================
rem The followings should never change
rem Do not hard-code in makefile because there are needed for clean build
rem ============================================================================
SET LIBEXT=%HB_DEBUG%.lib
SET OBJEXT=%HB_DEBUG%.obj
SET DIR_SEP=\
SET LIBPREFIX=
rem ============================================================================
if "%1"=="/?" goto SYNTAX
if "%1"=="-?" goto SYNTAX
if "%1"=="?" goto SYNTAX
if "%1"=="" goto BUILD
if "%1"=="NOMT" goto BUILD
if "%1"=="nomt" goto BUILD
if "%1"=="clean" goto CLEAN
if "%1"=="CLEAN" goto CLEAN
if "%1"=="CORE" goto BUILD
if "%1"=="core" goto BUILD
if "%1"=="DLL" goto DLL
if "%1"=="dll" goto DLL
if "%1"=="CONTRIB" goto CONTRIBS
if "%1"=="contrib" goto CONTRIBS
if "%1"=="ALL" goto BUILD_ALL
if "%1"=="all" goto BUILD_ALL
goto SYNTAX
rem=============================================================================
:BUILD
rem=============================================================================
SET __BLD__=CORE_BLD
SET HB_THREAD_SUPPORT=
SET HB_MT=
SET HB_MT_DIR=
@CALL winmake\mdir.bat
%__MAKE__% /NOLOGO -f winmake\makefile.%C_SHORT_NAME% >make_%SUB_DIR%.log
if errorlevel 1 goto BUILD_ERR
if "%1"=="NOMT" goto BUILD_OK
if "%1"=="nomt" goto BUILD_OK
if "%2"=="NOMT" goto BUILD_OK
if "%2"=="nomt" goto BUILD_OK
SET HB_THREAD_SUPPORT=1
SET HB_MT=mt
SET HB_MT_DIR=
@CALL winmake\mdir.bat
%__MAKE__% /NOLOGO -f winmake\makefile.%C_SHORT_NAME% >>make_%SUB_DIR%.log
if errorlevel 1 goto BUILD_ERR
goto BUILD_OK
rem=============================================================================
:BUILD_OK
rem=============================================================================
@CALL winmake\mdir.bat copytobin
if "%MAKEALL%"=="" @ECHO ****** End of Job *****
if "%MAKEALL%"=="" goto EXIT
if "%1"=="CORE" @ECHO ****** End of Job *****
if "%1"=="core" @ECHO ****** End of Job *****
if "%1"=="CORE" goto EXIT
if "%1"=="core" goto EXIT
goto DLL
rem=============================================================================
:BUILD_ERR
rem=============================================================================
IF EXIST make_%SUB_DIR%.log notepad make_%SUB_DIR%.log
goto EXIT
rem=============================================================================
:DLL
rem=============================================================================
rem
rem We use HB_MT_DIR envar for DLL object folder here
rem
SET __BLD__=DLL_BLD
SET HB_THREAD_SUPPORT=
SET HB_MT=
SET HB_MT_DIR=\dll
REM SET HB_NO_VM_ALL=1
@CALL winmake\mdir.bat dllcreate
%__MAKE__% /NOLOGO -f winmake\makefile.%C_SHORT_NAME% >dll_%SUB_DIR%.log
if errorlevel 1 goto DLL_ERR
goto DLL_OK
rem=============================================================================
:DLL_OK
rem=============================================================================
@CALL winmake\mdir.bat dllcopy
if "%MAKEALL%"=="" @ECHO ****** End of Job *****
IF "%MAKEALL%"=="" goto EXIT
IF "%1"=="DLL" @ECHO ****** End of Job *****
IF "%1"=="dll" @ECHO ****** End of Job *****
IF "%1"=="DLL" goto EXIT
IF "%1"=="dll" goto EXIT
goto CONTRIBS
rem=============================================================================
:DLL_ERR
rem=============================================================================
if exist dll_%SUB_DIR%.log notepad dll_%SUB_DIR%.log
goto EXIT
rem=============================================================================
:CONTRIBS
rem=============================================================================
SET __BLD__=CONTRIB_BLD
SET HB_THREAD_SUPPORT=
SET HB_MT=
SET HB_MT_DIR=
@CALL winmake\mdir.bat
%__MAKE__% /NOLOGO -f winmake\makefile.%C_SHORT_NAME% >cont_%SUB_DIR%.log
if errorlevel 1 goto CONTRIBS_ERR
rem=============================================================================
:CONTRIBS_OK
rem=============================================================================
@CALL winmake\mdir.bat copycontrib
@ECHO ****** End of Job *****
goto EXIT
rem=============================================================================
:CONTRIBS_ERR
rem=============================================================================
IF EXIST cont_%SUB_DIR%.log notepad cont_%SUB_DIR%.log
goto EXIT
rem=============================================================================
:BUILD_ALL
rem=============================================================================
SET MAKEALL=yes
goto BUILD
rem=============================================================================
:SYNTAX
rem=============================================================================
ECHO.
ECHO. ---------------------------------------
ECHO. Make Utility for %C_LONG_NAME%
ECHO. ---------------------------------------
@CALL winmake\mdir.bat howto
goto EXIT
rem=============================================================================
:CLEAN
rem=============================================================================
@CALL winmake\mdir.bat clean
IF "%2"=="BUILD" goto BUILD_ALL
IF "%2"=="build" goto BUILD_ALL
@ECHO ****** End of Job *****
goto EXIT
rem=============================================================================
:EXIT
rem=============================================================================
@CALL winmake\mdir.bat resetenvar
set "scriptName="
ECHO *** END[%ERRORLEVEL%] [%~f0] >> winmake\functions.log