Mercurial > vim
annotate src/Make_bc5.mak @ 7625:b4384c581806 v7.4.1112
commit https://github.com/vim/vim/commit/2db5c3b3ceeaded7fb5a64dc5cb22b0cb95b78a1
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 16 22:49:34 2016 +0100
patch 7.4.1112
Problem: When using ":next" with an illegal file name no error is reported.
Solution: Give an error message.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 16 Jan 2016 23:00:05 +0100 |
parents | a4b4cbf8d044 |
children | bce3b5ddb393 |
rev | line source |
---|---|
7 | 1 # |
2 # Makefile for Vim. | |
3 # Compiler: Borland C++ 5.0 and later 32-bit compiler | |
4 # Targets: Dos16 or Win32 (Windows NT and Windows 95) (with/without GUI) | |
5 # | |
7435
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
6 # NOTE: THIS IS OLD AND PROBABLY NO LONGER WORKS. |
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
7 # |
7 | 8 # Contributed by Ben Singer. |
9 # Updated 4/1997 by Ron Aaron | |
10 # 6/1997 - added support for 16 bit DOS | |
11 # Note: this has been tested, and works, for BC5. Your mileage may vary. | |
12 # Has been reported NOT to work with BC 4.52. Maybe it can be fixed? | |
13 # 10/1997 - ron - fixed bugs w/ BC 5.02 | |
14 # 8/1998 - ron - updated with new targets, fixed some stuff | |
15 # 3/2000 - Bram: Made it work with BC 5.5 free command line compiler, | |
16 # cleaned up variables. | |
17 # 6/2001 - Dan - Added support for compiling Python and TCL | |
18 # 7/2001 - Dan - Added support for compiling Ruby | |
19 # | |
20 # It builds on Windows 95 and NT-Intel, producing the same binary in either | |
21 # case. To build using Microsoft Visual C++, use Make_mvc.mak. | |
22 # | |
23 # This should work with the free Borland command line compiler, version 5.5. | |
24 # You need at least sp1 (service pack 1). With sp2 it compiles faster. | |
25 # Use a command like this: | |
26 # <path>\bin\make /f Make_bc5.mak BOR=<path> | |
27 # | |
28 | |
29 # let the make utility do the hard work: | |
30 .AUTODEPEND | |
31 .CACHEAUTODEPEND | |
32 | |
33 # VARIABLES: | |
34 # name value (default) | |
35 # | |
36 # BOR path to root of Borland C install (c:\bc5) | |
37 # LINK name of the linker ($(BOR)\bin\ilink if OSTYPE is DOS16, | |
38 # $(BOR)\bin\ilink32 otherwise) | |
39 # GUI no or yes: set to yes if you want the GUI version (yes) | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
40 # LUA define to path to Lua dir to get Lua support (not defined) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
41 # LUA_VER define to version of Lua being used (51) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
42 # DYNAMIC_LUA no or yes: set to yes to load the Lua DLL dynamically (no) |
7 | 43 # PERL define to path to Perl dir to get Perl support (not defined) |
44 # PERL_VER define to version of Perl being used (56) | |
45 # DYNAMIC_PERL no or yes: set to yes to load the Perl DLL dynamically (no) | |
46 # PYTHON define to path to Python dir to get PYTHON support (not defined) | |
47 # PYTHON_VER define to version of Python being used (22) | |
48 # DYNAMIC_PYTHON no or yes: use yes to load the Python DLL dynamically (no) | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
49 # PYTHON3 define to path to Python3 dir to get PYTHON3 support (not defined) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
50 # PYTHON3_VER define to version of Python3 being used (31) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
51 # DYNAMIC_PYTHON3 no or yes: use yes to load the Python3 DLL dynamically (no) |
7 | 52 # TCL define to path to TCL dir to get TCL support (not defined) |
53 # TCL_VER define to version of TCL being used (83) | |
54 # DYNAMIC_TCL no or yes: use yes to load the TCL DLL dynamically (no) | |
55 # RUBY define to path to Ruby dir to get Ruby support (not defined) | |
56 # NOTE: You may have to remove the defines for uid_t and gid_t | |
57 # from the Ruby config.h header file. | |
58 # RUBY_VER define to version of Ruby being used (16) | |
59 # NOTE: compilation on WinNT/2K/XP requires | |
60 # at least version 1.6.5 of Ruby. Earlier versions | |
61 # of Ruby will cause a compile error on these systems. | |
819 | 62 # RUBY_VER_LONG same, but in format with dot. (1.6) |
7 | 63 # DYNAMIC_RUBY no or yes: use yes to load the Ruby DLL dynamically (no) |
64 # MBYTE no or yes: set to yes for multi-byte support (yes) | |
856 | 65 # NOTE: multi-byte support is broken in the Borland libraries, |
66 # not everything will work properly! Esp. handling multi-byte | |
67 # file names. | |
7 | 68 # IME no or yes: set to yes for multi-byte IME support (yes) |
69 # DYNAMIC_IME no or yes: set to yes to load imm32.dll dynamically (yes) | |
70 # GETTEXT no or yes: set to yes for multi-language support (yes) | |
71 # ICONV no or yes: set to yes for dynamic iconv support (yes) | |
72 # OLE no or yes: set to yes to make OLE gvim (no) | |
73 # OSTYPE DOS16 or WIN32 (WIN32) | |
74 # DEBUG no or yes: set to yes if you wish a DEBUGging build (no) | |
75 # CODEGUARD no or yes: set to yes if you want to use CODEGUARD (no) | |
76 # CPUNR 1 through 6: select -CPU argument to compile with (3) | |
77 # 3 for 386, 4 for 486, 5 for pentium, 6 for pentium pro. | |
78 # USEDLL no or yes: set to yes to use the Runtime library DLL (no) | |
79 # For USEDLL=yes the cc3250.dll is required to run Vim. | |
80 # VIMDLL no or yes: create vim32.dll, and stub (g)vim.exe (no) | |
81 # ALIGN 1, 2 or 4: Alignment to use (4 for Win32, 2 for DOS16) | |
82 # FASTCALL no or yes: set to yes to use register-based function protocol (yes) | |
83 # OPTIMIZE SPACE, SPEED, or MAXSPEED: type of optimization (MAXSPEED) | |
84 # POSTSCRIPT no or yes: set to yes for PostScript printing | |
85 # FEATURES TINY, SMALL, NORMAL, BIG or HUGE | |
86 # (BIG for WIN32, SMALL for DOS16) | |
87 # WINVER 0x0400 or 0x0500: minimum Win32 version to support (0x0400) | |
88 # CSCOPE no or yes: include support for Cscope interface (yes) | |
89 # NETBEANS no or yes: include support for Netbeans interface (yes if GUI | |
90 # is yes) | |
856 | 91 # NBDEBUG no or yes: include support for debugging Netbeans interface (no) |
7 | 92 # XPM define to path to XPM dir to get support for loading XPM images. |
93 | |
94 ### BOR: root of the BC installation | |
95 !if ("$(BOR)"=="") | |
96 BOR = c:\bc5 | |
97 !endif | |
98 | |
99 ### LINK: Name of the linker: tlink or ilink32 (this is below, depends on | |
100 # $(OSTYPE) | |
101 | |
102 ### GUI: yes for GUI version, no for console version | |
103 !if ("$(GUI)"=="") | |
104 GUI = yes | |
105 !endif | |
106 | |
107 ### MBYTE: yes for multibyte support, no to disable it. | |
108 !if ("$(MBYTE)"=="") | |
109 MBYTE = yes | |
110 !endif | |
111 | |
112 ### IME: yes for multibyte support, no to disable it. | |
113 !if ("$(IME)"=="") | |
114 IME = yes | |
115 !endif | |
116 !if ("$(DYNAMIC_IME)"=="") | |
117 DYNAMIC_IME = yes | |
118 !endif | |
119 | |
120 ### GETTEXT: yes for multilanguage support, no to disable it. | |
121 !if ("$(GETTEXT)"=="") | |
122 GETTEXT = yes | |
123 !endif | |
124 | |
125 ### ICONV: yes to enable dynamic-iconv support, no to disable it | |
126 !if ("$(ICONV)"=="") | |
127 ICONV = yes | |
128 !endif | |
129 | |
130 ### CSCOPE: yes to enable Cscope support, no to disable it | |
131 !if ("$(CSCOPE)"=="") | |
132 CSCOPE = yes | |
133 !endif | |
134 | |
135 ### NETBEANS: yes to enable NetBeans interface support, no to disable it | |
136 !if ("$(NETBEANS)"=="") && ("$(GUI)"=="yes") | |
137 NETBEANS = yes | |
138 !endif | |
139 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
140 ### LUA: uncomment this line if you want lua support in vim |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
141 # LUA=c:\lua |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
142 |
7 | 143 ### PERL: uncomment this line if you want perl support in vim |
144 # PERL=c:\perl | |
145 | |
146 ### PYTHON: uncomment this line if you want python support in vim | |
147 # PYTHON=c:\python22 | |
148 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
149 ### PYTHON3: uncomment this line if you want python3 support in vim |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
150 # PYTHON3=c:\python31 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
151 |
7 | 152 ### RUBY: uncomment this line if you want ruby support in vim |
153 # RUBY=c:\ruby | |
154 | |
155 ### TCL: uncomment this line if you want tcl support in vim | |
156 # TCL=c:\tcl | |
157 | |
158 ### OLE: no for normal gvim, yes for OLE-capable gvim (only works with GUI) | |
159 #OLE = yes | |
160 | |
161 ### OSTYPE: DOS16 for Windows 3.1 version, WIN32 for Windows 95/98/NT/2000 | |
162 # version | |
163 !if ("$(OSTYPE)"=="") | |
164 OSTYPE = WIN32 | |
165 !endif | |
166 | |
167 ### DEBUG: Uncomment to make an executable for debugging | |
168 # DEBUG = yes | |
169 !if ("$(DEBUG)"=="yes") | |
170 DEBUG_FLAG = -v | |
171 !endif | |
172 | |
173 ### CODEGUARD: Uncomment to use the CODEGUARD stuff (BC 5.0 or later): | |
174 # CODEGUARD = yes | |
175 !if ("$(CODEGUARD)"=="yes") | |
176 CODEGUARD_FLAG = -vG | |
177 !endif | |
178 | |
179 ### CPUNR: set your target processor (3 to 6) | |
180 !if ("$(CPUNR)" == "i386") || ("$(CPUNR)" == "3") | |
181 CPUNR = 3 | |
182 !elif ("$(CPUNR)" == "i486") || ("$(CPUNR)" == "4") | |
183 CPUNR = 4 | |
184 !elif ("$(CPUNR)" == "i586") || ("$(CPUNR)" == "5") | |
185 CPUNR = 5 | |
186 !elif ("$(CPUNR)" == "i686") || ("$(CPUNR)" == "6") | |
187 CPUNR = 6 | |
188 !else | |
189 CPUNR = 3 | |
190 !endif | |
191 | |
192 ### Comment out to use precompiled headers (faster, but uses lots of disk!) | |
193 HEADERS = -H -H=vim.csm -Hc | |
194 | |
195 ### USEDLL: no for statically linked version of run-time, yes for DLL runtime | |
196 !if ("$(USEDLL)"=="") | |
197 USEDLL = no | |
198 !endif | |
199 | |
200 ### VIMDLL: yes for a DLL version of VIM (NOT RECOMMENDED), no otherwise | |
201 #VIMDLL = yes | |
202 | |
203 ### ALIGN: alignment you desire: (1,2 or 4: s/b 4 for Win32, 2 for DOS) | |
204 !if ("$(ALIGN)"=="") | |
205 !if ($(OSTYPE)==DOS16) | |
206 ALIGN = 2 | |
207 !else | |
208 ALIGN = 4 | |
209 !endif | |
210 !endif | |
211 | |
212 ### FASTCALL: yes to use FASTCALL calling convention (RECOMMENDED!), no otherwise | |
213 # Incompatible when calling external functions (like MSVC-compiled DLLs), so | |
214 # don't use FASTCALL when linking with external libs. | |
215 !if ("$(FASTCALL)"=="") && \ | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
216 ("$(LUA)"=="") && \ |
7 | 217 ("$(PYTHON)"=="") && \ |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
218 ("$(PYTHON3)"=="") && \ |
7 | 219 ("$(PERL)"=="") && \ |
220 ("$(TCL)"=="") && \ | |
221 ("$(RUBY)"=="") && \ | |
222 ("$(ICONV)"!="yes") && \ | |
223 ("$(IME)"!="yes") && \ | |
224 ("$(MBYTE)"!="yes") && \ | |
225 ("$(XPM)"=="") | |
226 FASTCALL = yes | |
227 !endif | |
228 | |
229 ### OPTIMIZE: SPEED to optimize for speed, SPACE otherwise (SPEED RECOMMENDED) | |
230 !if ("$(OPTIMIZE)"=="") | |
231 OPTIMIZE = MAXSPEED | |
232 !endif | |
233 | |
234 ### FEATURES: TINY, SMALL, NORMAL, BIG or HUGE (BIG for WIN32, SMALL for DOS16) | |
235 !if ("$(FEATURES)"=="") | |
236 ! if ($(OSTYPE)==DOS16) | |
237 FEATURES = SMALL | |
238 ! else | |
239 FEATURES = BIG | |
240 ! endif | |
241 !endif | |
242 | |
243 ### POSTSCRIPT: uncomment this line if you want PostScript printing | |
244 #POSTSCRIPT = yes | |
245 | |
246 ### | |
247 # If you have a fixed directory for $VIM or $VIMRUNTIME, other than the normal | |
248 # default, use these lines. | |
249 #VIMRCLOC = somewhere | |
250 #VIMRUNTIMEDIR = somewhere | |
251 | |
252 ### Set the default $(WINVER) to make it work with Bcc 5.5. | |
253 !ifndef WINVER | |
254 WINVER = 0x0400 | |
255 !endif | |
256 | |
257 # | |
258 # Sanity checks for the above options: | |
259 # | |
260 | |
261 !if ($(OSTYPE)==DOS16) | |
262 !if (($(CPUNR)+0)>4) | |
263 !error CPUNR Must be less than or equal to 4 for DOS16 | |
264 !endif | |
265 | |
266 !if (($(ALIGN)+0)>2) | |
267 !error ALIGN Must be less than or equal to 2 for DOS16 | |
268 !endif | |
269 | |
270 !else # not DOS16 | |
271 !if (($(CPUNR)+0)<3) | |
272 !error CPUNR Must be greater or equal to 3 for WIN32 | |
273 !endif | |
274 !endif | |
275 | |
276 !if ($(OSTYPE)!=WIN32) && ($(OSTYPE)!=DOS16) | |
277 !error Check the OSTYPE variable again: $(OSTYPE) is not supported! | |
278 !endif | |
279 | |
280 # | |
281 # Optimizations: change as desired (RECOMMENDATION: Don't change!): | |
282 # | |
283 !if ("$(DEBUG)"=="yes") | |
284 OPT = -Od -N | |
285 !else | |
286 !if ("$(OPTIMIZE)"=="SPACE") | |
287 OPT = -O1 -f- -d | |
288 !elif ("$(OPTIMIZE)"=="MAXSPEED") | |
289 OPT = -O2 -f- -d -Ocavi -O | |
290 !else | |
291 OPT = -O2 -f- -d -Oc -O | |
292 !endif | |
293 !if ("$(FASTCALL)"=="yes") | |
294 OPT = $(OPT) -pr | |
295 !endif | |
296 !if ("$(CODEGUARD)"!="yes") | |
297 OPT = $(OPT) -vi- | |
298 !endif | |
299 !endif | |
300 !if ($(OSTYPE)==DOS16) | |
301 !undef GUI | |
302 !undef VIMDLL | |
303 !undef USEDLL | |
304 !endif | |
305 # shouldn't have to change: | |
306 LIB = $(BOR)\lib | |
307 INCLUDE = $(BOR)\include;.;proto | |
308 DEFINES = -DFEAT_$(FEATURES) -DWIN32 -DHAVE_PATHDEF \ | |
309 -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) | |
310 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
311 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
312 INTERP_DEFINES = $(INTERP_DEFINES) -DFEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
313 INCLUDE = $(LUA)\include;$(INCLUDE) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
314 ! ifndef LUA_VER |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
315 LUA_VER = 51 |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
316 ! endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
317 ! if ("$(DYNAMIC_LUA)" == "yes") |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
318 INTERP_DEFINES = $(INTERP_DEFINES) -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
319 LUA_LIB_FLAG = /nodefaultlib: |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
320 ! endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
321 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
322 |
7 | 323 !ifdef PERL |
324 INTERP_DEFINES = $(INTERP_DEFINES) -DFEAT_PERL | |
325 INCLUDE = $(PERL)\lib\core;$(INCLUDE) | |
326 ! ifndef PERL_VER | |
327 PERL_VER = 56 | |
328 ! endif | |
329 ! if ("$(DYNAMIC_PERL)" == "yes") | |
330 ! if ($(PERL_VER) > 55) | |
331 INTERP_DEFINES = $(INTERP_DEFINES) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"perl$(PERL_VER).dll\" | |
332 PERL_LIB_FLAG = /nodefaultlib: | |
333 ! else | |
334 ! message "Cannot dynamically load Perl versions less than 5.6. Loading statically..." | |
335 ! endif | |
336 ! endif | |
337 !endif | |
338 | |
339 !ifdef PYTHON | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
340 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
341 DYNAMIC_PYTHON=yes |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
342 DYNAMIC_PYTHON3=yes |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
343 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
344 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
345 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
346 !ifdef PYTHON |
7 | 347 INTERP_DEFINES = $(INTERP_DEFINES) -DFEAT_PYTHON |
348 !ifndef PYTHON_VER | |
349 PYTHON_VER = 22 | |
350 !endif | |
351 !if "$(DYNAMIC_PYTHON)" == "yes" | |
352 INTERP_DEFINES = $(INTERP_DEFINES) -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\" | |
353 PYTHON_LIB_FLAG = /nodefaultlib: | |
354 !endif | |
355 !endif | |
356 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
357 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
358 INTERP_DEFINES = $(INTERP_DEFINES) -DFEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
359 !ifndef PYTHON3_VER |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
360 PYTHON3_VER = 31 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
361 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
362 !if "$(DYNAMIC_PYTHON3)" == "yes" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
363 INTERP_DEFINES = $(INTERP_DEFINES) -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL=\"python$(PYTHON3_VER).dll\" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
364 PYTHON3_LIB_FLAG = /nodefaultlib: |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
365 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
366 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
367 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
368 |
7 | 369 !ifdef RUBY |
370 !ifndef RUBY_VER | |
371 RUBY_VER = 16 | |
372 !endif | |
373 !ifndef RUBY_VER_LONG | |
374 RUBY_VER_LONG = 1.6 | |
375 !endif | |
376 | |
377 !if "$(RUBY_VER)" == "16" | |
378 !ifndef RUBY_PLATFORM | |
379 RUBY_PLATFORM = i586-mswin32 | |
380 !endif | |
381 !ifndef RUBY_INSTALL_NAME | |
382 RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_VER) | |
383 !endif | |
384 !else | |
385 !ifndef RUBY_PLATFORM | |
386 RUBY_PLATFORM = i386-mswin32 | |
387 !endif | |
388 !ifndef RUBY_INSTALL_NAME | |
389 RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_VER) | |
390 !endif | |
391 !endif | |
392 | |
393 INTERP_DEFINES = $(INTERP_DEFINES) -DFEAT_RUBY | |
394 INCLUDE = $(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM);$(INCLUDE) | |
395 | |
396 !if "$(DYNAMIC_RUBY)" == "yes" | |
397 INTERP_DEFINES = $(INTERP_DEFINES) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\" | |
398 INTERP_DEFINES = $(INTERP_DEFINES) -DDYNAMIC_RUBY_VER=$(RUBY_VER) | |
399 RUBY_LIB_FLAG = /nodefaultlib: | |
400 !endif | |
401 !endif | |
402 | |
403 !ifdef TCL | |
404 INTERP_DEFINES = $(INTERP_DEFINES) -DFEAT_TCL | |
405 INCLUDE = $(TCL)\include;$(INCLUDE) | |
406 !ifndef TCL_VER | |
407 TCL_VER = 83 | |
408 !endif | |
409 TCL_LIB = $(TCL)\lib\tcl$(TCL_VER).lib | |
410 TCL_LIB_FLAG = | |
411 !if "$(DYNAMIC_TCL)" == "yes" | |
412 INTERP_DEFINES = $(INTERP_DEFINES) -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"tcl$(TCL_VER).dll\" | |
413 TCL_LIB = tclstub$(TCL_VER)-bor.lib | |
414 TCL_LIB_FLAG = | |
415 !endif | |
416 !endif | |
417 # | |
418 # DO NOT change below: | |
419 # | |
420 CPUARG = -$(CPUNR) | |
421 ALIGNARG = -a$(ALIGN) | |
422 # | |
423 !if ("$(DEBUG)"=="yes") | |
5588 | 424 DEFINES=$(DEFINES) -DDEBUG -D_DEBUG |
7 | 425 !endif |
426 # | |
427 !if ("$(OLE)"=="yes") | |
428 DEFINES = $(DEFINES) -DFEAT_OLE | |
429 !endif | |
430 # | |
431 !if ("$(MBYTE)"=="yes") | |
432 MBDEFINES = $(MBDEFINES) -DFEAT_MBYTE | |
433 !endif | |
434 !if ("$(IME)"=="yes") | |
435 MBDEFINES = $(MBDEFINES) -DFEAT_MBYTE_IME | |
436 !if ("$(DYNAMIC_IME)" == "yes") | |
437 MBDEFINES = $(MBDEFINES) -DDYNAMIC_IME | |
438 !endif | |
439 !endif | |
440 !if ("$(ICONV)"=="yes") | |
441 MBDEFINES = $(MBDEFINES) -DDYNAMIC_ICONV | |
442 !endif | |
443 !if ("$(GETTEXT)"=="yes") | |
444 MBDEFINES = $(MBDEFINES) -DDYNAMIC_GETTEXT | |
445 !endif | |
446 | |
447 !if ("$(CSCOPE)"=="yes") | |
448 DEFINES = $(DEFINES) -DFEAT_CSCOPE | |
449 !endif | |
450 | |
451 !if ("$(GUI)"=="yes") | |
452 DEFINES = $(DEFINES) -DFEAT_GUI_W32 -DFEAT_CLIPBOARD | |
453 !if ("$(DEBUG)"=="yes") | |
454 TARGET = gvimd.exe | |
455 !else | |
456 TARGET = gvim.exe | |
457 !endif | |
458 !if ("$(VIMDLL)"=="yes") | |
459 EXETYPE=-WD | |
460 DEFINES = $(DEFINES) -DVIMDLL | |
461 !else | |
462 EXETYPE=-W | |
463 !endif | |
464 STARTUPOBJ = c0w32.obj | |
465 LINK2 = -aa | |
466 RESFILE = vim.res | |
467 !else | |
12 | 468 !undef NETBEANS |
469 !undef XPM | |
470 !undef VIMDLL | |
7 | 471 !if ("$(DEBUG)"=="yes") |
472 TARGET = vimd.exe | |
473 !else | |
474 # for now, anyway: VIMDLL is only for the GUI version | |
475 TARGET = vim.exe | |
476 !endif | |
477 !if ($(OSTYPE)==DOS16) | |
478 DEFINES= -DFEAT_$(FEATURES) -DMSDOS | |
479 EXETYPE=-ml | |
480 STARTUPOBJ = c0l.obj | |
481 LINK2 = | |
482 !else | |
483 EXETYPE=-WC | |
484 STARTUPOBJ = c0x32.obj | |
485 LINK2 = -ap -OS -o -P | |
486 !endif | |
487 RESFILE = vim.res | |
488 !endif | |
489 | |
12 | 490 !if ("$(NETBEANS)"=="yes") |
491 DEFINES = $(DEFINES) -DFEAT_NETBEANS_INTG | |
492 !if ("$(NBDEBUG)"=="yes") | |
493 DEFINES = $(DEFINES) -DNBDEBUG | |
494 NBDEBUG_DEP = nbdebug.h nbdebug.c | |
495 !endif | |
496 !endif | |
497 | |
498 !ifdef XPM | |
499 !if ("$(GUI)"=="yes") | |
500 DEFINES = $(DEFINES) -DFEAT_XPM_W32 | |
501 INCLUDE = $(XPM)\include;$(INCLUDE) | |
502 !endif | |
503 !endif | |
504 | |
7 | 505 !if ("$(USEDLL)"=="yes") |
506 DEFINES = $(DEFINES) -D_RTLDLL | |
507 !endif | |
508 | |
509 !if ("$(DEBUG)"=="yes") | |
510 OBJDIR = $(OSTYPE)\objdbg | |
511 !else | |
512 !if ("$(GUI)"=="yes") | |
513 !if ("$(OLE)"=="yes") | |
514 OBJDIR = $(OSTYPE)\oleobj | |
515 !else | |
516 OBJDIR = $(OSTYPE)\gobj | |
517 !endif | |
518 !else | |
519 OBJDIR = $(OSTYPE)\obj | |
520 !endif | |
521 !endif | |
522 | |
523 !if ("$(POSTSCRIPT)"=="yes") | |
524 DEFINES = $(DEFINES) -DMSWINPS | |
525 !endif | |
526 | |
527 ##### BASE COMPILER/TOOLS RULES ##### | |
528 MAKE = $(BOR)\bin\make | |
529 CFLAGS = -w-aus -w-par -w-pch -w-ngu -w-csu -I$(INCLUDE) | |
530 !if ($(OSTYPE)==DOS16) | |
531 BRC = | |
532 !if ("$(LINK)"=="") | |
533 LINK = $(BOR)\BIN\TLink | |
534 !endif | |
535 CC = $(BOR)\BIN\Bcc | |
536 LFLAGS = -Tde -c -m -L$(LIB) $(DEBUG_FLAG) $(LINK2) | |
537 LFLAGSDLL = | |
538 CFLAGS = $(CFLAGS) -H- $(HEADERS) | |
539 !else | |
540 BRC = $(BOR)\BIN\brc32 | |
541 !if ("$(LINK)"=="") | |
542 LINK = $(BOR)\BIN\ILink32 | |
543 !endif | |
544 CC = $(BOR)\BIN\Bcc32 | |
545 LFLAGS = -OS -Tpe -c -m -L$(LIB) $(DEBUG_FLAG) $(LINK2) | |
546 LFLAGSDLL = -Tpd -c -m -L$(LIB) $(DEBUG_FLAG) $(LINK2) | |
547 CFLAGS = $(CFLAGS) -d -RT- -k- -Oi $(HEADERS) -f- | |
548 !endif | |
549 | |
550 CC1 = -c | |
551 CC2 = -o | |
552 CCARG = +$(OBJDIR)\bcc.cfg | |
553 | |
554 # implicit rules: | |
555 | |
556 # Without the following, the implicit rule in BUILTINS.MAK is picked up | |
557 # for a rule for .c.obj rather than the local implicit rule | |
558 .SUFFIXES | |
559 .SUFFIXES .c .obj | |
560 .path.c = . | |
561 | |
562 {.}.c{$(OBJDIR)}.obj: | |
563 $(CC) $(CCARG) $(CC1) -n$(OBJDIR)\ {$< } | |
564 | |
565 .cpp.obj: | |
566 $(CC) $(CCARG) $(CC1) $(CC2)$@ $*.cpp | |
567 | |
568 !if ($(OSTYPE)==DOS16) | |
569 !else # win32: | |
570 vimmain = \ | |
571 $(OBJDIR)\os_w32exe.obj | |
572 !if ("$(VIMDLL)"=="yes") | |
573 vimwinmain = \ | |
574 $(OBJDIR)\os_w32dll.obj | |
575 !else | |
576 vimwinmain = \ | |
577 $(OBJDIR)\os_w32exe.obj | |
578 !endif | |
579 !endif | |
580 | |
581 vimobj = \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
856
diff
changeset
|
582 $(OBJDIR)\blowfish.obj \ |
7 | 583 $(OBJDIR)\buffer.obj \ |
584 $(OBJDIR)\charset.obj \ | |
6126 | 585 $(OBJDIR)\crypt.obj \ |
586 $(OBJDIR)\crypt_zip.obj \ | |
7 | 587 $(OBJDIR)\diff.obj \ |
588 $(OBJDIR)\digraph.obj \ | |
589 $(OBJDIR)\edit.obj \ | |
590 $(OBJDIR)\eval.obj \ | |
591 $(OBJDIR)\ex_cmds.obj \ | |
592 $(OBJDIR)\ex_cmds2.obj \ | |
593 $(OBJDIR)\ex_docmd.obj \ | |
594 $(OBJDIR)\ex_eval.obj \ | |
595 $(OBJDIR)\ex_getln.obj \ | |
596 $(OBJDIR)\fileio.obj \ | |
597 $(OBJDIR)\fold.obj \ | |
598 $(OBJDIR)\getchar.obj \ | |
440 | 599 $(OBJDIR)\hardcopy.obj \ |
799 | 600 $(OBJDIR)\hashtab.obj \ |
7 | 601 $(OBJDIR)\main.obj \ |
602 $(OBJDIR)\mark.obj \ | |
603 $(OBJDIR)\memfile.obj \ | |
604 $(OBJDIR)\memline.obj \ | |
605 $(OBJDIR)\menu.obj \ | |
606 $(OBJDIR)\message.obj \ | |
607 $(OBJDIR)\misc1.obj \ | |
608 $(OBJDIR)\misc2.obj \ | |
609 $(OBJDIR)\move.obj \ | |
610 $(OBJDIR)\mbyte.obj \ | |
611 $(OBJDIR)\normal.obj \ | |
612 $(OBJDIR)\ops.obj \ | |
613 $(OBJDIR)\option.obj \ | |
799 | 614 $(OBJDIR)\popupmnu.obj \ |
7 | 615 $(OBJDIR)\quickfix.obj \ |
616 $(OBJDIR)\regexp.obj \ | |
617 $(OBJDIR)\screen.obj \ | |
618 $(OBJDIR)\search.obj \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
856
diff
changeset
|
619 $(OBJDIR)\sha256.obj \ |
226 | 620 $(OBJDIR)\spell.obj \ |
7 | 621 $(OBJDIR)\syntax.obj \ |
622 $(OBJDIR)\tag.obj \ | |
623 $(OBJDIR)\term.obj \ | |
624 $(OBJDIR)\ui.obj \ | |
625 $(OBJDIR)\undo.obj \ | |
626 $(OBJDIR)\version.obj \ | |
627 $(OBJDIR)\window.obj \ | |
628 $(OBJDIR)\pathdef.obj | |
629 | |
630 !if ("$(OLE)"=="yes") | |
631 vimobj = $(vimobj) \ | |
632 $(OBJDIR)\if_ole.obj | |
633 !endif | |
634 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
635 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
636 vimobj = $(vimobj) \ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
637 $(OBJDIR)\if_lua.obj |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
638 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
639 |
7 | 640 !ifdef PERL |
641 vimobj = $(vimobj) \ | |
642 $(OBJDIR)\if_perl.obj | |
643 !endif | |
644 | |
645 !ifdef PYTHON | |
646 vimobj = $(vimobj) \ | |
647 $(OBJDIR)\if_python.obj | |
648 !endif | |
649 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
650 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
651 vimobj = $(vimobj) \ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
652 $(OBJDIR)\if_python3.obj |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
653 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
654 |
7 | 655 !ifdef RUBY |
656 vimobj = $(vimobj) \ | |
657 $(OBJDIR)\if_ruby.obj | |
658 !endif | |
659 | |
660 !ifdef TCL | |
661 vimobj = $(vimobj) \ | |
662 $(OBJDIR)\if_tcl.obj | |
663 !endif | |
664 | |
665 !if ("$(CSCOPE)"=="yes") | |
666 vimobj = $(vimobj) \ | |
667 $(OBJDIR)\if_cscope.obj | |
668 !endif | |
669 | |
670 !if ("$(NETBEANS)"=="yes") | |
671 vimobj = $(vimobj) \ | |
185 | 672 $(OBJDIR)\netbeans.obj |
7 | 673 !endif |
674 | |
675 !ifdef XPM | |
676 vimobj = $(vimobj) \ | |
677 $(OBJDIR)\xpm_w32.obj | |
678 !endif | |
679 | |
680 !if ("$(VIMDLL)"=="yes") | |
681 vimdllobj = $(vimobj) | |
682 !if ("$(DEBUG)"=="yes") | |
683 DLLTARGET = vim32d.dll | |
684 !else | |
685 DLLTARGET = vim32.dll | |
686 !endif | |
687 !else | |
688 DLLTARGET = joebob | |
689 !endif | |
690 | |
691 !if ("$(GUI)"=="yes") | |
692 vimobj = $(vimobj) \ | |
693 $(vimwinmain) \ | |
694 $(OBJDIR)\gui.obj \ | |
185 | 695 $(OBJDIR)\gui_beval.obj \ |
7 | 696 $(OBJDIR)\gui_w32.obj |
697 !endif | |
698 | |
699 !if ($(OSTYPE)==WIN32) | |
700 vimobj = $(vimobj) \ | |
4168 | 701 $(OBJDIR)\os_win32.obj $(OBJDIR)\os_mswin.obj $(OBJDIR)\winclip.obj |
7 | 702 !elif ($(OSTYPE)==DOS16) |
703 vimobj = $(vimobj) \ | |
704 $(OBJDIR)\os_msdos.obj | |
705 !endif | |
706 # Blab what we are going to do: | |
707 MSG = Compiling $(OSTYPE) $(TARGET) $(OLETARGET), with: | |
708 !if ("$(GUI)"=="yes") | |
709 MSG = $(MSG) GUI | |
710 !endif | |
711 !if ("$(OLE)"=="yes") | |
712 MSG = $(MSG) OLE | |
713 !endif | |
714 !if ("$(USEDLL)"=="yes") | |
715 MSG = $(MSG) USEDLL | |
716 !endif | |
717 !if ("$(VIMDLL)"=="yes") | |
718 MSG = $(MSG) VIMDLL | |
719 !endif | |
720 !if ("$(FASTCALL)"=="yes") | |
721 MSG = $(MSG) FASTCALL | |
722 !endif | |
723 !if ("$(MBYTE)"=="yes") | |
724 MSG = $(MSG) MBYTE | |
725 !endif | |
726 !if ("$(IME)"=="yes") | |
727 MSG = $(MSG) IME | |
728 ! if "$(DYNAMIC_IME)" == "yes" | |
729 MSG = $(MSG)(dynamic) | |
730 ! endif | |
731 !endif | |
732 !if ("$(GETTEXT)"=="yes") | |
733 MSG = $(MSG) GETTEXT | |
734 !endif | |
735 !if ("$(ICONV)"=="yes") | |
736 MSG = $(MSG) ICONV | |
737 !endif | |
738 !if ("$(DEBUG)"=="yes") | |
739 MSG = $(MSG) DEBUG | |
740 !endif | |
741 !if ("$(CODEGUARD)"=="yes") | |
742 MSG = $(MSG) CODEGUARD | |
743 !endif | |
744 !if ("$(CSCOPE)"=="yes") | |
745 MSG = $(MSG) CSCOPE | |
746 !endif | |
747 !if ("$(NETBEANS)"=="yes") | |
748 MSG = $(MSG) NETBEANS | |
749 !endif | |
750 !ifdef XPM | |
751 MSG = $(MSG) XPM | |
752 !endif | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
753 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
754 MSG = $(MSG) LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
755 ! if "$(DYNAMIC_LUA)" == "yes" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
756 MSG = $(MSG)(dynamic) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
757 ! endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
758 !endif |
7 | 759 !ifdef PERL |
760 MSG = $(MSG) PERL | |
761 ! if "$(DYNAMIC_PERL)" == "yes" | |
762 MSG = $(MSG)(dynamic) | |
763 ! endif | |
764 !endif | |
765 !ifdef PYTHON | |
766 MSG = $(MSG) PYTHON | |
767 ! if "$(DYNAMIC_PYTHON)" == "yes" | |
768 MSG = $(MSG)(dynamic) | |
769 ! endif | |
770 !endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
771 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
772 MSG = $(MSG) PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
773 ! if "$(DYNAMIC_PYTHON3)" == "yes" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
774 MSG = $(MSG)(dynamic) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
775 ! endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
776 !endif |
7 | 777 !ifdef RUBY |
778 MSG = $(MSG) RUBY | |
779 ! if "$(DYNAMIC_RUBY)" == "yes" | |
780 MSG = $(MSG)(dynamic) | |
781 ! endif | |
782 !endif | |
783 !ifdef TCL | |
784 MSG = $(MSG) TCL | |
785 ! if "$(DYNAMIC_TCL)" == "yes" | |
786 MSG = $(MSG)(dynamic) | |
787 ! endif | |
788 !endif | |
789 MSG = $(MSG) cpu=$(CPUARG) | |
790 MSG = $(MSG) Align=$(ALIGNARG) | |
791 | |
792 !message $(MSG) | |
793 | |
794 !if ($(OSTYPE)==DOS16) | |
795 TARGETS = $(TARGET) | |
796 !else | |
797 !if ("$(VIMDLL)"=="yes") | |
798 TARGETS = $(DLLTARGET) | |
799 !endif | |
800 TARGETS = $(TARGETS) $(TARGET) | |
801 !endif | |
802 | |
803 # Targets: | |
804 all: vim vimrun.exe install.exe xxd uninstal.exe GvimExt/gvimext.dll | |
805 | |
806 vim: $(OSTYPE) $(OBJDIR) $(OBJDIR)\bcc.cfg $(TARGETS) | |
807 @if exist $(OBJDIR)\version.obj del $(OBJDIR)\version.obj | |
808 @if exist auto\pathdef.c del auto\pathdef.c | |
809 | |
810 $(OSTYPE): | |
811 -@md $(OSTYPE) | |
812 | |
813 $(OBJDIR): | |
814 -@md $(OBJDIR) | |
815 | |
816 xxd: | |
817 @cd xxd | |
818 $(MAKE) /f Make_bc5.mak BOR="$(BOR)" BCC="$(CC)" | |
819 @cd .. | |
820 | |
821 GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h | |
822 cd GvimExt | |
823 $(MAKE) /f Make_bc5.mak USEDLL=$(USEDLL) BOR=$(BOR) | |
824 cd .. | |
825 | |
826 install.exe: dosinst.c $(OBJDIR)\bcc.cfg | |
827 !if ($(OSTYPE)==WIN32) | |
828 $(CC) $(CCARG) -WC -DWIN32 -einstall dosinst.c | |
829 !else | |
830 $(CC) $(CCARG) -WC -einstall dosinst.c | |
831 !endif | |
832 | |
833 uninstal.exe: uninstal.c $(OBJDIR)\bcc.cfg | |
834 !if ($(OSTYPE)==WIN32) | |
835 $(CC) $(CCARG) -WC -DWIN32 -O2 -euninstal uninstal.c | |
836 !else | |
837 $(CC) $(CCARG) -WC -O2 -euninstal uninstal.c | |
838 !endif | |
839 | |
840 clean: | |
841 !if "$(OS)" == "Windows_NT" | |
842 # For Windows NT/2000, doesn't work on Windows 95/98... | |
843 # $(COMSPEC) needed to ensure rmdir.exe is not run | |
844 -@$(COMSPEC) /C rmdir /Q /S $(OBJDIR) | |
845 !else | |
846 # For Windows 95/98, doesn't work on Windows NT/2000... | |
847 -@deltree /y $(OBJDIR) | |
848 !endif | |
849 -@del *.res | |
850 -@del vim32*.dll | |
851 -@del vim32*.lib | |
852 -@del *vim*.exe | |
853 -@del *install*.exe | |
854 -@del *.csm | |
855 -@del *.map | |
856 -@del *.ilc | |
857 -@del *.ild | |
858 -@del *.ilf | |
859 -@del *.ils | |
860 -@del *.tds | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
861 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
862 -@del lua.lib |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
863 !endif |
7 | 864 !ifdef PERL |
865 -@del perl.lib | |
866 !endif | |
867 !ifdef PYTHON | |
868 -@del python.lib | |
869 !endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
870 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
871 -@del python3.lib |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
872 !endif |
7 | 873 !ifdef RUBY |
874 -@del ruby.lib | |
875 !endif | |
876 !ifdef TCL | |
877 -@del tcl.lib | |
878 !endif | |
879 !ifdef XPM | |
880 -@del xpm.lib | |
881 !endif | |
882 cd xxd | |
883 $(MAKE) /f Make_bc5.mak BOR="$(BOR)" clean | |
884 cd .. | |
885 cd GvimExt | |
886 $(MAKE) /f Make_bc5.mak BOR="$(BOR)" clean | |
887 cd .. | |
888 | |
889 $(DLLTARGET): $(OBJDIR) $(vimdllobj) | |
890 $(LINK) @&&| | |
891 $(LFLAGSDLL) + | |
892 c0d32.obj + | |
893 $(vimdllobj) | |
894 $<,$* | |
895 !if ("$(CODEGUARD)"=="yes") | |
896 cg32.lib+ | |
897 !endif | |
898 # $(OSTYPE)==WIN32 causes os_mswin.c compilation. FEAT_SHORTCUT in it needs OLE | |
899 !if ("$(OLE)"=="yes" || $(OSTYPE)==WIN32) | |
900 ole2w32.lib + | |
901 !endif | |
902 !if ($(OSTYPE)==WIN32) | |
903 import32.lib+ | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
904 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
905 $(LUA_LIB_FLAG)lua.lib+ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
906 !endif |
7 | 907 !ifdef PERL |
908 $(PERL_LIB_FLAG)perl.lib+ | |
909 !endif | |
910 !ifdef PYTHON | |
911 $(PYTHON_LIB_FLAG)python.lib+ | |
912 !endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
913 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
914 $(PYTHON3_LIB_FLAG)python3.lib+ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
915 !endif |
7 | 916 !ifdef RUBY |
917 $(RUBY_LIB_FLAG)ruby.lib+ | |
918 !endif | |
919 !ifdef TCL | |
920 $(TCL_LIB_FLAG)tcl.lib+ | |
921 !endif | |
922 !ifdef XPM | |
923 xpm.lib+ | |
924 !endif | |
925 !if ("$(USEDLL)"=="yes") | |
926 cw32i.lib | |
927 !else | |
928 cw32.lib | |
929 !endif | |
930 vim.def | |
931 !else | |
932 cl.lib | |
933 !endif | |
934 | | |
935 | |
936 !if ("$(VIMDLL)"=="yes") | |
937 $(TARGET): $(OBJDIR) $(DLLTARGET) $(vimmain) $(OBJDIR)\$(RESFILE) | |
938 !else | |
939 $(TARGET): $(OBJDIR) $(vimobj) $(OBJDIR)\$(RESFILE) | |
940 !endif | |
941 $(LINK) @&&| | |
942 $(LFLAGS) + | |
943 $(STARTUPOBJ) + | |
944 !if ("$(VIMDLL)"=="yes") | |
945 $(vimmain) | |
946 !else | |
947 $(vimobj) | |
948 !endif | |
949 $<,$* | |
950 !if ($(OSTYPE)==WIN32) | |
951 !if ("$(CODEGUARD)"=="yes") | |
952 cg32.lib+ | |
953 !endif | |
954 # $(OSTYPE)==WIN32 causes os_mswin.c compilation. FEAT_SHORTCUT in it needs OLE | |
955 !if ("$(OLE)"=="yes" || $(OSTYPE)==WIN32) | |
956 ole2w32.lib + | |
957 !endif | |
958 import32.lib+ | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
959 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
960 $(LUA_LIB_FLAG)lua.lib+ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
961 !endif |
7 | 962 !ifdef PERL |
963 $(PERL_LIB_FLAG)perl.lib+ | |
964 !endif | |
965 !ifdef PYTHON | |
966 $(PYTHON_LIB_FLAG)python.lib+ | |
967 !endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
968 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
969 $(PYTHON3_LIB_FLAG)python3.lib+ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
970 !endif |
7 | 971 !ifdef RUBY |
972 $(RUBY_LIB_FLAG)ruby.lib+ | |
973 !endif | |
974 !ifdef TCL | |
975 $(TCL_LIB_FLAG)tcl.lib+ | |
976 !endif | |
977 !ifdef XPM | |
978 xpm.lib+ | |
979 !endif | |
980 !if ("$(USEDLL)"=="yes") | |
981 cw32i.lib | |
982 !else | |
983 cw32.lib | |
984 !endif | |
985 | |
986 $(OBJDIR)\$(RESFILE) | |
987 !else | |
988 emu.lib + cl.lib | |
989 !endif | |
990 | | |
991 | |
992 test: | |
993 cd testdir | |
994 $(MAKE) /NOLOGO -f Make_dos.mak win32 | |
995 cd .. | |
996 | |
997 $(OBJDIR)\ex_docmd.obj: ex_docmd.c ex_cmds.h | |
998 | |
999 $(OBJDIR)\ex_eval.obj: ex_eval.c ex_cmds.h | |
1000 | |
1001 $(OBJDIR)\if_ole.obj: if_ole.cpp | |
1002 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1003 $(OBJDIR)\if_lua.obj: if_lua.c lua.lib |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1004 $(CC) $(CCARG) $(CC1) $(CC2)$@ -pc if_lua.c |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1005 |
7 | 1006 $(OBJDIR)\if_perl.obj: if_perl.c perl.lib |
1007 $(CC) $(CCARG) $(CC1) $(CC2)$@ -pc if_perl.c | |
1008 | |
1009 if_perl.c: if_perl.xs typemap | |
1010 $(PERL)\bin\perl.exe $(PERL)\lib\ExtUtils\xsubpp -prototypes -typemap \ | |
1011 $(PERL)\lib\ExtUtils\typemap if_perl.xs > $@ | |
1012 | |
4724
450e13fe1621
updated for version 7.3.1109
Bram Moolenaar <bram@vim.org>
parents:
4168
diff
changeset
|
1013 $(OBJDIR)\if_python.obj: if_python.c if_py_both.h python.lib |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1014 $(CC) -I$(PYTHON)\include $(CCARG) $(CC1) $(CC2)$@ -pc if_python.c |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1015 |
4724
450e13fe1621
updated for version 7.3.1109
Bram Moolenaar <bram@vim.org>
parents:
4168
diff
changeset
|
1016 $(OBJDIR)\if_python3.obj: if_python3.c if_py_both.h python3.lib |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1017 $(CC) -I$(PYTHON3)\include $(CCARG) $(CC1) $(CC2)$@ -pc if_python3.c |
7 | 1018 |
1019 $(OBJDIR)\if_ruby.obj: if_ruby.c ruby.lib | |
1020 $(CC) $(CCARG) $(CC1) $(CC2)$@ -pc if_ruby.c | |
1021 | |
1022 $(OBJDIR)\if_tcl.obj: if_tcl.c tcl.lib | |
1023 $(CC) $(CCARG) $(CC1) $(CC2)$@ -pc if_tcl.c | |
1024 | |
1025 $(OBJDIR)\xpm_w32.obj: xpm_w32.c xpm.lib | |
1026 $(CC) $(CCARG) $(CC1) $(CC2)$@ -pc xpm_w32.c | |
1027 | |
1028 $(OBJDIR)\netbeans.obj: netbeans.c $(NBDEBUG_DEP) | |
1029 $(CC) $(CCARG) $(CC1) $(CC2)$@ netbeans.c | |
1030 | |
1031 $(OBJDIR)\vim.res: vim.rc version.h tools.bmp tearoff.bmp \ | |
1032 vim.ico vim_error.ico vim_alert.ico vim_info.ico vim_quest.ico | |
1033 $(BRC) -fo$(OBJDIR)\vim.res -i $(BOR)\include -w32 -r vim.rc @&&| | |
1034 $(DEFINES) | |
1035 | | |
1036 | |
1037 $(OBJDIR)\pathdef.obj: auto\pathdef.c | |
1038 $(CC) $(CCARG) $(CC1) $(CC2)$@ auto\pathdef.c | |
1039 | |
1040 | |
1041 # Need to escape both quotes and backslashes in $INTERP_DEFINES | |
1042 INTERP_DEFINES_ESC_BKS=$(INTERP_DEFINES:\=\\) | |
1043 INTERP_DEFINES_ESC=$(INTERP_DEFINES_ESC_BKS:"=\") | |
1044 | |
1045 # Note: the silly /*"*/ below are there to trick make into accepting | |
1046 # the # character as something other than a comment without messing up | |
1047 # the preprocessor directive. | |
1048 auto\pathdef.c:: | |
1049 -@md auto | |
1050 @echo creating auto/pathdef.c | |
1051 @copy /y &&| | |
1052 /* pathdef.c */ | |
1053 /*"*/#include "vim.h"/*"*/ | |
1054 | |
1055 char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; | |
1056 char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; | |
1057 char_u *all_cflags = (char_u *)"$(CC:\=\\) $(CFLAGS:\=\\) $(DEFINES) $(MBDEFINES) $(INTERP_DEFINES_ESC) $(OPT) $(EXETYPE) $(CPUARG) $(ALIGNARG) $(DEBUG_FLAG) $(CODEGUARD_FLAG)"; | |
1058 char_u *all_lflags = (char_u *)"$(LINK:\=\\) $(LFLAGS:\=\\)"; | |
1059 char_u *compiled_user = (char_u *)"$(USERNAME)"; | |
1060 char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; | |
1061 | auto\pathdef.c | |
1062 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1063 lua.lib: $(LUA)\lib\lua$(LUA_VER).lib |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1064 coff2omf $(LUA)\lib\lua$(LUA_VER).lib $@ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1065 |
7 | 1066 perl.lib: $(PERL)\lib\CORE\perl$(PERL_VER).lib |
1067 coff2omf $(PERL)\lib\CORE\perl$(PERL_VER).lib $@ | |
1068 | |
1069 python.lib: $(PYTHON)\libs\python$(PYTHON_VER).lib | |
1070 coff2omf $(PYTHON)\libs\python$(PYTHON_VER).lib $@ | |
1071 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1072 python3.lib: $(PYTHON3)\libs\python$(PYTHON3_VER).lib |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1073 coff2omf $(PYTHON3)\libs\python$(PYTHON3_VER).lib $@ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1074 |
7 | 1075 ruby.lib: $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib |
1076 coff2omf $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib $@ | |
1077 | |
1078 # For some reason, the coff2omf method doesn't work on libXpm.lib, so | |
1079 # we have to manually generate an import library straight from the DLL. | |
1080 xpm.lib: $(XPM)\lib\libXpm.lib | |
1081 implib -a $@ $(XPM)\bin\libXpm.dll | |
1082 | |
1083 tcl.lib: $(TCL_LIB) | |
1084 !if ("$(DYNAMIC_TCL)" == "yes") | |
1085 copy $(TCL_LIB) $@ | |
1086 !else | |
1087 coff2omf $(TCL_LIB) $@ | |
1088 !endif | |
1089 | |
1090 !if ("$(DYNAMIC_TCL)" == "yes") | |
1091 tclstub$(TCL_VER)-bor.lib: | |
1092 -@IF NOT EXIST $@ ECHO You must download tclstub$(TCL_VER)-bor.lib separately and\ | |
1093 place it in the src directory in order to compile a dynamic TCL-enabled\ | |
1094 (g)vim with the Borland compiler. You can get the tclstub$(TCL_VER)-bor.lib file\ | |
1095 at http://mywebpage.netscape.com/sharppeople/vim/tclstub$(TCL_VER)-bor.lib | |
1096 !endif | |
1097 | |
1098 # vimrun.exe: | |
1099 vimrun.exe: vimrun.c | |
1100 !if ("$(USEDLL)"=="yes") | |
1101 $(CC) -WC -O1 -I$(INCLUDE) -L$(LIB) -D_RTLDLL vimrun.c cw32mti.lib | |
1102 !else | |
1103 $(CC) -WC -O1 -I$(INCLUDE) -L$(LIB) vimrun.c | |
1104 !endif | |
1105 | |
1106 # The dependency on $(OBJDIR) is to have bcc.cfg generated each time. | |
1107 $(OBJDIR)\bcc.cfg: Make_bc5.mak $(OBJDIR) | |
1108 copy /y &&| | |
1109 $(CFLAGS) | |
1110 -L$(LIB) | |
1111 $(DEFINES) | |
1112 $(MBDEFINES) | |
1113 $(INTERP_DEFINES) | |
1114 $(EXETYPE) | |
1115 $(DEBUG_FLAG) | |
1116 $(OPT) | |
1117 $(CODEGUARD_FLAG) | |
1118 $(CPUARG) | |
1119 $(ALIGNARG) | |
1120 | $@ | |
1121 | |
1122 # vi:set sts=4 sw=4: | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1123 |