Mercurial > vim
annotate src/Make_mvc.mak @ 7076:6ad58a7e995b v7.4.850
commit https://github.com/vim/vim/commit/544780248b5876339b316703fc2f330a9d316c45
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 1 19:50:09 2015 +0200
patch 7.4.850
Problem: <Esc> does not show up.
Solution: Use > and <. (Kazunobu Kuriyama)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 01 Sep 2015 20:00:04 +0200 |
parents | 98d1d53edc66 |
children | c412b0922c27 |
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 \ |
6797 | 346 comdlg32.lib ole32.lib uuid.lib /machine:$(CPU) |
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 | |
6952 | 449 !if ("$(_NMAKE_VER)" == "14.00.22609.0") || ("$(_NMAKE_VER)" == "14.00.22816.0") || ("$(_NMAKE_VER)" == "14.00.23026.0") |
6797 | 450 MSVCVER = 14.0 |
451 !endif | |
1419 | 452 !endif |
453 | |
4352 | 454 # Abort building VIM if version of VC is unrecognised. |
1419 | 455 !ifndef MSVCVER |
456 !message *** ERROR | |
457 !message Cannot determine Visual C version being used. If you are using the | |
458 !message Windows SDK then you must have the environment variable MSVCVER set to | |
459 !message your version of the VC compiler. If you are not using the Express | |
1569 | 460 !message version of Visual C, you can either set MSVCVER or update this makefile |
461 !message to handle the new value for _NMAKE_VER, "$(_NMAKE_VER)". | |
1419 | 462 !error Make aborted. |
463 !endif | |
464 | |
7 | 465 # Convert processor ID to MVC-compatible number |
6797 | 466 !if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") && ("$(MSVCVER)" != "11.0") && ("$(MSVCVER)" != "12.0") && ("$(MSVCVER)" != "14.0") |
7 | 467 !if "$(CPUNR)" == "i386" |
468 CPUARG = /G3 | |
469 !elseif "$(CPUNR)" == "i486" | |
470 CPUARG = /G4 | |
471 !elseif "$(CPUNR)" == "i586" | |
472 CPUARG = /G5 | |
473 !elseif "$(CPUNR)" == "i686" | |
474 CPUARG = /G6 | |
84 | 475 !elseif "$(CPUNR)" == "pentium4" |
47 | 476 CPUARG = /G7 /arch:SSE2 |
7 | 477 !else |
478 CPUARG = | |
479 !endif | |
1419 | 480 !else |
2867 | 481 # VC8/9/10 only allows specifying SSE architecture but only for 32bit |
482 !if "$(ASSEMBLY_ARCHITECTURE)" == "x86" && "$(CPUNR)" == "pentium4" | |
1419 | 483 CPUARG = /arch:SSE2 |
484 !endif | |
485 !endif | |
486 | |
487 LIBC = | |
488 DEBUGINFO = /Zi | |
7 | 489 |
6797 | 490 # Don't use /nodefaultlib on MSVC 14 |
491 !if "$(MSVCVER)" == "14.0" | |
492 NODEFAULTLIB = | |
493 !else | |
494 NODEFAULTLIB = /nodefaultlib | |
495 !endif | |
496 | |
7 | 497 !ifdef NODEBUG |
498 VIM = vim | |
499 !if "$(OPTIMIZE)" == "SPACE" | |
500 OPTFLAG = /O1 | |
501 !elseif "$(OPTIMIZE)" == "SPEED" | |
502 OPTFLAG = /O2 | |
503 !else # MAXSPEED | |
504 OPTFLAG = /Ox | |
505 !endif | |
2242
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
506 |
5456 | 507 !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0") |
1419 | 508 # Use link time code generation if not worried about size |
509 !if "$(OPTIMIZE)" != "SPACE" | |
510 OPTFLAG = $(OPTFLAG) /GL | |
511 !endif | |
512 !endif | |
2242
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
513 |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
514 # (/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
|
515 !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
|
516 CFLAGS=$(CFLAGS) $(WP64CHECK) |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
517 !endif |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
518 |
4446 | 519 # Static code analysis generally available starting with VS2012 |
5462 | 520 !if ("$(ANALYZE)" == "yes") && (("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0")) |
4446 | 521 CFLAGS=$(CFLAGS) /analyze |
522 !endif | |
523 | |
47 | 524 CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG) |
7 | 525 RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG |
526 ! ifdef USE_MSVCRT | |
1419 | 527 CFLAGS = $(CFLAGS) /MD |
7 | 528 LIBC = msvcrt.lib |
714 | 529 ! else |
7 | 530 LIBC = libcmt.lib |
1569 | 531 CFLAGS = $(CFLAGS) /Zl /MT |
7 | 532 ! endif |
533 !else # DEBUG | |
534 VIM = vimd | |
1569 | 535 ! if ("$(CPU)" == "i386") || ("$(CPU)" == "ix86") |
1419 | 536 DEBUGINFO = /ZI |
537 ! endif | |
268 | 538 CFLAGS = $(CFLAGS) -D_DEBUG -DDEBUG /Od |
7 | 539 RCFLAGS = $(rcflags) $(rcvars) -D_DEBUG -DDEBUG |
540 # The /fixed:no is needed for Quantify. Assume not 4.? as unsupported in VC4.0. | |
1419 | 541 ! if "$(MSVCVER)" == "4.0" |
7 | 542 LIBC = |
543 ! else | |
544 LIBC = /fixed:no | |
545 ! endif | |
426 | 546 ! ifdef USE_MSVCRT |
1419 | 547 CFLAGS = $(CFLAGS) /MDd |
7 | 548 LIBC = $(LIBC) msvcrtd.lib |
714 | 549 ! else |
426 | 550 LIBC = $(LIBC) libcmtd.lib |
1569 | 551 CFLAGS = $(CFLAGS) /Zl /MTd |
7 | 552 ! endif |
553 !endif # DEBUG | |
554 | |
555 INCL = vim.h os_win32.h ascii.h feature.h globals.h keymap.h macros.h \ | |
556 proto.h option.h structs.h term.h $(SNIFF_INCL) $(CSCOPE_INCL) \ | |
557 $(NBDEBUG_INCL) | |
558 | |
559 OBJ = \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
560 $(OUTDIR)\blowfish.obj \ |
7 | 561 $(OUTDIR)\buffer.obj \ |
562 $(OUTDIR)\charset.obj \ | |
6126 | 563 $(OUTDIR)\crypt.obj \ |
564 $(OUTDIR)\crypt_zip.obj \ | |
7 | 565 $(OUTDIR)\diff.obj \ |
566 $(OUTDIR)\digraph.obj \ | |
567 $(OUTDIR)\edit.obj \ | |
568 $(OUTDIR)\eval.obj \ | |
569 $(OUTDIR)\ex_cmds.obj \ | |
570 $(OUTDIR)\ex_cmds2.obj \ | |
571 $(OUTDIR)\ex_docmd.obj \ | |
572 $(OUTDIR)\ex_eval.obj \ | |
573 $(OUTDIR)\ex_getln.obj \ | |
574 $(OUTDIR)\fileio.obj \ | |
575 $(OUTDIR)\fold.obj \ | |
576 $(OUTDIR)\getchar.obj \ | |
440 | 577 $(OUTDIR)\hardcopy.obj \ |
799 | 578 $(OUTDIR)\hashtab.obj \ |
7 | 579 $(OUTDIR)\main.obj \ |
580 $(OUTDIR)\mark.obj \ | |
581 $(OUTDIR)\mbyte.obj \ | |
582 $(OUTDIR)\memfile.obj \ | |
583 $(OUTDIR)\memline.obj \ | |
584 $(OUTDIR)\menu.obj \ | |
585 $(OUTDIR)\message.obj \ | |
586 $(OUTDIR)\misc1.obj \ | |
587 $(OUTDIR)\misc2.obj \ | |
588 $(OUTDIR)\move.obj \ | |
589 $(OUTDIR)\normal.obj \ | |
590 $(OUTDIR)\ops.obj \ | |
591 $(OUTDIR)\option.obj \ | |
592 $(OUTDIR)\os_mswin.obj \ | |
4168 | 593 $(OUTDIR)\winclip.obj \ |
7 | 594 $(OUTDIR)\os_win32.obj \ |
595 $(OUTDIR)\pathdef.obj \ | |
799 | 596 $(OUTDIR)\popupmnu.obj \ |
7 | 597 $(OUTDIR)\quickfix.obj \ |
598 $(OUTDIR)\regexp.obj \ | |
599 $(OUTDIR)\screen.obj \ | |
600 $(OUTDIR)\search.obj \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
601 $(OUTDIR)\sha256.obj \ |
220 | 602 $(OUTDIR)\spell.obj \ |
7 | 603 $(OUTDIR)\syntax.obj \ |
604 $(OUTDIR)\tag.obj \ | |
605 $(OUTDIR)\term.obj \ | |
606 $(OUTDIR)\ui.obj \ | |
607 $(OUTDIR)\undo.obj \ | |
608 $(OUTDIR)\window.obj \ | |
609 $(OUTDIR)\vim.res | |
610 | |
611 !if "$(OLE)" == "yes" | |
612 CFLAGS = $(CFLAGS) -DFEAT_OLE | |
613 RCFLAGS = $(RCFLAGS) -DFEAT_OLE | |
614 OLE_OBJ = $(OUTDIR)\if_ole.obj | |
615 OLE_IDL = if_ole.idl | |
616 OLE_LIB = oleaut32.lib | |
617 !endif | |
618 | |
619 !if "$(IME)" == "yes" | |
620 CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME | |
621 !ifndef DYNAMIC_IME | |
622 DYNAMIC_IME = yes | |
623 !endif | |
624 !if "$(DYNAMIC_IME)" == "yes" | |
625 CFLAGS = $(CFLAGS) -DDYNAMIC_IME | |
626 !else | |
627 IME_LIB = imm32.lib | |
628 !endif | |
629 !endif | |
630 | |
631 !if "$(GIME)" == "yes" | |
632 CFLAGS = $(CFLAGS) -DGLOBAL_IME | |
633 OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj | |
634 MBYTE = yes | |
635 !endif | |
636 | |
637 !if "$(MBYTE)" == "yes" | |
638 CFLAGS = $(CFLAGS) -DFEAT_MBYTE | |
639 !endif | |
640 | |
641 !if "$(GUI)" == "yes" | |
642 SUBSYSTEM = windows | |
643 CFLAGS = $(CFLAGS) -DFEAT_GUI_W32 | |
644 RCFLAGS = $(RCFLAGS) -DFEAT_GUI_W32 | |
645 VIM = g$(VIM) | |
646 GUI_INCL = \ | |
647 gui.h \ | |
648 regexp.h \ | |
649 ascii.h \ | |
650 ex_cmds.h \ | |
651 farsi.h \ | |
652 feature.h \ | |
653 globals.h \ | |
184 | 654 gui_beval.h \ |
7 | 655 keymap.h \ |
656 macros.h \ | |
657 option.h \ | |
658 os_dos.h \ | |
659 os_win32.h | |
660 GUI_OBJ = \ | |
661 $(OUTDIR)\gui.obj \ | |
184 | 662 $(OUTDIR)\gui_beval.obj \ |
7 | 663 $(OUTDIR)\gui_w32.obj \ |
664 $(OUTDIR)\os_w32exe.obj | |
665 GUI_LIB = \ | |
1569 | 666 gdi32.lib version.lib $(IME_LIB) \ |
7 | 667 winspool.lib comctl32.lib advapi32.lib shell32.lib \ |
6797 | 668 /machine:$(CPU) |
7 | 669 !else |
670 SUBSYSTEM = console | |
671 !endif | |
672 | |
6149 | 673 !if "$(SUBSYSTEM_VER)" != "" |
674 SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER) | |
675 !endif | |
676 | |
6110 | 677 !if "$(GUI)" == "yes" && "$(DIRECTX)" == "yes" |
678 CFLAGS = $(CFLAGS) $(DIRECTX_DEFS) | |
679 GUI_INCL = $(GUI_INCL) $(DIRECTX_INCL) | |
680 GUI_OBJ = $(GUI_OBJ) $(DIRECTX_OBJ) | |
681 !endif | |
682 | |
7 | 683 # iconv.dll library (dynamically loaded) |
684 !ifndef ICONV | |
685 ICONV = yes | |
686 !endif | |
687 !if "$(ICONV)" == "yes" | |
688 CFLAGS = $(CFLAGS) -DDYNAMIC_ICONV | |
689 !endif | |
690 | |
691 # libintl.dll library | |
692 !ifndef GETTEXT | |
693 GETTEXT = yes | |
694 !endif | |
695 !if "$(GETTEXT)" == "yes" | |
696 CFLAGS = $(CFLAGS) -DDYNAMIC_GETTEXT | |
697 !endif | |
698 | |
699 # TCL interface | |
700 !ifdef TCL | |
701 !ifndef TCL_VER | |
702 TCL_VER = 83 | |
703 TCL_VER_LONG = 8.3 | |
704 !endif | |
705 !message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)" | |
706 !if "$(DYNAMIC_TCL)" == "yes" | |
707 !message Tcl DLL will be loaded dynamically | |
708 TCL_DLL = tcl$(TCL_VER).dll | |
416 | 709 CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \ |
710 -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\" | |
7 | 711 TCL_OBJ = $(OUTDIR)\if_tcl.obj |
712 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)" | |
3369 | 713 TCL_LIB = "$(TCL)\lib\tclstub$(TCL_VER).lib" |
7 | 714 !else |
715 CFLAGS = $(CFLAGS) -DFEAT_TCL | |
716 TCL_OBJ = $(OUTDIR)\if_tcl.obj | |
717 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)" | |
718 TCL_LIB = $(TCL)\lib\tcl$(TCL_VER)vc.lib | |
719 !endif | |
720 !endif | |
721 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
722 # Lua interface |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
723 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
724 !ifndef LUA_VER |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
725 LUA_VER = 51 |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
726 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
727 !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
|
728 !if "$(DYNAMIC_LUA)" == "yes" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
729 !message Lua DLL will be loaded dynamically |
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 CFLAGS = $(CFLAGS) -DFEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
732 LUA_OBJ = $(OUTDIR)\if_lua.obj |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
733 LUA_INC = /I "$(LUA)\include" /I "$(LUA)" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
734 !if "$(DYNAMIC_LUA)" == "yes" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
735 CFLAGS = $(CFLAGS) -DDYNAMIC_LUA \ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
736 -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
737 LUA_LIB = /nodefaultlib:lua$(LUA_VER).lib |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
738 !else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
739 LUA_LIB = "$(LUA)\lib\lua$(LUA_VER).lib" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
740 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
741 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
742 |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
743 !ifdef PYTHON |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
744 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
745 DYNAMIC_PYTHON=yes |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
746 DYNAMIC_PYTHON3=yes |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
747 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
748 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
749 |
7 | 750 # PYTHON interface |
751 !ifdef PYTHON | |
752 !ifndef PYTHON_VER | |
753 PYTHON_VER = 22 | |
754 !endif | |
755 !message Python requested (version $(PYTHON_VER)) - root dir is "$(PYTHON)" | |
756 !if "$(DYNAMIC_PYTHON)" == "yes" | |
757 !message Python DLL will be loaded dynamically | |
758 !endif | |
759 CFLAGS = $(CFLAGS) -DFEAT_PYTHON | |
760 PYTHON_OBJ = $(OUTDIR)\if_python.obj | |
761 PYTHON_INC = /I "$(PYTHON)\Include" /I "$(PYTHON)\PC" | |
762 !if "$(DYNAMIC_PYTHON)" == "yes" | |
416 | 763 CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON \ |
764 -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\" | |
7 | 765 PYTHON_LIB = /nodefaultlib:python$(PYTHON_VER).lib |
766 !else | |
767 PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib | |
768 !endif | |
769 !endif | |
770 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
771 # PYTHON3 interface |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
772 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
773 !ifndef PYTHON3_VER |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
774 PYTHON3_VER = 31 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
775 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
776 !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
|
777 !if "$(DYNAMIC_PYTHON3)" == "yes" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
778 !message Python3 DLL will be loaded dynamically |
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 CFLAGS = $(CFLAGS) -DFEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
781 PYTHON3_OBJ = $(OUTDIR)\if_python3.obj |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
782 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
|
783 !if "$(DYNAMIC_PYTHON3)" == "yes" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
784 CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON3 \ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
785 -DDYNAMIC_PYTHON3_DLL=\"python$(PYTHON3_VER).dll\" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
786 PYTHON3_LIB = /nodefaultlib:python$(PYTHON3_VER).lib |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
787 !else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
788 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
|
789 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
790 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
791 |
14 | 792 # MzScheme interface |
793 !ifdef MZSCHEME | |
794 !message MzScheme requested - root dir is "$(MZSCHEME)" | |
795 !ifndef MZSCHEME_VER | |
796 MZSCHEME_VER = 205_000 | |
797 !endif | |
798 CFLAGS = $(CFLAGS) -DFEAT_MZSCHEME -I $(MZSCHEME)\include | |
2628 | 799 !if EXIST("$(MZSCHEME)\collects\scheme\base.ss") \ |
6905 | 800 || EXIST("$(MZSCHEME)\collects\scheme\base.rkt") \ |
801 || EXIST("$(MZSCHEME)\collects\racket\base.rkt") | |
2628 | 802 # for MzScheme >= 4 we need to include byte code for basic Scheme stuff |
1894 | 803 MZSCHEME_EXTRA_DEP = mzscheme_base.c |
804 CFLAGS = $(CFLAGS) -DINCLUDE_MZSCHEME_BASE | |
805 !endif | |
2628 | 806 !if EXIST("$(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib") |
807 MZSCHEME_MAIN_LIB=mzsch | |
808 !else | |
809 MZSCHEME_MAIN_LIB=racket | |
810 !endif | |
811 !if EXIST("$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib") \ | |
1894 | 812 && !EXIST("$(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib") |
813 !message Building with Precise GC | |
814 MZSCHEME_PRECISE_GC = yes | |
815 CFLAGS = $(CFLAGS) -DMZ_PRECISE_GC | |
816 !endif | |
127 | 817 !if "$(DYNAMIC_MZSCHEME)" == "yes" |
1894 | 818 !if "$(MZSCHEME_PRECISE_GC)" == "yes" |
819 !error MzScheme with Precise GC cannot be loaded dynamically | |
820 !endif | |
127 | 821 !message MzScheme DLLs will be loaded dynamically |
416 | 822 CFLAGS = $(CFLAGS) -DDYNAMIC_MZSCHEME \ |
2628 | 823 -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" \ |
416 | 824 -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\" |
127 | 825 !else |
1894 | 826 !if "$(MZSCHEME_DEBUG)" == "yes" |
827 CFLAGS = $(CFLAGS) -DMZSCHEME_FORCE_GC | |
828 !endif | |
829 !if "$(MZSCHEME_PRECISE_GC)" == "yes" | |
830 # Precise GC does not use separate dll | |
2628 | 831 MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib |
1894 | 832 !else |
416 | 833 MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib \ |
2628 | 834 $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib |
127 | 835 !endif |
1894 | 836 !endif |
14 | 837 MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj |
3348 | 838 # increase stack size |
839 MZSCHEME_LIB = $(MZSCHEME_LIB) /STACK:8388608 | |
14 | 840 !endif |
841 | |
7 | 842 # Perl interface |
843 !ifdef PERL | |
844 !ifndef PERL_VER | |
845 PERL_VER = 56 | |
846 !endif | |
847 !message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)" | |
848 !if "$(DYNAMIC_PERL)" == "yes" | |
849 !if $(PERL_VER) >= 56 | |
850 !message Perl DLL will be loaded dynamically | |
851 !else | |
852 !message Dynamic loading is not supported for Perl versions earlier than 5.6.0 | |
853 !message Reverting to static loading... | |
854 !undef DYNAMIC_PERL | |
855 !endif | |
856 !endif | |
857 | |
858 # Is Perl installed in architecture-specific directories? | |
859 !if exist($(PERL)\Bin\MSWin32-x86) | |
860 PERL_ARCH = \MSWin32-x86 | |
861 !endif | |
862 | |
863 PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core | |
864 | |
865 # Version-dependent stuff | |
866 !if $(PERL_VER) == 55 | |
867 PERL_LIB = $(PERL_INCDIR)\perl.lib | |
868 !else | |
869 PERL_DLL = perl$(PERL_VER).dll | |
5560 | 870 !if exist($(PERL_INCDIR)\perl$(PERL_VER).lib) |
7 | 871 PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib |
5560 | 872 !else |
873 # For ActivePerl 5.18 and later | |
874 PERL_LIB = $(PERL_INCDIR)\libperl$(PERL_VER).a | |
875 !endif | |
7 | 876 !endif |
877 | |
6872 | 878 CFLAGS = $(CFLAGS) -DFEAT_PERL -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS |
7 | 879 |
880 # Do we want to load Perl dynamically? | |
881 !if "$(DYNAMIC_PERL)" == "yes" | |
882 CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\" | |
883 !undef PERL_LIB | |
884 !endif | |
885 | |
886 PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl | |
887 PERL_INC = /I $(PERL_INCDIR) | |
888 PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj | |
889 XSUBPP = $(PERL)\lib\ExtUtils\xsubpp | |
3085 | 890 !if exist($(XSUBPP)) |
3064 | 891 XSUBPP = $(PERL_EXE) $(XSUBPP) |
892 !else | |
893 XSUBPP = xsubpp | |
894 !endif | |
7 | 895 XSUBPP_TYPEMAP = $(PERL)\lib\ExtUtils\typemap |
896 | |
897 !endif | |
898 | |
899 # | |
900 # Support Ruby interface | |
901 # | |
902 !ifdef RUBY | |
903 # Set default value | |
904 !ifndef RUBY_VER | |
905 RUBY_VER = 18 | |
906 !endif | |
907 !ifndef RUBY_VER_LONG | |
908 RUBY_VER_LONG = 1.8 | |
909 !endif | |
3722 | 910 !ifndef RUBY_API_VER |
911 RUBY_API_VER = $(RUBY_VER_LONG:.=) | |
912 !endif | |
7 | 913 |
914 !if $(RUBY_VER) >= 18 | |
915 !ifndef RUBY_PLATFORM | |
916 RUBY_PLATFORM = i386-mswin32 | |
917 !endif | |
918 !ifndef RUBY_INSTALL_NAME | |
3722 | 919 RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_API_VER) |
7 | 920 !endif |
921 !else | |
922 !ifndef RUBY_PLATFORM | |
923 RUBY_PLATFORM = i586-mswin32 | |
924 !endif | |
925 !ifndef RUBY_INSTALL_NAME | |
3722 | 926 RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER) |
7 | 927 !endif |
928 !endif # $(RUBY_VER) >= 18 | |
929 | |
930 !message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)" | |
931 CFLAGS = $(CFLAGS) -DFEAT_RUBY | |
932 RUBY_OBJ = $(OUTDIR)\if_ruby.obj | |
3722 | 933 !if $(RUBY_VER) >= 19 |
934 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
|
935 !else |
7 | 936 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
|
937 !endif |
7 | 938 RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib |
939 # Do we want to load Ruby dynamically? | |
940 !if "$(DYNAMIC_RUBY)" == "yes" | |
941 !message Ruby DLL will be loaded dynamically | |
416 | 942 CFLAGS = $(CFLAGS) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_VER=$(RUBY_VER) \ |
943 -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\" | |
7 | 944 !undef RUBY_LIB |
945 !endif | |
946 !endif # RUBY | |
947 | |
948 # | |
949 # Support PostScript printing | |
950 # | |
951 !if "$(POSTSCRIPT)" == "yes" | |
952 CFLAGS = $(CFLAGS) -DMSWINPS | |
953 !endif # POSTSCRIPT | |
954 | |
955 # | |
956 # FEATURES: TINY, SMALL, NORMAL, BIG or HUGE | |
957 # | |
958 !if "$(FEATURES)"=="" | |
959 FEATURES = BIG | |
960 !endif | |
961 CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES) | |
962 | |
963 # | |
268 | 964 # Always generate the .pdb file, so that we get debug symbols that can be used |
965 # on a crash (doesn't add overhead to the executable). | |
1419 | 966 # Generate edit-and-continue debug info when no optimization - allows to |
967 # debug more conveniently (able to look at variables which are in registers) | |
268 | 968 # |
1419 | 969 CFLAGS = $(CFLAGS) /Fd$(OUTDIR)/ $(DEBUGINFO) |
970 LINK_PDB = /PDB:$(VIM).pdb -debug | |
268 | 971 |
972 # | |
973 # End extra feature include | |
7 | 974 # |
975 !message | |
976 | |
1419 | 977 conflags = /nologo /subsystem:$(SUBSYSTEM) |
7 | 978 |
659 | 979 PATHDEF_SRC = $(OUTDIR)\pathdef.c |
980 | |
7 | 981 !IF "$(MAP)" == "yes" |
982 # "/map" is for debugging | |
983 conflags = $(conflags) /map | |
984 !ELSEIF "$(MAP)" == "lines" | |
985 # "/mapinfo:lines" is for debugging, only works for VC6 and later | |
986 conflags = $(conflags) /map /mapinfo:lines | |
987 !ENDIF | |
988 | |
1419 | 989 LINKARGS1 = $(linkdebug) $(conflags) |
6797 | 990 LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(NODEFAULTLIB) $(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
|
991 $(LUA_LIB) $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(RUBY_LIB) \ |
416 | 992 $(TCL_LIB) $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB) |
7 | 993 |
1419 | 994 # Report link time code generation progress if used. |
995 !ifdef NODEBUG | |
5456 | 996 !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0") |
1419 | 997 !if "$(OPTIMIZE)" != "SPACE" |
998 LINKARGS1 = $(LINKARGS1) /LTCG:STATUS | |
999 !endif | |
1000 !endif | |
1001 !endif | |
1002 | |
416 | 1003 all: $(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe \ |
1004 GvimExt/gvimext.dll | |
7 | 1005 |
416 | 1006 $(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
|
1007 $(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
|
1008 $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) \ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1009 version.c version.h |
416 | 1010 $(CC) $(CFLAGS) version.c |
389 | 1011 $(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
|
1012 $(LUA_OBJ) $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) \ |
416 | 1013 $(TCL_OBJ) $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) \ |
1014 $(XPM_OBJ) $(OUTDIR)\version.obj $(LINKARGS2) | |
5925 | 1015 if exist $(VIM).exe.manifest mt.exe -nologo -manifest $(VIM).exe.manifest -updateresource:$(VIM).exe;1 |
7 | 1016 |
388 | 1017 $(VIM): $(VIM).exe |
7 | 1018 |
1019 $(OUTDIR): | |
39 | 1020 if not exist $(OUTDIR)/nul mkdir $(OUTDIR) |
7 | 1021 |
1022 install.exe: dosinst.c | |
416 | 1023 $(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
|
1024 user32.lib ole32.lib advapi32.lib uuid.lib |
7 | 1025 - if exist install.exe del install.exe |
1026 ren dosinst.exe install.exe | |
1027 | |
1028 uninstal.exe: uninstal.c | |
1029 $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib | |
1030 | |
1031 vimrun.exe: vimrun.c | |
1032 $(CC) /nologo -DNDEBUG vimrun.c | |
1033 | |
1034 xxd/xxd.exe: xxd/xxd.c | |
1035 cd xxd | |
1036 $(MAKE) /NOLOGO -f Make_mvc.mak | |
1037 cd .. | |
1038 | |
1039 GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h | |
1040 cd GvimExt | |
1041 $(MAKE) /NOLOGO -f Makefile $(MAKEFLAGS_GVIMEXT) | |
1042 cd .. | |
1043 | |
1044 | |
1045 tags: notags | |
1046 $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro | |
1047 | |
1048 notags: | |
1049 - if exist tags del tags | |
1050 | |
1051 clean: | |
444 | 1052 - if exist $(OUTDIR)/nul $(DEL_TREE) $(OUTDIR) |
7 | 1053 - if exist *.obj del *.obj |
1054 - if exist $(VIM).exe del $(VIM).exe | |
1055 - if exist $(VIM).ilk del $(VIM).ilk | |
1056 - if exist $(VIM).pdb del $(VIM).pdb | |
1057 - if exist $(VIM).map del $(VIM).map | |
1058 - if exist $(VIM).ncb del $(VIM).ncb | |
1059 - if exist vimrun.exe del vimrun.exe | |
1060 - if exist install.exe del install.exe | |
1061 - if exist uninstal.exe del uninstal.exe | |
1062 - if exist if_perl.c del if_perl.c | |
1063 - if exist dimm.h del dimm.h | |
1064 - if exist dimm_i.c del dimm_i.c | |
1065 - if exist dimm.tlb del dimm.tlb | |
1066 - if exist dosinst.exe del dosinst.exe | |
1951 | 1067 - if exist mzscheme_base.c del mzscheme_base.c |
7 | 1068 cd xxd |
1069 $(MAKE) /NOLOGO -f Make_mvc.mak clean | |
1070 cd .. | |
1071 cd GvimExt | |
1072 $(MAKE) /NOLOGO -f Makefile clean | |
1073 cd .. | |
1074 cd GvimExt | |
1075 $(MAKE) /NOLOGO -f Makefile clean | |
1076 cd .. | |
1077 - if exist testdir\*.out del testdir\*.out | |
1078 | |
1079 test: | |
1080 cd testdir | |
1081 $(MAKE) /NOLOGO -f Make_dos.mak win32 | |
1082 cd .. | |
1083 | |
47 | 1084 testclean: |
1085 cd testdir | |
1086 $(MAKE) /NOLOGO -f Make_dos.mak clean | |
1087 cd .. | |
1088 | |
7 | 1089 ########################################################################### |
1090 | |
1091 # Create a default rule for transforming .c files to .obj files in $(OUTDIR) | |
1092 # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later) | |
1419 | 1093 !IF "$(MSVCVER)" == "4.0" |
7 | 1094 .c{$(OUTDIR)/}.obj: |
1095 !ELSE | |
1096 .c{$(OUTDIR)/}.obj:: | |
1097 !ENDIF | |
416 | 1098 $(CC) $(CFLAGS) $< |
7 | 1099 |
1100 # Create a default rule for transforming .cpp files to .obj files in $(OUTDIR) | |
1101 # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later) | |
1419 | 1102 !IF "$(MSVCVER)" == "4.0" |
7 | 1103 .cpp{$(OUTDIR)/}.obj: |
1104 !ELSE | |
1105 .cpp{$(OUTDIR)/}.obj:: | |
1106 !ENDIF | |
416 | 1107 $(CC) $(CFLAGS) $< |
7 | 1108 |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
1109 $(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
|
1110 |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1111 $(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
|
1112 |
7 | 1113 $(OUTDIR)/charset.obj: $(OUTDIR) charset.c $(INCL) |
1114 | |
6126 | 1115 $(OUTDIR)/crypt.obj: $(OUTDIR) crypt.c $(INCL) |
1116 | |
1117 $(OUTDIR)/crypt_zip.obj: $(OUTDIR) crypt_zip.c $(INCL) | |
1118 | |
7 | 1119 $(OUTDIR)/diff.obj: $(OUTDIR) diff.c $(INCL) |
1120 | |
1121 $(OUTDIR)/digraph.obj: $(OUTDIR) digraph.c $(INCL) | |
1122 | |
1123 $(OUTDIR)/edit.obj: $(OUTDIR) edit.c $(INCL) | |
1124 | |
1125 $(OUTDIR)/eval.obj: $(OUTDIR) eval.c $(INCL) | |
1126 | |
1127 $(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL) | |
1128 | |
1129 $(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL) | |
1130 | |
1131 $(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmds.h | |
1132 | |
1133 $(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) ex_cmds.h | |
1134 | |
1135 $(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL) | |
1136 | |
1137 $(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL) | |
1138 | |
1139 $(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL) | |
1140 | |
1141 $(OUTDIR)/getchar.obj: $(OUTDIR) getchar.c $(INCL) | |
1142 | |
440 | 1143 $(OUTDIR)/hardcopy.obj: $(OUTDIR) hardcopy.c $(INCL) |
1144 | |
799 | 1145 $(OUTDIR)/hashtab.obj: $(OUTDIR) hashtab.c $(INCL) |
119 | 1146 |
7 | 1147 $(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL) |
1148 | |
184 | 1149 $(OUTDIR)/gui_beval.obj: $(OUTDIR) gui_beval.c $(INCL) $(GUI_INCL) |
1150 | |
7 | 1151 $(OUTDIR)/gui_w32.obj: $(OUTDIR) gui_w32.c gui_w48.c $(INCL) $(GUI_INCL) |
1152 | |
6110 | 1153 $(OUTDIR)/gui_dwrite.obj: $(OUTDIR) gui_dwrite.cpp $(INCL) $(GUI_INCL) |
1154 | |
7 | 1155 $(OUTDIR)/if_cscope.obj: $(OUTDIR) if_cscope.c $(INCL) |
1156 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1157 $(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1158 $(CC) $(CFLAGS) $(LUA_INC) if_lua.c |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1159 |
7 | 1160 if_perl.c : if_perl.xs typemap |
3064 | 1161 $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \ |
416 | 1162 -typemap typemap if_perl.xs > if_perl.c |
7 | 1163 |
1164 $(OUTDIR)/if_perl.obj: $(OUTDIR) if_perl.c $(INCL) | |
416 | 1165 $(CC) $(CFLAGS) $(PERL_INC) if_perl.c |
7 | 1166 |
1167 $(OUTDIR)/if_perlsfio.obj: $(OUTDIR) if_perlsfio.c $(INCL) | |
416 | 1168 $(CC) $(CFLAGS) $(PERL_INC) if_perlsfio.c |
7 | 1169 |
4074 | 1170 $(OUTDIR)/if_mzsch.obj: $(OUTDIR) if_mzsch.c if_mzsch.h $(INCL) $(MZSCHEME_EXTRA_DEP) |
426 | 1171 $(CC) $(CFLAGS) if_mzsch.c \ |
416 | 1172 -DMZSCHEME_COLLECTS=\"$(MZSCHEME:\=\\)\\collects\" |
1894 | 1173 mzscheme_base.c: |
6905 | 1174 !IF "$(MZSCHEME_MAIN_LIB)" == "racket" |
1175 $(MZSCHEME)\raco ctool --c-mods mzscheme_base.c ++lib scheme/base | |
1176 !ELSE | |
1894 | 1177 $(MZSCHEME)\mzc --c-mods mzscheme_base.c ++lib scheme/base |
6905 | 1178 !ENDIF |
14 | 1179 |
4724
450e13fe1621
updated for version 7.3.1109
Bram Moolenaar <bram@vim.org>
parents:
4446
diff
changeset
|
1180 $(OUTDIR)/if_python.obj: $(OUTDIR) if_python.c if_py_both.h $(INCL) |
416 | 1181 $(CC) $(CFLAGS) $(PYTHON_INC) if_python.c |
7 | 1182 |
4724
450e13fe1621
updated for version 7.3.1109
Bram Moolenaar <bram@vim.org>
parents:
4446
diff
changeset
|
1183 $(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
|
1184 $(CC) $(CFLAGS) $(PYTHON3_INC) if_python3.c |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1185 |
7 | 1186 $(OUTDIR)/if_ole.obj: $(OUTDIR) if_ole.cpp $(INCL) if_ole.h |
1187 | |
1188 $(OUTDIR)/if_ruby.obj: $(OUTDIR) if_ruby.c $(INCL) | |
416 | 1189 $(CC) $(CFLAGS) $(RUBY_INC) if_ruby.c |
7 | 1190 |
1191 $(OUTDIR)/if_sniff.obj: $(OUTDIR) if_sniff.c $(INCL) | |
416 | 1192 $(CC) $(CFLAGS) if_sniff.c |
7 | 1193 |
1194 $(OUTDIR)/if_tcl.obj: $(OUTDIR) if_tcl.c $(INCL) | |
416 | 1195 $(CC) $(CFLAGS) $(TCL_INC) if_tcl.c |
7 | 1196 |
1197 $(OUTDIR)/main.obj: $(OUTDIR) main.c $(INCL) | |
1198 | |
1199 $(OUTDIR)/mark.obj: $(OUTDIR) mark.c $(INCL) | |
1200 | |
1201 $(OUTDIR)/memfile.obj: $(OUTDIR) memfile.c $(INCL) | |
1202 | |
1203 $(OUTDIR)/memline.obj: $(OUTDIR) memline.c $(INCL) | |
1204 | |
1205 $(OUTDIR)/menu.obj: $(OUTDIR) menu.c $(INCL) | |
1206 | |
1207 $(OUTDIR)/message.obj: $(OUTDIR) message.c $(INCL) | |
1208 | |
1209 $(OUTDIR)/misc1.obj: $(OUTDIR) misc1.c $(INCL) | |
1210 | |
1211 $(OUTDIR)/misc2.obj: $(OUTDIR) misc2.c $(INCL) | |
1212 | |
1213 $(OUTDIR)/move.obj: $(OUTDIR) move.c $(INCL) | |
1214 | |
1215 $(OUTDIR)/mbyte.obj: $(OUTDIR) mbyte.c $(INCL) | |
1216 | |
1217 $(OUTDIR)/netbeans.obj: $(OUTDIR) netbeans.c $(NBDEBUG_SRC) $(INCL) | |
1218 | |
1219 $(OUTDIR)/normal.obj: $(OUTDIR) normal.c $(INCL) | |
1220 | |
1221 $(OUTDIR)/option.obj: $(OUTDIR) option.c $(INCL) | |
1222 | |
1223 $(OUTDIR)/ops.obj: $(OUTDIR) ops.c $(INCL) | |
1224 | |
1225 $(OUTDIR)/os_mswin.obj: $(OUTDIR) os_mswin.c $(INCL) | |
1226 | |
4168 | 1227 $(OUTDIR)/winclip.obj: $(OUTDIR) winclip.c $(INCL) |
1228 | |
7 | 1229 $(OUTDIR)/os_win32.obj: $(OUTDIR) os_win32.c $(INCL) os_win32.h |
1230 | |
1231 $(OUTDIR)/os_w32exe.obj: $(OUTDIR) os_w32exe.c $(INCL) | |
1232 | |
659 | 1233 $(OUTDIR)/pathdef.obj: $(OUTDIR) $(PATHDEF_SRC) $(INCL) |
1234 $(CC) $(CFLAGS) $(PATHDEF_SRC) | |
7 | 1235 |
799 | 1236 $(OUTDIR)/popupmnu.obj: $(OUTDIR) popupmnu.c $(INCL) |
539 | 1237 |
7 | 1238 $(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL) |
1239 | |
4444 | 1240 $(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c regexp_nfa.c $(INCL) |
7 | 1241 |
1242 $(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL) | |
1243 | |
1244 $(OUTDIR)/search.obj: $(OUTDIR) search.c $(INCL) | |
1245 | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1246 $(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
|
1247 |
220 | 1248 $(OUTDIR)/spell.obj: $(OUTDIR) spell.c $(INCL) |
1249 | |
7 | 1250 $(OUTDIR)/syntax.obj: $(OUTDIR) syntax.c $(INCL) |
1251 | |
1252 $(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL) | |
1253 | |
1254 $(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL) | |
1255 | |
1256 $(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL) | |
1257 | |
1258 $(OUTDIR)/undo.obj: $(OUTDIR) undo.c $(INCL) | |
1259 | |
1260 $(OUTDIR)/window.obj: $(OUTDIR) window.c $(INCL) | |
1261 | |
1262 $(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c | |
416 | 1263 $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c |
7 | 1264 |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
1265 $(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
|
1266 tearoff.bmp vim.ico vim_error.ico \ |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
1267 vim_alert.ico vim_info.ico vim_quest.ico |
7 | 1268 $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc |
1269 | |
388 | 1270 iid_ole.c if_ole.h vim.tlb: if_ole.idl |
416 | 1271 midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \ |
1272 /header if_ole.h if_ole.idl | |
7 | 1273 |
1274 dimm.h dimm_i.c: dimm.idl | |
388 | 1275 midl /nologo /error none /proxy nul dimm.idl |
7 | 1276 |
1277 $(OUTDIR)/dimm_i.obj: $(OUTDIR) dimm_i.c $(INCL) | |
1278 | |
1279 $(OUTDIR)/glbl_ime.obj: $(OUTDIR) glbl_ime.cpp dimm.h $(INCL) | |
1280 | |
19 | 1281 # $CFLAGS may contain backslashes and double quotes, escape them both. |
1282 E0_CFLAGS = $(CFLAGS:\=\\) | |
1283 E_CFLAGS = $(E0_CFLAGS:"=\") | |
1072 | 1284 # ") stop the string |
2708 | 1285 # $LINKARGS2 may contain backslashes and double quotes, escape them both. |
1286 E0_LINKARGS2 = $(LINKARGS2:\=\\) | |
1287 E_LINKARGS2 = $(E0_LINKARGS2:"=\") | |
1288 # ") stop the string | |
19 | 1289 |
659 | 1290 $(PATHDEF_SRC): auto |
1291 @echo creating $(PATHDEF_SRC) | |
1292 @echo /* pathdef.c */ > $(PATHDEF_SRC) | |
1293 @echo #include "vim.h" >> $(PATHDEF_SRC) | |
1294 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; >> $(PATHDEF_SRC) | |
1295 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; >> $(PATHDEF_SRC) | |
1296 @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> $(PATHDEF_SRC) | |
2708 | 1297 @echo char_u *all_lflags = (char_u *)"$(link:\=\\) $(LINKARGS1:\=\\) $(E_LINKARGS2)"; >> $(PATHDEF_SRC) |
659 | 1298 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> $(PATHDEF_SRC) |
1299 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> $(PATHDEF_SRC) | |
7 | 1300 |
1301 auto: | |
1302 if not exist auto/nul mkdir auto | |
1303 | |
1304 # End Custom Build | |
1305 proto.h: \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
1306 proto/blowfish.pro \ |
7 | 1307 proto/buffer.pro \ |
1308 proto/charset.pro \ | |
6126 | 1309 proto/crypt.pro \ |
1310 proto/crypt_zip.pro \ | |
7 | 1311 proto/diff.pro \ |
1312 proto/digraph.pro \ | |
1313 proto/edit.pro \ | |
1314 proto/eval.pro \ | |
1315 proto/ex_cmds.pro \ | |
1316 proto/ex_cmds2.pro \ | |
1317 proto/ex_docmd.pro \ | |
1318 proto/ex_eval.pro \ | |
1319 proto/ex_getln.pro \ | |
1320 proto/fileio.pro \ | |
1321 proto/getchar.pro \ | |
440 | 1322 proto/hardcopy.pro \ |
799 | 1323 proto/hashtab.pro \ |
7 | 1324 proto/main.pro \ |
1325 proto/mark.pro \ | |
1326 proto/memfile.pro \ | |
1327 proto/memline.pro \ | |
1328 proto/menu.pro \ | |
1329 proto/message.pro \ | |
1330 proto/misc1.pro \ | |
1331 proto/misc2.pro \ | |
1332 proto/move.pro \ | |
1333 proto/mbyte.pro \ | |
1334 proto/normal.pro \ | |
1335 proto/ops.pro \ | |
1336 proto/option.pro \ | |
1337 proto/os_mswin.pro \ | |
4168 | 1338 proto/winclip.pro \ |
7 | 1339 proto/os_win32.pro \ |
799 | 1340 proto/popupmnu.pro \ |
7 | 1341 proto/quickfix.pro \ |
1342 proto/regexp.pro \ | |
1343 proto/screen.pro \ | |
1344 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
|
1345 proto/sha256.pro \ |
220 | 1346 proto/spell.pro \ |
7 | 1347 proto/syntax.pro \ |
1348 proto/tag.pro \ | |
1349 proto/term.pro \ | |
1350 proto/ui.pro \ | |
1351 proto/undo.pro \ | |
1352 proto/window.pro \ | |
1353 $(NETBEANS_PRO) | |
1354 | |
844 | 1355 .SUFFIXES: .cod .i |
843 | 1356 |
1357 # Generate foo.cod (mixed source and assembly listing) from foo.c via "nmake | |
1358 # foo.cod" | |
1359 .c.cod: | |
1360 $(CC) $(CFLAGS) /FAcs $< | |
1361 | |
1362 # Generate foo.i (preprocessor listing) from foo.c via "nmake foo.i" | |
1363 .c.i: | |
1364 $(CC) $(CFLAGS) /P /C $< | |
714 | 1365 |
1366 | |
7 | 1367 # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: |