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