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