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