Mercurial > vim
annotate src/Make_mvc.mak @ 3812:f86619764a1e v7.3.664
updated for version 7.3.664
Problem: Buffer overflow in unescaping text. (Raymond Ko)
Solution: Limit check for multi-byte character to 4 bytes.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 18 Sep 2012 18:03:37 +0200 |
parents | fd0c7452fa51 |
children | 35939e1e25ff |
rev | line source |
---|---|
840 | 1 # Makefile for Vim on Win32 (Windows NT/2000/XP/2003 and Windows 95/98/Me) |
2 # and Win64, using the Microsoft Visual C++ compilers. Known to work with | |
1569 | 3 # VC5, VC6 (VS98), VC7.0 (VS2002), VC7.1 (VS2003), VC8 (VS2005), |
1907 | 4 # VC9 (VS2008), and VC10 (VS2010). |
7 | 5 # |
840 | 6 # To build using other Windows compilers, see INSTALLpc.txt |
381 | 7 # |
7 | 8 # This makefile can build the console, GUI, OLE-enable, Perl-enabled and |
1907 | 9 # Python-enabled versions of Vim for Win32 platforms. |
7 | 10 # |
1907 | 11 # The basic command line to build Vim is: |
7 | 12 # |
13 # nmake -f Make_mvc.mak | |
381 | 14 # |
1907 | 15 # This will build the console version of Vim with no additional interfaces. |
381 | 16 # To add features, define any of the following: |
17 # | |
18 # !!!! After changing features do "nmake clean" first !!!! | |
19 # | |
20 # Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG) | |
21 # | |
7 | 22 # GUI interface: GUI=yes (default is no) |
381 | 23 # |
7 | 24 # OLE interface: OLE=yes (usually with GUI=yes) |
381 | 25 # |
775 | 26 # Multibyte support: MBYTE=yes (default is no) |
381 | 27 # |
7 | 28 # IME support: IME=yes (requires GUI=yes) |
29 # DYNAMIC_IME=[yes or no] (to load the imm32.dll dynamically, default | |
30 # is yes) | |
31 # Global IME support: GIME=yes (requires GUI=yes) | |
381 | 32 # |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
33 # Lua interface: |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
34 # LUA=[Path to Lua directory] |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
35 # DYNAMIC_LUA=yes (to load the Lua DLL dynamically) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
36 # LUA_VER=[Lua version] (default is 51) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
37 # |
146 | 38 # MzScheme interface: |
39 # MZSCHEME=[Path to MzScheme directory] | |
40 # DYNAMIC_MZSCHEME=yes (to load the MzScheme DLLs dynamically) | |
41 # MZSCHEME_VER=[version, 205_000, ...] | |
1894 | 42 # MZSCHEME_DEBUG=no |
381 | 43 # |
7 | 44 # Perl interface: |
45 # PERL=[Path to Perl directory] | |
46 # DYNAMIC_PERL=yes (to load the Perl DLL dynamically) | |
381 | 47 # PERL_VER=[Perl version, in the form 55 (5.005), 56 (5.6.x), etc] |
48 # (default is 56) | |
49 # | |
7 | 50 # Python interface: |
51 # PYTHON=[Path to Python directory] | |
52 # DYNAMIC_PYTHON=yes (to load the Python DLL dynamically) | |
53 # PYTHON_VER=[Python version, eg 15, 20] (default is 22) | |
381 | 54 # |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
55 # Python3 interface: |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
56 # PYTHON3=[Path to Python3 directory] |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
57 # DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
58 # PYTHON3_VER=[Python3 version, eg 30, 31] (default is 31) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
59 # |
7 | 60 # Ruby interface: |
61 # RUBY=[Path to Ruby directory] | |
62 # DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically) | |
63 # RUBY_VER=[Ruby version, eg 16, 17] (default is 18) | |
64 # RUBY_VER_LONG=[Ruby version, eg 1.6, 1.7] (default is 1.8) | |
65 # You must set RUBY_VER_LONG when change RUBY_VER. | |
3722 | 66 # You must set RUBY_API_VER to RUBY_VER_LONG. |
67 # Don't set ruby API version to RUBY_VER like 191. | |
381 | 68 # |
7 | 69 # Tcl interface: |
70 # TCL=[Path to Tcl directory] | |
71 # DYNAMIC_TCL=yes (to load the Tcl DLL dynamically) | |
72 # TCL_VER=[Tcl version, e.g. 80, 83] (default is 83) | |
73 # TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.3) | |
74 # You must set TCL_VER_LONG when you set TCL_VER. | |
381 | 75 # |
76 # SNiFF+ interface: SNIFF=yes | |
77 # | |
78 # Cscope support: CSCOPE=yes | |
79 # | |
80 # Iconv library support (always dynamically loaded): | |
81 # ICONV=[yes or no] (default is yes) | |
82 # | |
83 # Intl library support (always dynamically loaded): | |
84 # GETTEXT=[yes or no] (default is yes) | |
85 # See http://sourceforge.net/projects/gettext/ | |
86 # | |
87 # PostScript printing: POSTSCRIPT=yes (default is no) | |
88 # | |
89 # Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes) | |
90 # | |
91 # XPM Image Support: XPM=[path to XPM directory] | |
3762 | 92 # Default is "xpm", using the files included in the distribution. |
93 # Use "no" to disable this feature. | |
381 | 94 # |
95 # Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED) | |
96 # | |
97 # Processor Version: CPUNR=[i386, i486, i586, i686, pentium4] (default is | |
98 # i386) | |
99 # | |
100 # Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400) | |
101 # | |
7 | 102 # Debug version: DEBUG=yes |
103 # Mapfile: MAP=[no, yes or lines] (default is yes) | |
104 # no: Don't write a mapfile. | |
105 # yes: Write a normal mapfile. | |
106 # lines: Write a mapfile with line numbers (only for VC6 and later) | |
381 | 107 # |
108 # Netbeans Debugging Support: NBDEBUG=[yes or no] (should be no, yes | |
109 # doesn't work) | |
7 | 110 # |
1419 | 111 # Visual C Version: MSVCVER=m.n (default derived from nmake if undefined) |
112 # | |
7 | 113 # You can combine any of these interfaces |
114 # | |
115 # Example: To build the non-debug, GUI version with Perl interface: | |
116 # nmake -f Make_mvc.mak GUI=yes PERL=C:\Perl | |
117 # | |
118 # DEBUG with Make_mvc.mak and Make_dvc.mak: | |
119 # This makefile gives a fineness of control which is not supported in | |
120 # Visual C++ configuration files. Therefore, debugging requires a bit of | |
121 # extra work. | |
1419 | 122 # Make_dvc.mak is a Visual C++ project to access that support. It may be |
123 # badly out of date for the Visual C++ you are using... | |
7 | 124 # To use Make_dvc.mak: |
125 # 1) Build Vim with Make_mvc.mak. | |
126 # Use a "DEBUG=yes" argument to build Vim with debug support. | |
127 # E.g. the following builds gvimd.exe: | |
128 # nmake -f Make_mvc.mak debug=yes gui=yes | |
129 # 2) Use MS Devstudio and set it up to allow that file to be debugged: | |
130 # i) Pass Make_dvc.mak to the IDE. | |
131 # Use the "open workspace" menu entry to load Make_dvc.mak. | |
132 # Alternatively, from the command line: | |
133 # msdev /nologo Make_dvc.mak | |
134 # Note: Make_dvc.mak is in VC4.0 format. Later VC versions see | |
135 # this and offer to convert it to their own format. Accept that. | |
136 # It creates a file called Make_dvc.dsw which can then be used | |
137 # for further operations. E.g. | |
138 # msdev /nologo Make_dvc.dsw | |
139 # ii) Set the built executable for debugging: | |
140 # a) Alt+F7/Debug takes you to the Debug dialog. | |
141 # b) Fill "Executable for debug session". e.g. gvimd.exe | |
142 # c) Fill "Program arguments". e.g. -R dosinst.c | |
143 # d) Complete the dialog | |
144 # 3) You can now debug the executable you built with Make_mvc.mak | |
145 # | |
146 # Note: Make_dvc.mak builds vimrun.exe, because it must build something | |
147 # to be a valid makefile.. | |
148 | |
149 ### See feature.h for a list of optionals. | |
150 # If you want to build some optional features without modifying the source, | |
151 # you can set DEFINES on the command line, e.g., | |
714 | 152 # nmake -f Make_mvc.mvc "DEFINES=-DEMACS_TAGS" |
7 | 153 |
714 | 154 # Build on both Windows NT/XP and Windows 9x |
7 | 155 |
156 TARGETOS = BOTH | |
157 | |
323 | 158 # Select one of eight object code directories, depends on GUI, OLE, DEBUG and |
159 # interfaces. | |
7 | 160 # If you change something else, do "make clean" first! |
161 !if "$(GUI)" == "yes" | |
162 OBJDIR = .\ObjG | |
163 !else | |
164 OBJDIR = .\ObjC | |
165 !endif | |
166 !if "$(OLE)" == "yes" | |
167 OBJDIR = $(OBJDIR)O | |
168 !endif | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
169 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
170 OBJDIR = $(OBJDIR)U |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
171 !endif |
323 | 172 !ifdef PERL |
173 OBJDIR = $(OBJDIR)L | |
174 !endif | |
175 !ifdef PYTHON | |
176 OBJDIR = $(OBJDIR)Y | |
177 !endif | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
178 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
179 OBJDIR = $(OBJDIR)H |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
180 !endif |
323 | 181 !ifdef TCL |
182 OBJDIR = $(OBJDIR)T | |
183 !endif | |
184 !ifdef RUBY | |
185 OBJDIR = $(OBJDIR)R | |
186 !endif | |
14 | 187 !ifdef MZSCHEME |
188 OBJDIR = $(OBJDIR)Z | |
189 !endif | |
7 | 190 !if "$(DEBUG)" == "yes" |
191 OBJDIR = $(OBJDIR)d | |
192 !endif | |
193 | |
835 | 194 # Win32.mak requires that CPU be set appropriately. |
195 # To cross-compile for Win64, set CPU=AMD64 or CPU=IA64. | |
7 | 196 |
197 !ifdef PROCESSOR_ARCHITECTURE | |
714 | 198 # We're on Windows NT or using VC 6+ |
840 | 199 ! ifdef CPU |
200 ASSEMBLY_ARCHITECTURE=$(CPU) | |
842 | 201 # Using I386 for $ASSEMBLY_ARCHITECTURE doesn't work for VC7. |
202 ! if ("$(ASSEMBLY_ARCHITECTURE)" == "i386") || ("$(ASSEMBLY_ARCHITECTURE)" == "I386") | |
203 ASSEMBLY_ARCHITECTURE = x86 | |
204 ! endif | |
840 | 205 ! else |
7 | 206 CPU = $(PROCESSOR_ARCHITECTURE) |
840 | 207 ASSEMBLY_ARCHITECTURE = $(PROCESSOR_ARCHITECTURE) |
835 | 208 ! if ("$(CPU)" == "x86") || ("$(CPU)" == "X86") |
7 | 209 CPU = i386 |
835 | 210 ! endif |
7 | 211 ! endif |
212 !else # !PROCESSOR_ARCHITECTURE | |
213 # We're on Windows 95 | |
214 CPU = i386 | |
215 !endif # !PROCESSOR_ARCHITECTURE | |
3790 | 216 OBJDIR = $(OBJDIR)$(CPU) |
7 | 217 |
218 # Build a retail version by default | |
219 | |
220 !if "$(DEBUG)" != "yes" | |
221 NODEBUG = 1 | |
222 !else | |
1419 | 223 !undef NODEBUG |
7 | 224 MAKEFLAGS_GVIMEXT = DEBUG=yes |
225 !endif | |
226 | |
227 | |
1419 | 228 # Get all sorts of useful, standard macros from the Platform SDK. |
7 | 229 |
714 | 230 !include <Win32.mak> |
7 | 231 |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2242
diff
changeset
|
232 # Flag to turn on Win64 compatibility warnings for VC7.x and VC8. |
2242
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
233 WP64CHECK = /Wp64 |
7 | 234 |
235 #>>>>> path of the compiler and linker; name of include and lib directories | |
236 # PATH = c:\msvc20\bin;$(PATH) | |
237 # INCLUDE = c:\msvc20\include | |
238 # LIB = c:\msvc20\lib | |
239 | |
240 !ifndef CTAGS | |
241 CTAGS = ctags | |
242 !endif | |
243 | |
244 !if "$(SNIFF)" == "yes" | |
245 # SNIFF - Include support for SNiFF+. | |
246 SNIFF_INCL = if_sniff.h | |
247 SNIFF_OBJ = $(OBJDIR)/if_sniff.obj | |
416 | 248 SNIFF_LIB = shell32.lib |
7 | 249 SNIFF_DEFS = -DFEAT_SNIFF |
250 # The SNiFF integration needs multithreaded libraries! | |
251 MULTITHREADED = yes | |
252 !endif | |
253 | |
254 !ifndef CSCOPE | |
255 CSCOPE = yes | |
256 !endif | |
257 | |
258 !if "$(CSCOPE)" == "yes" | |
259 # CSCOPE - Include support for Cscope | |
260 CSCOPE_INCL = if_cscope.h | |
261 CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj | |
262 CSCOPE_DEFS = -DFEAT_CSCOPE | |
263 !endif | |
264 | |
265 !ifndef NETBEANS | |
266 NETBEANS = $(GUI) | |
267 !endif | |
268 | |
12 | 269 # Only allow NETBEANS and XPM for a GUI build. |
270 !if "$(GUI)" == "yes" | |
7 | 271 !if "$(NETBEANS)" == "yes" |
272 # NETBEANS - Include support for Netbeans integration | |
273 NETBEANS_PRO = proto/netbeans.pro | |
184 | 274 NETBEANS_OBJ = $(OBJDIR)/netbeans.obj |
7 | 275 NETBEANS_DEFS = -DFEAT_NETBEANS_INTG |
12 | 276 |
277 !if "$(NBDEBUG)" == "yes" | |
7 | 278 NBDEBUG_DEFS = -DNBDEBUG |
279 NBDEBUG_INCL = nbdebug.h | |
280 NBDEBUG_SRC = nbdebug.c | |
281 !endif | |
416 | 282 NETBEANS_LIB = WSock32.lib |
7 | 283 !endif |
284 | |
3762 | 285 !ifndef XPM |
286 # XPM is not set, use the included xpm files, depending on the architecture. | |
3790 | 287 !if "$(CPU)" == "AMD64" |
3762 | 288 XPM = xpm\x64 |
3790 | 289 !elseif "$(CPU)" == "i386" |
290 XPM = xpm\x86 | |
3762 | 291 !else |
3790 | 292 XPM = no |
3762 | 293 !endif |
294 !endif | |
295 !if "$(XPM)" != "no" | |
7 | 296 # XPM - Include support for XPM signs |
3762 | 297 # See the xpm directory for more information. |
7 | 298 XPM_OBJ = $(OBJDIR)/xpm_w32.obj |
299 XPM_DEFS = -DFEAT_XPM_W32 | |
300 XPM_LIB = $(XPM)\lib\libXpm.lib | |
3762 | 301 XPM_INC = -I $(XPM)\include -I $(XPM)\..\include |
7 | 302 !endif |
12 | 303 !endif |
7 | 304 |
714 | 305 # Set which version of the CRT to use |
7 | 306 !if defined(USE_MSVCRT) |
1419 | 307 # CVARS = $(cvarsdll) |
714 | 308 # !elseif defined(MULTITHREADED) |
309 # CVARS = $(cvarsmt) | |
310 !else | |
311 # CVARS = $(cvars) | |
1419 | 312 # CVARS = $(cvarsmt) |
7 | 313 !endif |
314 | |
315 # need advapi32.lib for GetUserName() | |
316 # need shell32.lib for ExtractIcon() | |
317 # gdi32.lib and comdlg32.lib for printing support | |
318 # ole32.lib and uuid.lib are needed for FEAT_SHORTCUT | |
1569 | 319 CON_LIB = oldnames.lib kernel32.lib advapi32.lib shell32.lib gdi32.lib \ |
320 comdlg32.lib ole32.lib uuid.lib /machine:$(CPU) /nodefaultlib | |
714 | 321 !if "$(DELAYLOAD)" == "yes" |
7 | 322 CON_LIB = $(CON_LIB) /DELAYLOAD:comdlg32.dll /DELAYLOAD:ole32.dll DelayImp.lib |
323 !endif | |
324 | |
325 ### Set the default $(WINVER) to make it work with VC++7.0 (VS.NET) | |
326 # When set to 0x0500 ":browse" stops working. | |
327 !ifndef WINVER | |
328 WINVER = 0x0400 | |
329 !endif | |
330 | |
331 # If you have a fixed directory for $VIM or $VIMRUNTIME, other than the normal | |
332 # default, use these lines. | |
333 #VIMRCLOC = somewhere | |
334 #VIMRUNTIMEDIR = somewhere | |
335 | |
336 CFLAGS = -c /W3 /nologo $(CVARS) -I. -Iproto -DHAVE_PATHDEF -DWIN32 \ | |
337 $(SNIFF_DEFS) $(CSCOPE_DEFS) $(NETBEANS_DEFS) \ | |
338 $(NBDEBUG_DEFS) $(XPM_DEFS) \ | |
416 | 339 $(DEFINES) -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \ |
340 /Fo$(OUTDIR)/ | |
7 | 341 |
342 #>>>>> end of choices | |
343 ########################################################################### | |
344 | |
345 !ifdef OS | |
346 OS_TYPE = winnt | |
347 DEL_TREE = rmdir /s /q | |
348 !else | |
349 OS_TYPE = win95 | |
350 DEL_TREE = deltree /y | |
351 !endif | |
352 | |
353 INTDIR=$(OBJDIR) | |
354 OUTDIR=$(OBJDIR) | |
355 | |
1419 | 356 # Derive version of VC being used from nmake if not specified |
357 !if "$(MSVCVER)" == "" | |
358 !if "$(_NMAKE_VER)" == "" | |
359 MSVCVER = 4.0 | |
360 !endif | |
361 !if "$(_NMAKE_VER)" == "162" | |
362 MSVCVER = 5.0 | |
363 !endif | |
364 !if "$(_NMAKE_VER)" == "6.00.8168.0" | |
365 MSVCVER = 6.0 | |
1569 | 366 CPU = ix86 |
1419 | 367 !endif |
368 !if "$(_NMAKE_VER)" == "7.00.9466" | |
369 MSVCVER = 7.0 | |
370 !endif | |
371 !if "$(_NMAKE_VER)" == "7.10.3077" | |
372 MSVCVER = 7.1 | |
373 !endif | |
374 !if "$(_NMAKE_VER)" == "8.00.50727.42" | |
375 MSVCVER = 8.0 | |
376 !endif | |
377 !if "$(_NMAKE_VER)" == "8.00.50727.762" | |
378 MSVCVER = 8.0 | |
379 !endif | |
1569 | 380 !if "$(_NMAKE_VER)" == "9.00.20706.01" |
381 MSVCVER = 9.0 | |
382 !endif | |
1619 | 383 !if "$(_NMAKE_VER)" == "9.00.21022.08" |
384 MSVCVER = 9.0 | |
385 !endif | |
1803 | 386 !if "$(_NMAKE_VER)" == "9.00.30729.01" |
387 MSVCVER = 9.0 | |
388 !endif | |
1907 | 389 !if "$(_NMAKE_VER)" == "10.00.20506.01" |
390 MSVCVER = 10.0 | |
391 !endif | |
2101
8ae4de2d02af
updated for version 7.2.384
Bram Moolenaar <bram@zimbu.org>
parents:
1951
diff
changeset
|
392 !if "$(_NMAKE_VER)" == "10.00.30128.01" |
8ae4de2d02af
updated for version 7.2.384
Bram Moolenaar <bram@zimbu.org>
parents:
1951
diff
changeset
|
393 MSVCVER = 10.0 |
8ae4de2d02af
updated for version 7.2.384
Bram Moolenaar <bram@zimbu.org>
parents:
1951
diff
changeset
|
394 !endif |
2200
99ba9a30755a
Various smaller changes. Updated proto files. Updated dependencies.
Bram Moolenaar <bram@vim.org>
parents:
2192
diff
changeset
|
395 !if "$(_NMAKE_VER)" == "10.00.30319.01" |
99ba9a30755a
Various smaller changes. Updated proto files. Updated dependencies.
Bram Moolenaar <bram@vim.org>
parents:
2192
diff
changeset
|
396 MSVCVER = 10.0 |
99ba9a30755a
Various smaller changes. Updated proto files. Updated dependencies.
Bram Moolenaar <bram@vim.org>
parents:
2192
diff
changeset
|
397 !endif |
1419 | 398 !endif |
399 | |
400 # Abort bulding VIM if version of VC is unrecognised. | |
401 !ifndef MSVCVER | |
402 !message *** ERROR | |
403 !message Cannot determine Visual C version being used. If you are using the | |
404 !message Windows SDK then you must have the environment variable MSVCVER set to | |
405 !message your version of the VC compiler. If you are not using the Express | |
1569 | 406 !message version of Visual C, you can either set MSVCVER or update this makefile |
407 !message to handle the new value for _NMAKE_VER, "$(_NMAKE_VER)". | |
1419 | 408 !error Make aborted. |
409 !endif | |
410 | |
7 | 411 # Convert processor ID to MVC-compatible number |
1907 | 412 !if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") |
7 | 413 !if "$(CPUNR)" == "i386" |
414 CPUARG = /G3 | |
415 !elseif "$(CPUNR)" == "i486" | |
416 CPUARG = /G4 | |
417 !elseif "$(CPUNR)" == "i586" | |
418 CPUARG = /G5 | |
419 !elseif "$(CPUNR)" == "i686" | |
420 CPUARG = /G6 | |
84 | 421 !elseif "$(CPUNR)" == "pentium4" |
47 | 422 CPUARG = /G7 /arch:SSE2 |
7 | 423 !else |
424 CPUARG = | |
425 !endif | |
1419 | 426 !else |
2867 | 427 # VC8/9/10 only allows specifying SSE architecture but only for 32bit |
428 !if "$(ASSEMBLY_ARCHITECTURE)" == "x86" && "$(CPUNR)" == "pentium4" | |
1419 | 429 CPUARG = /arch:SSE2 |
430 !endif | |
431 !endif | |
432 | |
433 LIBC = | |
434 DEBUGINFO = /Zi | |
7 | 435 |
436 !ifdef NODEBUG | |
437 VIM = vim | |
438 !if "$(OPTIMIZE)" == "SPACE" | |
439 OPTFLAG = /O1 | |
440 !elseif "$(OPTIMIZE)" == "SPEED" | |
441 OPTFLAG = /O2 | |
442 !else # MAXSPEED | |
443 OPTFLAG = /Ox | |
444 !endif | |
2242
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
445 |
1907 | 446 !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") |
1419 | 447 # Use link time code generation if not worried about size |
448 !if "$(OPTIMIZE)" != "SPACE" | |
449 OPTFLAG = $(OPTFLAG) /GL | |
450 !endif | |
451 !endif | |
2242
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
452 |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
453 # (/Wp64 is deprecated in VC9 and generates an obnoxious warning.) |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
454 !if ("$(MSVCVER)" == "7.0") || ("$(MSVCVER)" == "7.1") || ("$(MSVCVER)" == "8.0") |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
455 CFLAGS=$(CFLAGS) $(WP64CHECK) |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
456 !endif |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
457 |
47 | 458 CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG) |
7 | 459 RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG |
460 ! ifdef USE_MSVCRT | |
1419 | 461 CFLAGS = $(CFLAGS) /MD |
7 | 462 LIBC = msvcrt.lib |
714 | 463 ! else |
7 | 464 LIBC = libcmt.lib |
1569 | 465 CFLAGS = $(CFLAGS) /Zl /MT |
7 | 466 ! endif |
467 !else # DEBUG | |
468 VIM = vimd | |
1569 | 469 ! if ("$(CPU)" == "i386") || ("$(CPU)" == "ix86") |
1419 | 470 DEBUGINFO = /ZI |
471 ! endif | |
268 | 472 CFLAGS = $(CFLAGS) -D_DEBUG -DDEBUG /Od |
7 | 473 RCFLAGS = $(rcflags) $(rcvars) -D_DEBUG -DDEBUG |
474 # The /fixed:no is needed for Quantify. Assume not 4.? as unsupported in VC4.0. | |
1419 | 475 ! if "$(MSVCVER)" == "4.0" |
7 | 476 LIBC = |
477 ! else | |
478 LIBC = /fixed:no | |
479 ! endif | |
426 | 480 ! ifdef USE_MSVCRT |
1419 | 481 CFLAGS = $(CFLAGS) /MDd |
7 | 482 LIBC = $(LIBC) msvcrtd.lib |
714 | 483 ! else |
426 | 484 LIBC = $(LIBC) libcmtd.lib |
1569 | 485 CFLAGS = $(CFLAGS) /Zl /MTd |
7 | 486 ! endif |
487 !endif # DEBUG | |
488 | |
489 INCL = vim.h os_win32.h ascii.h feature.h globals.h keymap.h macros.h \ | |
490 proto.h option.h structs.h term.h $(SNIFF_INCL) $(CSCOPE_INCL) \ | |
491 $(NBDEBUG_INCL) | |
492 | |
493 OBJ = \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
494 $(OUTDIR)\blowfish.obj \ |
7 | 495 $(OUTDIR)\buffer.obj \ |
496 $(OUTDIR)\charset.obj \ | |
497 $(OUTDIR)\diff.obj \ | |
498 $(OUTDIR)\digraph.obj \ | |
499 $(OUTDIR)\edit.obj \ | |
500 $(OUTDIR)\eval.obj \ | |
501 $(OUTDIR)\ex_cmds.obj \ | |
502 $(OUTDIR)\ex_cmds2.obj \ | |
503 $(OUTDIR)\ex_docmd.obj \ | |
504 $(OUTDIR)\ex_eval.obj \ | |
505 $(OUTDIR)\ex_getln.obj \ | |
506 $(OUTDIR)\fileio.obj \ | |
507 $(OUTDIR)\fold.obj \ | |
508 $(OUTDIR)\getchar.obj \ | |
440 | 509 $(OUTDIR)\hardcopy.obj \ |
799 | 510 $(OUTDIR)\hashtab.obj \ |
7 | 511 $(OUTDIR)\main.obj \ |
512 $(OUTDIR)\mark.obj \ | |
513 $(OUTDIR)\mbyte.obj \ | |
514 $(OUTDIR)\memfile.obj \ | |
515 $(OUTDIR)\memline.obj \ | |
516 $(OUTDIR)\menu.obj \ | |
517 $(OUTDIR)\message.obj \ | |
518 $(OUTDIR)\misc1.obj \ | |
519 $(OUTDIR)\misc2.obj \ | |
520 $(OUTDIR)\move.obj \ | |
521 $(OUTDIR)\normal.obj \ | |
522 $(OUTDIR)\ops.obj \ | |
523 $(OUTDIR)\option.obj \ | |
524 $(OUTDIR)\os_mswin.obj \ | |
525 $(OUTDIR)\os_win32.obj \ | |
526 $(OUTDIR)\pathdef.obj \ | |
799 | 527 $(OUTDIR)\popupmnu.obj \ |
7 | 528 $(OUTDIR)\quickfix.obj \ |
529 $(OUTDIR)\regexp.obj \ | |
530 $(OUTDIR)\screen.obj \ | |
531 $(OUTDIR)\search.obj \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
532 $(OUTDIR)\sha256.obj \ |
220 | 533 $(OUTDIR)\spell.obj \ |
7 | 534 $(OUTDIR)\syntax.obj \ |
535 $(OUTDIR)\tag.obj \ | |
536 $(OUTDIR)\term.obj \ | |
537 $(OUTDIR)\ui.obj \ | |
538 $(OUTDIR)\undo.obj \ | |
539 $(OUTDIR)\window.obj \ | |
540 $(OUTDIR)\vim.res | |
541 | |
542 !if "$(OLE)" == "yes" | |
543 CFLAGS = $(CFLAGS) -DFEAT_OLE | |
544 RCFLAGS = $(RCFLAGS) -DFEAT_OLE | |
545 OLE_OBJ = $(OUTDIR)\if_ole.obj | |
546 OLE_IDL = if_ole.idl | |
547 OLE_LIB = oleaut32.lib | |
548 !endif | |
549 | |
550 !if "$(IME)" == "yes" | |
551 CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME | |
552 !ifndef DYNAMIC_IME | |
553 DYNAMIC_IME = yes | |
554 !endif | |
555 !if "$(DYNAMIC_IME)" == "yes" | |
556 CFLAGS = $(CFLAGS) -DDYNAMIC_IME | |
557 !else | |
558 IME_LIB = imm32.lib | |
559 !endif | |
560 !endif | |
561 | |
562 !if "$(GIME)" == "yes" | |
563 CFLAGS = $(CFLAGS) -DGLOBAL_IME | |
564 OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj | |
565 MBYTE = yes | |
566 !endif | |
567 | |
568 !if "$(MBYTE)" == "yes" | |
569 CFLAGS = $(CFLAGS) -DFEAT_MBYTE | |
570 !endif | |
571 | |
572 !if "$(GUI)" == "yes" | |
573 SUBSYSTEM = windows | |
574 CFLAGS = $(CFLAGS) -DFEAT_GUI_W32 | |
575 RCFLAGS = $(RCFLAGS) -DFEAT_GUI_W32 | |
576 VIM = g$(VIM) | |
577 GUI_INCL = \ | |
578 gui.h \ | |
579 regexp.h \ | |
580 ascii.h \ | |
581 ex_cmds.h \ | |
582 farsi.h \ | |
583 feature.h \ | |
584 globals.h \ | |
184 | 585 gui_beval.h \ |
7 | 586 keymap.h \ |
587 macros.h \ | |
588 option.h \ | |
589 os_dos.h \ | |
590 os_win32.h | |
591 GUI_OBJ = \ | |
592 $(OUTDIR)\gui.obj \ | |
184 | 593 $(OUTDIR)\gui_beval.obj \ |
7 | 594 $(OUTDIR)\gui_w32.obj \ |
595 $(OUTDIR)\os_w32exe.obj | |
596 GUI_LIB = \ | |
1569 | 597 gdi32.lib version.lib $(IME_LIB) \ |
7 | 598 winspool.lib comctl32.lib advapi32.lib shell32.lib \ |
599 /machine:$(CPU) /nodefaultlib | |
600 !else | |
601 SUBSYSTEM = console | |
602 !endif | |
603 | |
604 # iconv.dll library (dynamically loaded) | |
605 !ifndef ICONV | |
606 ICONV = yes | |
607 !endif | |
608 !if "$(ICONV)" == "yes" | |
609 CFLAGS = $(CFLAGS) -DDYNAMIC_ICONV | |
610 !endif | |
611 | |
612 # libintl.dll library | |
613 !ifndef GETTEXT | |
614 GETTEXT = yes | |
615 !endif | |
616 !if "$(GETTEXT)" == "yes" | |
617 CFLAGS = $(CFLAGS) -DDYNAMIC_GETTEXT | |
618 !endif | |
619 | |
620 # TCL interface | |
621 !ifdef TCL | |
622 !ifndef TCL_VER | |
623 TCL_VER = 83 | |
624 TCL_VER_LONG = 8.3 | |
625 !endif | |
626 !message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)" | |
627 !if "$(DYNAMIC_TCL)" == "yes" | |
628 !message Tcl DLL will be loaded dynamically | |
629 TCL_DLL = tcl$(TCL_VER).dll | |
416 | 630 CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \ |
631 -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\" | |
7 | 632 TCL_OBJ = $(OUTDIR)\if_tcl.obj |
633 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)" | |
3369 | 634 TCL_LIB = "$(TCL)\lib\tclstub$(TCL_VER).lib" |
7 | 635 !else |
636 CFLAGS = $(CFLAGS) -DFEAT_TCL | |
637 TCL_OBJ = $(OUTDIR)\if_tcl.obj | |
638 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)" | |
639 TCL_LIB = $(TCL)\lib\tcl$(TCL_VER)vc.lib | |
640 !endif | |
641 !endif | |
642 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
643 # Lua interface |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
644 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
645 !ifndef LUA_VER |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
646 LUA_VER = 51 |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
647 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
648 !message Lua requested (version $(LUA_VER)) - root dir is "$(LUA)" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
649 !if "$(DYNAMIC_LUA)" == "yes" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
650 !message Lua DLL will be loaded dynamically |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
651 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
652 CFLAGS = $(CFLAGS) -DFEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
653 LUA_OBJ = $(OUTDIR)\if_lua.obj |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
654 LUA_INC = /I "$(LUA)\include" /I "$(LUA)" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
655 !if "$(DYNAMIC_LUA)" == "yes" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
656 CFLAGS = $(CFLAGS) -DDYNAMIC_LUA \ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
657 -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
658 LUA_LIB = /nodefaultlib:lua$(LUA_VER).lib |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
659 !else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
660 LUA_LIB = "$(LUA)\lib\lua$(LUA_VER).lib" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
661 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
662 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
663 |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
664 !ifdef PYTHON |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
665 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
666 DYNAMIC_PYTHON=yes |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
667 DYNAMIC_PYTHON3=yes |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
668 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
669 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
670 |
7 | 671 # PYTHON interface |
672 !ifdef PYTHON | |
673 !ifndef PYTHON_VER | |
674 PYTHON_VER = 22 | |
675 !endif | |
676 !message Python requested (version $(PYTHON_VER)) - root dir is "$(PYTHON)" | |
677 !if "$(DYNAMIC_PYTHON)" == "yes" | |
678 !message Python DLL will be loaded dynamically | |
679 !endif | |
680 CFLAGS = $(CFLAGS) -DFEAT_PYTHON | |
681 PYTHON_OBJ = $(OUTDIR)\if_python.obj | |
682 PYTHON_INC = /I "$(PYTHON)\Include" /I "$(PYTHON)\PC" | |
683 !if "$(DYNAMIC_PYTHON)" == "yes" | |
416 | 684 CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON \ |
685 -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\" | |
7 | 686 PYTHON_LIB = /nodefaultlib:python$(PYTHON_VER).lib |
687 !else | |
688 PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib | |
689 !endif | |
690 !endif | |
691 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
692 # PYTHON3 interface |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
693 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
694 !ifndef PYTHON3_VER |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
695 PYTHON3_VER = 31 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
696 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
697 !message Python3 requested (version $(PYTHON3_VER)) - root dir is "$(PYTHON3)" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
698 !if "$(DYNAMIC_PYTHON3)" == "yes" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
699 !message Python3 DLL will be loaded dynamically |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
700 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
701 CFLAGS = $(CFLAGS) -DFEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
702 PYTHON3_OBJ = $(OUTDIR)\if_python3.obj |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
703 PYTHON3_INC = /I "$(PYTHON3)\Include" /I "$(PYTHON3)\PC" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
704 !if "$(DYNAMIC_PYTHON3)" == "yes" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
705 CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON3 \ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
706 -DDYNAMIC_PYTHON3_DLL=\"python$(PYTHON3_VER).dll\" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
707 PYTHON3_LIB = /nodefaultlib:python$(PYTHON3_VER).lib |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
708 !else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
709 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
|
710 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
711 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
712 |
14 | 713 # MzScheme interface |
714 !ifdef MZSCHEME | |
715 !message MzScheme requested - root dir is "$(MZSCHEME)" | |
716 !ifndef MZSCHEME_VER | |
717 MZSCHEME_VER = 205_000 | |
718 !endif | |
719 CFLAGS = $(CFLAGS) -DFEAT_MZSCHEME -I $(MZSCHEME)\include | |
2628 | 720 !if EXIST("$(MZSCHEME)\collects\scheme\base.ss") \ |
721 || EXIST("$(MZSCHEME)\collects\scheme\base.rkt") | |
722 # for MzScheme >= 4 we need to include byte code for basic Scheme stuff | |
1894 | 723 MZSCHEME_EXTRA_DEP = mzscheme_base.c |
724 CFLAGS = $(CFLAGS) -DINCLUDE_MZSCHEME_BASE | |
725 !endif | |
2628 | 726 !if EXIST("$(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib") |
727 MZSCHEME_MAIN_LIB=mzsch | |
728 !else | |
729 MZSCHEME_MAIN_LIB=racket | |
730 !endif | |
731 !if EXIST("$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib") \ | |
1894 | 732 && !EXIST("$(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib") |
733 !message Building with Precise GC | |
734 MZSCHEME_PRECISE_GC = yes | |
735 CFLAGS = $(CFLAGS) -DMZ_PRECISE_GC | |
736 !endif | |
127 | 737 !if "$(DYNAMIC_MZSCHEME)" == "yes" |
1894 | 738 !if "$(MZSCHEME_PRECISE_GC)" == "yes" |
739 !error MzScheme with Precise GC cannot be loaded dynamically | |
740 !endif | |
127 | 741 !message MzScheme DLLs will be loaded dynamically |
416 | 742 CFLAGS = $(CFLAGS) -DDYNAMIC_MZSCHEME \ |
2628 | 743 -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" \ |
416 | 744 -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\" |
127 | 745 !else |
1894 | 746 !if "$(MZSCHEME_DEBUG)" == "yes" |
747 CFLAGS = $(CFLAGS) -DMZSCHEME_FORCE_GC | |
748 !endif | |
749 !if "$(MZSCHEME_PRECISE_GC)" == "yes" | |
750 # Precise GC does not use separate dll | |
2628 | 751 MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib |
1894 | 752 !else |
416 | 753 MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib \ |
2628 | 754 $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib |
127 | 755 !endif |
1894 | 756 !endif |
14 | 757 MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj |
3348 | 758 # increase stack size |
759 MZSCHEME_LIB = $(MZSCHEME_LIB) /STACK:8388608 | |
14 | 760 !endif |
761 | |
7 | 762 # Perl interface |
763 !ifdef PERL | |
764 !ifndef PERL_VER | |
765 PERL_VER = 56 | |
766 !endif | |
767 !message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)" | |
768 !if "$(DYNAMIC_PERL)" == "yes" | |
769 !if $(PERL_VER) >= 56 | |
770 !message Perl DLL will be loaded dynamically | |
771 !else | |
772 !message Dynamic loading is not supported for Perl versions earlier than 5.6.0 | |
773 !message Reverting to static loading... | |
774 !undef DYNAMIC_PERL | |
775 !endif | |
776 !endif | |
777 | |
778 # Is Perl installed in architecture-specific directories? | |
779 !if exist($(PERL)\Bin\MSWin32-x86) | |
780 PERL_ARCH = \MSWin32-x86 | |
781 !endif | |
782 | |
783 PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core | |
784 | |
785 # Version-dependent stuff | |
786 !if $(PERL_VER) == 55 | |
787 PERL_LIB = $(PERL_INCDIR)\perl.lib | |
788 !else | |
789 PERL_DLL = perl$(PERL_VER).dll | |
790 PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib | |
791 !endif | |
792 | |
793 CFLAGS = $(CFLAGS) -DFEAT_PERL | |
794 | |
795 # Do we want to load Perl dynamically? | |
796 !if "$(DYNAMIC_PERL)" == "yes" | |
797 CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\" | |
798 !undef PERL_LIB | |
799 !endif | |
800 | |
801 PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl | |
802 PERL_INC = /I $(PERL_INCDIR) | |
803 PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj | |
804 XSUBPP = $(PERL)\lib\ExtUtils\xsubpp | |
3085 | 805 !if exist($(XSUBPP)) |
3064 | 806 XSUBPP = $(PERL_EXE) $(XSUBPP) |
807 !else | |
808 XSUBPP = xsubpp | |
809 !endif | |
7 | 810 XSUBPP_TYPEMAP = $(PERL)\lib\ExtUtils\typemap |
811 | |
812 !endif | |
813 | |
814 # | |
815 # Support Ruby interface | |
816 # | |
817 !ifdef RUBY | |
818 # Set default value | |
819 !ifndef RUBY_VER | |
820 RUBY_VER = 18 | |
821 !endif | |
822 !ifndef RUBY_VER_LONG | |
823 RUBY_VER_LONG = 1.8 | |
824 !endif | |
3722 | 825 !ifndef RUBY_API_VER |
826 RUBY_API_VER = $(RUBY_VER_LONG:.=) | |
827 !endif | |
7 | 828 |
829 !if $(RUBY_VER) >= 18 | |
830 !ifndef RUBY_PLATFORM | |
831 RUBY_PLATFORM = i386-mswin32 | |
832 !endif | |
833 !ifndef RUBY_INSTALL_NAME | |
3722 | 834 RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_API_VER) |
7 | 835 !endif |
836 !else | |
837 !ifndef RUBY_PLATFORM | |
838 RUBY_PLATFORM = i586-mswin32 | |
839 !endif | |
840 !ifndef RUBY_INSTALL_NAME | |
3722 | 841 RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER) |
7 | 842 !endif |
843 !endif # $(RUBY_VER) >= 18 | |
844 | |
845 !message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)" | |
846 CFLAGS = $(CFLAGS) -DFEAT_RUBY | |
847 RUBY_OBJ = $(OUTDIR)\if_ruby.obj | |
3722 | 848 !if $(RUBY_VER) >= 19 |
849 RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" /I "$(RUBY)\include\ruby-$(RUBY_VER_LONG)" /I "$(RUBY)\include\ruby-$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" | |
2342
f6540762173d
Fixes and improvements for MS-Windows build.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
850 !else |
7 | 851 RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" |
2342
f6540762173d
Fixes and improvements for MS-Windows build.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
852 !endif |
7 | 853 RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib |
854 # Do we want to load Ruby dynamically? | |
855 !if "$(DYNAMIC_RUBY)" == "yes" | |
856 !message Ruby DLL will be loaded dynamically | |
416 | 857 CFLAGS = $(CFLAGS) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_VER=$(RUBY_VER) \ |
858 -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\" | |
7 | 859 !undef RUBY_LIB |
860 !endif | |
861 !endif # RUBY | |
862 | |
863 # | |
864 # Support PostScript printing | |
865 # | |
866 !if "$(POSTSCRIPT)" == "yes" | |
867 CFLAGS = $(CFLAGS) -DMSWINPS | |
868 !endif # POSTSCRIPT | |
869 | |
870 # | |
871 # FEATURES: TINY, SMALL, NORMAL, BIG or HUGE | |
872 # | |
873 !if "$(FEATURES)"=="" | |
874 FEATURES = BIG | |
875 !endif | |
876 CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES) | |
877 | |
878 # | |
268 | 879 # Always generate the .pdb file, so that we get debug symbols that can be used |
880 # on a crash (doesn't add overhead to the executable). | |
1419 | 881 # Generate edit-and-continue debug info when no optimization - allows to |
882 # debug more conveniently (able to look at variables which are in registers) | |
268 | 883 # |
1419 | 884 CFLAGS = $(CFLAGS) /Fd$(OUTDIR)/ $(DEBUGINFO) |
885 LINK_PDB = /PDB:$(VIM).pdb -debug | |
268 | 886 |
887 # | |
888 # End extra feature include | |
7 | 889 # |
890 !message | |
891 | |
1419 | 892 conflags = /nologo /subsystem:$(SUBSYSTEM) |
7 | 893 |
659 | 894 PATHDEF_SRC = $(OUTDIR)\pathdef.c |
895 | |
7 | 896 !IF "$(MAP)" == "yes" |
897 # "/map" is for debugging | |
898 conflags = $(conflags) /map | |
899 !ELSEIF "$(MAP)" == "lines" | |
900 # "/mapinfo:lines" is for debugging, only works for VC6 and later | |
901 conflags = $(conflags) /map /mapinfo:lines | |
902 !ENDIF | |
903 | |
1419 | 904 LINKARGS1 = $(linkdebug) $(conflags) |
7 | 905 LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(LIBC) $(OLE_LIB) user32.lib $(SNIFF_LIB) \ |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
906 $(LUA_LIB) $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(RUBY_LIB) \ |
416 | 907 $(TCL_LIB) $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB) |
7 | 908 |
1419 | 909 # Report link time code generation progress if used. |
910 !ifdef NODEBUG | |
1907 | 911 !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") |
1419 | 912 !if "$(OPTIMIZE)" != "SPACE" |
913 LINKARGS1 = $(LINKARGS1) /LTCG:STATUS | |
914 !endif | |
915 !endif | |
916 !endif | |
917 | |
416 | 918 all: $(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe \ |
919 GvimExt/gvimext.dll | |
7 | 920 |
416 | 921 $(VIM).exe: $(OUTDIR) $(OBJ) $(GUI_OBJ) $(OLE_OBJ) $(OLE_IDL) $(MZSCHEME_OBJ) \ |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
922 $(LUA_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) $(TCL_OBJ) \ |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
923 $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) \ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
924 version.c version.h |
416 | 925 $(CC) $(CFLAGS) version.c |
389 | 926 $(link) $(LINKARGS1) -out:$(VIM).exe $(OBJ) $(GUI_OBJ) $(OLE_OBJ) \ |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
927 $(LUA_OBJ) $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) \ |
416 | 928 $(TCL_OBJ) $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) \ |
929 $(XPM_OBJ) $(OUTDIR)\version.obj $(LINKARGS2) | |
7 | 930 |
388 | 931 $(VIM): $(VIM).exe |
7 | 932 |
933 $(OUTDIR): | |
39 | 934 if not exist $(OUTDIR)/nul mkdir $(OUTDIR) |
7 | 935 |
936 install.exe: dosinst.c | |
416 | 937 $(CC) /nologo -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib \ |
2220
b1c70c500de4
Found a way to make the MS-Windows installer wait for the uninstaller to
Bram Moolenaar <bram@vim.org>
parents:
2200
diff
changeset
|
938 user32.lib ole32.lib advapi32.lib uuid.lib |
7 | 939 - if exist install.exe del install.exe |
940 ren dosinst.exe install.exe | |
941 | |
942 uninstal.exe: uninstal.c | |
943 $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib | |
944 | |
945 vimrun.exe: vimrun.c | |
946 $(CC) /nologo -DNDEBUG vimrun.c | |
947 | |
948 xxd/xxd.exe: xxd/xxd.c | |
949 cd xxd | |
950 $(MAKE) /NOLOGO -f Make_mvc.mak | |
951 cd .. | |
952 | |
953 GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h | |
954 cd GvimExt | |
955 $(MAKE) /NOLOGO -f Makefile $(MAKEFLAGS_GVIMEXT) | |
956 cd .. | |
957 | |
958 | |
959 tags: notags | |
960 $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro | |
961 | |
962 notags: | |
963 - if exist tags del tags | |
964 | |
965 clean: | |
444 | 966 - if exist $(OUTDIR)/nul $(DEL_TREE) $(OUTDIR) |
7 | 967 - if exist *.obj del *.obj |
968 - if exist $(VIM).exe del $(VIM).exe | |
969 - if exist $(VIM).ilk del $(VIM).ilk | |
970 - if exist $(VIM).pdb del $(VIM).pdb | |
971 - if exist $(VIM).map del $(VIM).map | |
972 - if exist $(VIM).ncb del $(VIM).ncb | |
973 - if exist vimrun.exe del vimrun.exe | |
974 - if exist install.exe del install.exe | |
975 - if exist uninstal.exe del uninstal.exe | |
976 - if exist if_perl.c del if_perl.c | |
977 - if exist dimm.h del dimm.h | |
978 - if exist dimm_i.c del dimm_i.c | |
979 - if exist dimm.tlb del dimm.tlb | |
980 - if exist dosinst.exe del dosinst.exe | |
1951 | 981 - if exist mzscheme_base.c del mzscheme_base.c |
7 | 982 cd xxd |
983 $(MAKE) /NOLOGO -f Make_mvc.mak clean | |
984 cd .. | |
985 cd GvimExt | |
986 $(MAKE) /NOLOGO -f Makefile clean | |
987 cd .. | |
988 cd GvimExt | |
989 $(MAKE) /NOLOGO -f Makefile clean | |
990 cd .. | |
991 - if exist testdir\*.out del testdir\*.out | |
992 | |
993 test: | |
994 cd testdir | |
995 $(MAKE) /NOLOGO -f Make_dos.mak win32 | |
996 cd .. | |
997 | |
47 | 998 testclean: |
999 cd testdir | |
1000 $(MAKE) /NOLOGO -f Make_dos.mak clean | |
1001 cd .. | |
1002 | |
7 | 1003 ########################################################################### |
1004 | |
1005 # Create a default rule for transforming .c files to .obj files in $(OUTDIR) | |
1006 # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later) | |
1419 | 1007 !IF "$(MSVCVER)" == "4.0" |
7 | 1008 .c{$(OUTDIR)/}.obj: |
1009 !ELSE | |
1010 .c{$(OUTDIR)/}.obj:: | |
1011 !ENDIF | |
416 | 1012 $(CC) $(CFLAGS) $< |
7 | 1013 |
1014 # Create a default rule for transforming .cpp files to .obj files in $(OUTDIR) | |
1015 # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later) | |
1419 | 1016 !IF "$(MSVCVER)" == "4.0" |
7 | 1017 .cpp{$(OUTDIR)/}.obj: |
1018 !ELSE | |
1019 .cpp{$(OUTDIR)/}.obj:: | |
1020 !ENDIF | |
416 | 1021 $(CC) $(CFLAGS) $< |
7 | 1022 |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
1023 $(OUTDIR)/blowfish.obj: $(OUTDIR) blowfish.c $(INCL) |
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
1024 |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1025 $(OUTDIR)/buffer.obj: $(OUTDIR) buffer.c $(INCL) |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
1026 |
7 | 1027 $(OUTDIR)/charset.obj: $(OUTDIR) charset.c $(INCL) |
1028 | |
1029 $(OUTDIR)/diff.obj: $(OUTDIR) diff.c $(INCL) | |
1030 | |
1031 $(OUTDIR)/digraph.obj: $(OUTDIR) digraph.c $(INCL) | |
1032 | |
1033 $(OUTDIR)/edit.obj: $(OUTDIR) edit.c $(INCL) | |
1034 | |
1035 $(OUTDIR)/eval.obj: $(OUTDIR) eval.c $(INCL) | |
1036 | |
1037 $(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL) | |
1038 | |
1039 $(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL) | |
1040 | |
1041 $(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmds.h | |
1042 | |
1043 $(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) ex_cmds.h | |
1044 | |
1045 $(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL) | |
1046 | |
1047 $(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL) | |
1048 | |
1049 $(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL) | |
1050 | |
1051 $(OUTDIR)/getchar.obj: $(OUTDIR) getchar.c $(INCL) | |
1052 | |
440 | 1053 $(OUTDIR)/hardcopy.obj: $(OUTDIR) hardcopy.c $(INCL) |
1054 | |
799 | 1055 $(OUTDIR)/hashtab.obj: $(OUTDIR) hashtab.c $(INCL) |
119 | 1056 |
7 | 1057 $(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL) |
1058 | |
184 | 1059 $(OUTDIR)/gui_beval.obj: $(OUTDIR) gui_beval.c $(INCL) $(GUI_INCL) |
1060 | |
7 | 1061 $(OUTDIR)/gui_w32.obj: $(OUTDIR) gui_w32.c gui_w48.c $(INCL) $(GUI_INCL) |
1062 | |
1063 $(OUTDIR)/if_cscope.obj: $(OUTDIR) if_cscope.c $(INCL) | |
1064 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1065 $(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1066 $(CC) $(CFLAGS) $(LUA_INC) if_lua.c |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1067 |
7 | 1068 if_perl.c : if_perl.xs typemap |
3064 | 1069 $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \ |
416 | 1070 -typemap typemap if_perl.xs > if_perl.c |
7 | 1071 |
1072 $(OUTDIR)/if_perl.obj: $(OUTDIR) if_perl.c $(INCL) | |
416 | 1073 $(CC) $(CFLAGS) $(PERL_INC) if_perl.c |
7 | 1074 |
1075 $(OUTDIR)/if_perlsfio.obj: $(OUTDIR) if_perlsfio.c $(INCL) | |
416 | 1076 $(CC) $(CFLAGS) $(PERL_INC) if_perlsfio.c |
7 | 1077 |
1894 | 1078 $(OUTDIR)/if_mzsch.obj: $(OUTDIR) if_mzsch.c $(INCL) $(MZSCHEME_EXTRA_DEP) |
426 | 1079 $(CC) $(CFLAGS) if_mzsch.c \ |
416 | 1080 -DMZSCHEME_COLLECTS=\"$(MZSCHEME:\=\\)\\collects\" |
1894 | 1081 mzscheme_base.c: |
1082 $(MZSCHEME)\mzc --c-mods mzscheme_base.c ++lib scheme/base | |
14 | 1083 |
7 | 1084 $(OUTDIR)/if_python.obj: $(OUTDIR) if_python.c $(INCL) |
416 | 1085 $(CC) $(CFLAGS) $(PYTHON_INC) if_python.c |
7 | 1086 |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1087 $(OUTDIR)/if_python3.obj: $(OUTDIR) if_python3.c $(INCL) |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1088 $(CC) $(CFLAGS) $(PYTHON3_INC) if_python3.c |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1089 |
7 | 1090 $(OUTDIR)/if_ole.obj: $(OUTDIR) if_ole.cpp $(INCL) if_ole.h |
1091 | |
1092 $(OUTDIR)/if_ruby.obj: $(OUTDIR) if_ruby.c $(INCL) | |
416 | 1093 $(CC) $(CFLAGS) $(RUBY_INC) if_ruby.c |
7 | 1094 |
1095 $(OUTDIR)/if_sniff.obj: $(OUTDIR) if_sniff.c $(INCL) | |
416 | 1096 $(CC) $(CFLAGS) if_sniff.c |
7 | 1097 |
1098 $(OUTDIR)/if_tcl.obj: $(OUTDIR) if_tcl.c $(INCL) | |
416 | 1099 $(CC) $(CFLAGS) $(TCL_INC) if_tcl.c |
7 | 1100 |
1101 $(OUTDIR)/main.obj: $(OUTDIR) main.c $(INCL) | |
1102 | |
1103 $(OUTDIR)/mark.obj: $(OUTDIR) mark.c $(INCL) | |
1104 | |
1105 $(OUTDIR)/memfile.obj: $(OUTDIR) memfile.c $(INCL) | |
1106 | |
1107 $(OUTDIR)/memline.obj: $(OUTDIR) memline.c $(INCL) | |
1108 | |
1109 $(OUTDIR)/menu.obj: $(OUTDIR) menu.c $(INCL) | |
1110 | |
1111 $(OUTDIR)/message.obj: $(OUTDIR) message.c $(INCL) | |
1112 | |
1113 $(OUTDIR)/misc1.obj: $(OUTDIR) misc1.c $(INCL) | |
1114 | |
1115 $(OUTDIR)/misc2.obj: $(OUTDIR) misc2.c $(INCL) | |
1116 | |
1117 $(OUTDIR)/move.obj: $(OUTDIR) move.c $(INCL) | |
1118 | |
1119 $(OUTDIR)/mbyte.obj: $(OUTDIR) mbyte.c $(INCL) | |
1120 | |
1121 $(OUTDIR)/netbeans.obj: $(OUTDIR) netbeans.c $(NBDEBUG_SRC) $(INCL) | |
1122 | |
1123 $(OUTDIR)/normal.obj: $(OUTDIR) normal.c $(INCL) | |
1124 | |
1125 $(OUTDIR)/option.obj: $(OUTDIR) option.c $(INCL) | |
1126 | |
1127 $(OUTDIR)/ops.obj: $(OUTDIR) ops.c $(INCL) | |
1128 | |
1129 $(OUTDIR)/os_mswin.obj: $(OUTDIR) os_mswin.c $(INCL) | |
1130 | |
1131 $(OUTDIR)/os_win32.obj: $(OUTDIR) os_win32.c $(INCL) os_win32.h | |
1132 | |
1133 $(OUTDIR)/os_w32exe.obj: $(OUTDIR) os_w32exe.c $(INCL) | |
1134 | |
659 | 1135 $(OUTDIR)/pathdef.obj: $(OUTDIR) $(PATHDEF_SRC) $(INCL) |
1136 $(CC) $(CFLAGS) $(PATHDEF_SRC) | |
7 | 1137 |
799 | 1138 $(OUTDIR)/popupmnu.obj: $(OUTDIR) popupmnu.c $(INCL) |
539 | 1139 |
7 | 1140 $(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL) |
1141 | |
1142 $(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c $(INCL) | |
1143 | |
1144 $(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL) | |
1145 | |
1146 $(OUTDIR)/search.obj: $(OUTDIR) search.c $(INCL) | |
1147 | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1148 $(OUTDIR)/sha256.obj: $(OUTDIR) sha256.c $(INCL) |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1149 |
220 | 1150 $(OUTDIR)/spell.obj: $(OUTDIR) spell.c $(INCL) |
1151 | |
7 | 1152 $(OUTDIR)/syntax.obj: $(OUTDIR) syntax.c $(INCL) |
1153 | |
1154 $(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL) | |
1155 | |
1156 $(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL) | |
1157 | |
1158 $(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL) | |
1159 | |
1160 $(OUTDIR)/undo.obj: $(OUTDIR) undo.c $(INCL) | |
1161 | |
1162 $(OUTDIR)/window.obj: $(OUTDIR) window.c $(INCL) | |
1163 | |
1164 $(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c | |
416 | 1165 $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c |
7 | 1166 |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
1167 $(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp \ |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
1168 tearoff.bmp vim.ico vim_error.ico \ |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
1169 vim_alert.ico vim_info.ico vim_quest.ico |
7 | 1170 $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc |
1171 | |
388 | 1172 iid_ole.c if_ole.h vim.tlb: if_ole.idl |
416 | 1173 midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \ |
1174 /header if_ole.h if_ole.idl | |
7 | 1175 |
1176 dimm.h dimm_i.c: dimm.idl | |
388 | 1177 midl /nologo /error none /proxy nul dimm.idl |
7 | 1178 |
1179 $(OUTDIR)/dimm_i.obj: $(OUTDIR) dimm_i.c $(INCL) | |
1180 | |
1181 $(OUTDIR)/glbl_ime.obj: $(OUTDIR) glbl_ime.cpp dimm.h $(INCL) | |
1182 | |
19 | 1183 # $CFLAGS may contain backslashes and double quotes, escape them both. |
1184 E0_CFLAGS = $(CFLAGS:\=\\) | |
1185 E_CFLAGS = $(E0_CFLAGS:"=\") | |
1072 | 1186 # ") stop the string |
2708 | 1187 # $LINKARGS2 may contain backslashes and double quotes, escape them both. |
1188 E0_LINKARGS2 = $(LINKARGS2:\=\\) | |
1189 E_LINKARGS2 = $(E0_LINKARGS2:"=\") | |
1190 # ") stop the string | |
19 | 1191 |
659 | 1192 $(PATHDEF_SRC): auto |
1193 @echo creating $(PATHDEF_SRC) | |
1194 @echo /* pathdef.c */ > $(PATHDEF_SRC) | |
1195 @echo #include "vim.h" >> $(PATHDEF_SRC) | |
1196 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; >> $(PATHDEF_SRC) | |
1197 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; >> $(PATHDEF_SRC) | |
1198 @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> $(PATHDEF_SRC) | |
2708 | 1199 @echo char_u *all_lflags = (char_u *)"$(link:\=\\) $(LINKARGS1:\=\\) $(E_LINKARGS2)"; >> $(PATHDEF_SRC) |
659 | 1200 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> $(PATHDEF_SRC) |
1201 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> $(PATHDEF_SRC) | |
7 | 1202 |
1203 auto: | |
1204 if not exist auto/nul mkdir auto | |
1205 | |
1206 # End Custom Build | |
1207 proto.h: \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
1208 proto/blowfish.pro \ |
7 | 1209 proto/buffer.pro \ |
1210 proto/charset.pro \ | |
1211 proto/diff.pro \ | |
1212 proto/digraph.pro \ | |
1213 proto/edit.pro \ | |
1214 proto/eval.pro \ | |
1215 proto/ex_cmds.pro \ | |
1216 proto/ex_cmds2.pro \ | |
1217 proto/ex_docmd.pro \ | |
1218 proto/ex_eval.pro \ | |
1219 proto/ex_getln.pro \ | |
1220 proto/fileio.pro \ | |
1221 proto/getchar.pro \ | |
440 | 1222 proto/hardcopy.pro \ |
799 | 1223 proto/hashtab.pro \ |
7 | 1224 proto/main.pro \ |
1225 proto/mark.pro \ | |
1226 proto/memfile.pro \ | |
1227 proto/memline.pro \ | |
1228 proto/menu.pro \ | |
1229 proto/message.pro \ | |
1230 proto/misc1.pro \ | |
1231 proto/misc2.pro \ | |
1232 proto/move.pro \ | |
1233 proto/mbyte.pro \ | |
1234 proto/normal.pro \ | |
1235 proto/ops.pro \ | |
1236 proto/option.pro \ | |
1237 proto/os_mswin.pro \ | |
1238 proto/os_win32.pro \ | |
799 | 1239 proto/popupmnu.pro \ |
7 | 1240 proto/quickfix.pro \ |
1241 proto/regexp.pro \ | |
1242 proto/screen.pro \ | |
1243 proto/search.pro \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
1244 proto/sha256.pro \ |
220 | 1245 proto/spell.pro \ |
7 | 1246 proto/syntax.pro \ |
1247 proto/tag.pro \ | |
1248 proto/term.pro \ | |
1249 proto/ui.pro \ | |
1250 proto/undo.pro \ | |
1251 proto/window.pro \ | |
1252 $(NETBEANS_PRO) | |
1253 | |
844 | 1254 .SUFFIXES: .cod .i |
843 | 1255 |
1256 # Generate foo.cod (mixed source and assembly listing) from foo.c via "nmake | |
1257 # foo.cod" | |
1258 .c.cod: | |
1259 $(CC) $(CFLAGS) /FAcs $< | |
1260 | |
1261 # Generate foo.i (preprocessor listing) from foo.c via "nmake foo.i" | |
1262 .c.i: | |
1263 $(CC) $(CFLAGS) /P /C $< | |
714 | 1264 |
1265 | |
7 | 1266 # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: |