Mercurial > vim
annotate src/Make_mvc.mak @ 9297:9c663cda189f v7.4.1931
commit https://github.com/vim/vim/commit/a641e1d4da3f9152c489318c06a93fcd1c746637
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jun 13 21:16:03 2016 +0200
patch 7.4.1931
Problem: Using both old and new style file mark lines from viminfo.
Solution: Skip the old style lines if the viminfo file was written with a
Vim version that supports the new style.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 13 Jun 2016 21:30:08 +0200 |
parents | 0378a3bdf0fe |
children | 11a83cdeedf9 |
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 # | |
7699
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
23 # Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is HUGE) |
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 # Cscope support: CSCOPE=yes | |
86 # | |
87 # Iconv library support (always dynamically loaded): | |
88 # ICONV=[yes or no] (default is yes) | |
89 # | |
90 # Intl library support (always dynamically loaded): | |
91 # GETTEXT=[yes or no] (default is yes) | |
92 # See http://sourceforge.net/projects/gettext/ | |
93 # | |
4446 | 94 # PostScript printing: POSTSCRIPT=yes (default is no) |
381 | 95 # |
4446 | 96 # Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes) |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
97 # Requires CHANNEL. |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
98 # |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
99 # Netbeans Debugging Support: NBDEBUG=[yes or no] (should be no, yes |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
100 # doesn't work) |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
101 # |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
102 # Inter process communication: CHANNEL=[yes or no] (default is yes if GUI |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
103 # is yes) |
381 | 104 # |
4446 | 105 # XPM Image Support: XPM=[path to XPM directory] |
106 # Default is "xpm", using the files included in the distribution. | |
107 # Use "no" to disable this feature. | |
381 | 108 # |
4446 | 109 # Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED) |
381 | 110 # |
4446 | 111 # Processor Version: CPUNR=[i386, i486, i586, i686, pentium4] (default is |
112 # i386) | |
381 | 113 # |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
114 # Version Support: WINVER=[0x0501, 0x0600] (default is 0x0501) |
381 | 115 # |
7 | 116 # Debug version: DEBUG=yes |
117 # Mapfile: MAP=[no, yes or lines] (default is yes) | |
118 # no: Don't write a mapfile. | |
119 # yes: Write a normal mapfile. | |
120 # lines: Write a mapfile with line numbers (only for VC6 and later) | |
381 | 121 # |
4446 | 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. |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
216 ! if "$(CPU)" == "I386" |
7 | 217 CPU = i386 |
835 | 218 ! endif |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
219 ! else # !CPU |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
220 CPU = i386 |
7591
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
221 ! if !defined(PLATFORM) && defined(TARGET_CPU) |
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
222 PLATFORM = $(TARGET_CPU) |
4447dc38bc22
commit https://github.com/vim/vim/commit/3d6d5cc3a417c04d9772596ea83f8e6b41321781
Christian Brabandt <cb@256bit.org>
parents:
7555
diff
changeset
|
223 ! endif |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
224 ! ifdef PLATFORM |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
225 ! if ("$(PLATFORM)" == "x64") || ("$(PLATFORM)" == "X64") |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
226 CPU = AMD64 |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
227 ! elseif ("$(PLATFORM)" != "x86") && ("$(PLATFORM)" != "X86") |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
228 ! error *** ERROR Unknown target platform "$(PLATFORM)". Make aborted. |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
229 ! endif |
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
230 ! endif # !PLATFORM |
7 | 231 ! endif |
232 !else # !PROCESSOR_ARCHITECTURE | |
233 # We're on Windows 95 | |
234 CPU = i386 | |
235 !endif # !PROCESSOR_ARCHITECTURE | |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
236 ASSEMBLY_ARCHITECTURE=$(CPU) |
3790 | 237 OBJDIR = $(OBJDIR)$(CPU) |
7 | 238 |
239 # Build a retail version by default | |
240 | |
241 !if "$(DEBUG)" != "yes" | |
242 NODEBUG = 1 | |
243 !else | |
1419 | 244 !undef NODEBUG |
7 | 245 MAKEFLAGS_GVIMEXT = DEBUG=yes |
246 !endif | |
247 | |
248 | |
1419 | 249 # Get all sorts of useful, standard macros from the Platform SDK. |
7 | 250 |
3816 | 251 !ifdef SDK_INCLUDE_DIR |
252 !include $(SDK_INCLUDE_DIR)\Win32.mak | |
253 !else | |
714 | 254 !include <Win32.mak> |
3816 | 255 !endif |
256 | |
7 | 257 |
2243
03a5f2897db3
Fix completion of file names with '%' and '*'.
Bram Moolenaar <bram@vim.org>
parents:
2242
diff
changeset
|
258 # 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
|
259 WP64CHECK = /Wp64 |
7 | 260 |
261 #>>>>> path of the compiler and linker; name of include and lib directories | |
262 # PATH = c:\msvc20\bin;$(PATH) | |
263 # INCLUDE = c:\msvc20\include | |
264 # LIB = c:\msvc20\lib | |
265 | |
9193
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
266 !if "$(FEATURES)"=="" |
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
267 FEATURES = HUGE |
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
268 !endif |
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
269 |
7 | 270 !ifndef CTAGS |
271 CTAGS = ctags | |
272 !endif | |
273 | |
274 !ifndef CSCOPE | |
275 CSCOPE = yes | |
276 !endif | |
277 | |
278 !if "$(CSCOPE)" == "yes" | |
279 # CSCOPE - Include support for Cscope | |
280 CSCOPE_INCL = if_cscope.h | |
281 CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj | |
282 CSCOPE_DEFS = -DFEAT_CSCOPE | |
283 !endif | |
284 | |
285 !ifndef NETBEANS | |
286 NETBEANS = $(GUI) | |
287 !endif | |
288 | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
289 !ifndef CHANNEL |
9193
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
290 !if "$(FEATURES)"=="HUGE" |
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
291 CHANNEL = yes |
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
292 !else |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
293 CHANNEL = $(GUI) |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
294 !endif |
9193
0378a3bdf0fe
commit https://github.com/vim/vim/commit/76929af43134b4222b33648b6c53754a34f24524
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
295 !endif |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
296 |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
297 # Only allow NETBEANS and XPM for a GUI build and CHANNEL. |
12 | 298 !if "$(GUI)" == "yes" |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
299 !if "$(NETBEANS)" == "yes" && "$(CHANNEL)" == "yes" |
7 | 300 # NETBEANS - Include support for Netbeans integration |
301 NETBEANS_PRO = proto/netbeans.pro | |
184 | 302 NETBEANS_OBJ = $(OBJDIR)/netbeans.obj |
7 | 303 NETBEANS_DEFS = -DFEAT_NETBEANS_INTG |
12 | 304 |
305 !if "$(NBDEBUG)" == "yes" | |
7 | 306 NBDEBUG_DEFS = -DNBDEBUG |
307 NBDEBUG_INCL = nbdebug.h | |
308 NBDEBUG_SRC = nbdebug.c | |
309 !endif | |
416 | 310 NETBEANS_LIB = WSock32.lib |
7 | 311 !endif |
312 | |
6110 | 313 # DirectWrite(DirectX) |
314 !if "$(DIRECTX)" == "yes" | |
315 DIRECTX_DEFS = -DFEAT_DIRECTX -DDYNAMIC_DIRECTX | |
316 DIRECTX_INCL = gui_dwrite.h | |
317 DIRECTX_OBJ = $(OUTDIR)\gui_dwrite.obj | |
318 !endif | |
319 | |
3762 | 320 !ifndef XPM |
321 # XPM is not set, use the included xpm files, depending on the architecture. | |
3790 | 322 !if "$(CPU)" == "AMD64" |
3762 | 323 XPM = xpm\x64 |
3790 | 324 !elseif "$(CPU)" == "i386" |
325 XPM = xpm\x86 | |
3762 | 326 !else |
3790 | 327 XPM = no |
3762 | 328 !endif |
329 !endif | |
330 !if "$(XPM)" != "no" | |
7 | 331 # XPM - Include support for XPM signs |
3762 | 332 # See the xpm directory for more information. |
7 | 333 XPM_OBJ = $(OBJDIR)/xpm_w32.obj |
334 XPM_DEFS = -DFEAT_XPM_W32 | |
335 XPM_LIB = $(XPM)\lib\libXpm.lib | |
3762 | 336 XPM_INC = -I $(XPM)\include -I $(XPM)\..\include |
7 | 337 !endif |
12 | 338 !endif |
7 | 339 |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
340 !if "$(CHANNEL)" == "yes" |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
341 CHANNEL_PRO = proto/channel.pro |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
342 CHANNEL_OBJ = $(OBJDIR)/channel.obj |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
343 CHANNEL_DEFS = -DFEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
344 |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
345 NETBEANS_LIB = WSock32.lib |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
346 !endif |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
347 |
714 | 348 # Set which version of the CRT to use |
7 | 349 !if defined(USE_MSVCRT) |
1419 | 350 # CVARS = $(cvarsdll) |
714 | 351 # !elseif defined(MULTITHREADED) |
352 # CVARS = $(cvarsmt) | |
353 !else | |
354 # CVARS = $(cvars) | |
1419 | 355 # CVARS = $(cvarsmt) |
7 | 356 !endif |
357 | |
358 # need advapi32.lib for GetUserName() | |
359 # need shell32.lib for ExtractIcon() | |
360 # gdi32.lib and comdlg32.lib for printing support | |
361 # ole32.lib and uuid.lib are needed for FEAT_SHORTCUT | |
1569 | 362 CON_LIB = oldnames.lib kernel32.lib advapi32.lib shell32.lib gdi32.lib \ |
6797 | 363 comdlg32.lib ole32.lib uuid.lib /machine:$(CPU) |
714 | 364 !if "$(DELAYLOAD)" == "yes" |
7 | 365 CON_LIB = $(CON_LIB) /DELAYLOAD:comdlg32.dll /DELAYLOAD:ole32.dll DelayImp.lib |
366 !endif | |
367 | |
368 ### Set the default $(WINVER) to make it work with VC++7.0 (VS.NET) | |
369 !ifndef WINVER | |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8023
diff
changeset
|
370 WINVER = 0x0501 |
7 | 371 !endif |
372 | |
373 # If you have a fixed directory for $VIM or $VIMRUNTIME, other than the normal | |
374 # default, use these lines. | |
375 #VIMRCLOC = somewhere | |
376 #VIMRUNTIMEDIR = somewhere | |
377 | |
378 CFLAGS = -c /W3 /nologo $(CVARS) -I. -Iproto -DHAVE_PATHDEF -DWIN32 \ | |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
379 $(CSCOPE_DEFS) $(NETBEANS_DEFS) $(CHANNEL_DEFS) \ |
7 | 380 $(NBDEBUG_DEFS) $(XPM_DEFS) \ |
416 | 381 $(DEFINES) -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \ |
382 /Fo$(OUTDIR)/ | |
7 | 383 |
384 #>>>>> end of choices | |
385 ########################################################################### | |
386 | |
387 !ifdef OS | |
388 OS_TYPE = winnt | |
389 DEL_TREE = rmdir /s /q | |
390 !else | |
391 OS_TYPE = win95 | |
392 DEL_TREE = deltree /y | |
393 !endif | |
394 | |
395 INTDIR=$(OBJDIR) | |
396 OUTDIR=$(OBJDIR) | |
397 | |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
398 !if [echo MSVCVER=_MSC_VER> msvcver.c && $(CC) /EP msvcver.c > msvcver.~ 2> nul] |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
399 !message *** ERROR |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
400 !message Cannot run Visual C to determine its version. Make sure cl.exe is in your PATH. |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
401 !message This can usually be done by running "vcvarsall.bat", located in the bin directory where Visual Studio was installed. |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
402 !error Make aborted. |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
403 !else |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
404 !include msvcver.~ |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
405 !if [del msvcver.c msvcver.~] |
6797 | 406 !endif |
1419 | 407 !endif |
408 | |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
409 !if $(MSVCVER) < 1900 |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
410 MSVC_MAJOR = ($(MSVCVER) / 100 - 6) |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
411 MSVCRT_VER = ($(MSVCVER) / 10 - 60) |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
412 !else |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
413 MSVC_MAJOR = ($(MSVCVER) / 100 - 5) |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
414 MSVCRT_VER = ($(MSVCVER) / 10 - 50) |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
415 !endif |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
416 |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
417 # Calculate MSVCRT_VER |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
418 !if [(set /a MSVCRT_VER="$(MSVCRT_VER)" > nul) && set MSVCRT_VER > msvcrtver.~] == 0 |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
419 !include msvcrtver.~ |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
420 !if [del msvcrtver.~] |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
421 !endif |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
422 !endif |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
423 |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
424 # Base name of the msvcrXX.dll |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
425 !if $(MSVCRT_VER) <= 60 |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
426 MSVCRT_NAME = msvcrt |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
427 !else |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
428 MSVCRT_NAME = msvcr$(MSVCRT_VER) |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
429 !endif |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
430 |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
431 !if $(MSVC_MAJOR) == 6 |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
432 CPU = ix86 |
1419 | 433 !endif |
434 | |
7 | 435 # Convert processor ID to MVC-compatible number |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
436 !if $(MSVC_MAJOR) < 8 |
7 | 437 !if "$(CPUNR)" == "i386" |
438 CPUARG = /G3 | |
439 !elseif "$(CPUNR)" == "i486" | |
440 CPUARG = /G4 | |
441 !elseif "$(CPUNR)" == "i586" | |
442 CPUARG = /G5 | |
443 !elseif "$(CPUNR)" == "i686" | |
444 CPUARG = /G6 | |
84 | 445 !elseif "$(CPUNR)" == "pentium4" |
47 | 446 CPUARG = /G7 /arch:SSE2 |
7 | 447 !else |
448 CPUARG = | |
449 !endif | |
1419 | 450 !else |
2867 | 451 # VC8/9/10 only allows specifying SSE architecture but only for 32bit |
7324
a3b8a63c88ef
commit https://github.com/vim/vim/commit/6b90351786eb0915336b576cc930300bf5c9ac63
Christian Brabandt <cb@256bit.org>
parents:
7309
diff
changeset
|
452 !if "$(ASSEMBLY_ARCHITECTURE)" == "i386" && "$(CPUNR)" == "pentium4" |
1419 | 453 CPUARG = /arch:SSE2 |
454 !endif | |
455 !endif | |
456 | |
457 LIBC = | |
458 DEBUGINFO = /Zi | |
7 | 459 |
6797 | 460 # Don't use /nodefaultlib on MSVC 14 |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
461 !if $(MSVC_MAJOR) >= 14 |
6797 | 462 NODEFAULTLIB = |
463 !else | |
464 NODEFAULTLIB = /nodefaultlib | |
465 !endif | |
466 | |
7 | 467 !ifdef NODEBUG |
468 VIM = vim | |
469 !if "$(OPTIMIZE)" == "SPACE" | |
470 OPTFLAG = /O1 | |
471 !elseif "$(OPTIMIZE)" == "SPEED" | |
472 OPTFLAG = /O2 | |
473 !else # MAXSPEED | |
474 OPTFLAG = /Ox | |
475 !endif | |
2242
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
476 |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
477 !if $(MSVC_MAJOR) >= 8 |
1419 | 478 # Use link time code generation if not worried about size |
479 !if "$(OPTIMIZE)" != "SPACE" | |
480 OPTFLAG = $(OPTFLAG) /GL | |
481 !endif | |
482 !endif | |
2242
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
483 |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
484 # (/Wp64 is deprecated in VC9 and generates an obnoxious warning.) |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
485 !if ($(MSVC_MAJOR) == 7) || ($(MSVC_MAJOR) == 8) |
2242
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
486 CFLAGS=$(CFLAGS) $(WP64CHECK) |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
487 !endif |
bc4685345719
Don't use pointers to store numbers, use a union.
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
488 |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
489 # Static code analysis generally available starting with VS2012 (VC11) or |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
490 # Windows SDK 7.1 (VC10) |
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
491 !if ("$(ANALYZE)" == "yes") && ($(MSVC_MAJOR) >= 10) |
4446 | 492 CFLAGS=$(CFLAGS) /analyze |
493 !endif | |
494 | |
47 | 495 CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG) |
7 | 496 RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG |
497 ! ifdef USE_MSVCRT | |
1419 | 498 CFLAGS = $(CFLAGS) /MD |
7 | 499 LIBC = msvcrt.lib |
714 | 500 ! else |
7 | 501 LIBC = libcmt.lib |
1569 | 502 CFLAGS = $(CFLAGS) /Zl /MT |
7 | 503 ! endif |
504 !else # DEBUG | |
505 VIM = vimd | |
1569 | 506 ! if ("$(CPU)" == "i386") || ("$(CPU)" == "ix86") |
1419 | 507 DEBUGINFO = /ZI |
508 ! endif | |
268 | 509 CFLAGS = $(CFLAGS) -D_DEBUG -DDEBUG /Od |
7 | 510 RCFLAGS = $(rcflags) $(rcvars) -D_DEBUG -DDEBUG |
511 # The /fixed:no is needed for Quantify. Assume not 4.? as unsupported in VC4.0. | |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
512 ! if $(MSVC_MAJOR) == 4 |
7 | 513 LIBC = |
514 ! else | |
515 LIBC = /fixed:no | |
516 ! endif | |
426 | 517 ! ifdef USE_MSVCRT |
1419 | 518 CFLAGS = $(CFLAGS) /MDd |
7 | 519 LIBC = $(LIBC) msvcrtd.lib |
714 | 520 ! else |
426 | 521 LIBC = $(LIBC) libcmtd.lib |
1569 | 522 CFLAGS = $(CFLAGS) /Zl /MTd |
7 | 523 ! endif |
524 !endif # DEBUG | |
525 | |
526 INCL = vim.h os_win32.h ascii.h feature.h globals.h keymap.h macros.h \ | |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
527 proto.h option.h structs.h term.h $(CSCOPE_INCL) \ |
7 | 528 $(NBDEBUG_INCL) |
529 | |
530 OBJ = \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
531 $(OUTDIR)\blowfish.obj \ |
7 | 532 $(OUTDIR)\buffer.obj \ |
533 $(OUTDIR)\charset.obj \ | |
6126 | 534 $(OUTDIR)\crypt.obj \ |
535 $(OUTDIR)\crypt_zip.obj \ | |
7 | 536 $(OUTDIR)\diff.obj \ |
537 $(OUTDIR)\digraph.obj \ | |
538 $(OUTDIR)\edit.obj \ | |
539 $(OUTDIR)\eval.obj \ | |
540 $(OUTDIR)\ex_cmds.obj \ | |
541 $(OUTDIR)\ex_cmds2.obj \ | |
542 $(OUTDIR)\ex_docmd.obj \ | |
543 $(OUTDIR)\ex_eval.obj \ | |
544 $(OUTDIR)\ex_getln.obj \ | |
545 $(OUTDIR)\fileio.obj \ | |
546 $(OUTDIR)\fold.obj \ | |
547 $(OUTDIR)\getchar.obj \ | |
440 | 548 $(OUTDIR)\hardcopy.obj \ |
799 | 549 $(OUTDIR)\hashtab.obj \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
550 $(OUTDIR)\json.obj \ |
7 | 551 $(OUTDIR)\main.obj \ |
552 $(OUTDIR)\mark.obj \ | |
553 $(OUTDIR)\mbyte.obj \ | |
554 $(OUTDIR)\memfile.obj \ | |
555 $(OUTDIR)\memline.obj \ | |
556 $(OUTDIR)\menu.obj \ | |
557 $(OUTDIR)\message.obj \ | |
558 $(OUTDIR)\misc1.obj \ | |
559 $(OUTDIR)\misc2.obj \ | |
560 $(OUTDIR)\move.obj \ | |
561 $(OUTDIR)\normal.obj \ | |
562 $(OUTDIR)\ops.obj \ | |
563 $(OUTDIR)\option.obj \ | |
564 $(OUTDIR)\os_mswin.obj \ | |
4168 | 565 $(OUTDIR)\winclip.obj \ |
7 | 566 $(OUTDIR)\os_win32.obj \ |
567 $(OUTDIR)\pathdef.obj \ | |
799 | 568 $(OUTDIR)\popupmnu.obj \ |
7 | 569 $(OUTDIR)\quickfix.obj \ |
570 $(OUTDIR)\regexp.obj \ | |
571 $(OUTDIR)\screen.obj \ | |
572 $(OUTDIR)\search.obj \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
573 $(OUTDIR)\sha256.obj \ |
220 | 574 $(OUTDIR)\spell.obj \ |
7 | 575 $(OUTDIR)\syntax.obj \ |
576 $(OUTDIR)\tag.obj \ | |
577 $(OUTDIR)\term.obj \ | |
578 $(OUTDIR)\ui.obj \ | |
579 $(OUTDIR)\undo.obj \ | |
580 $(OUTDIR)\window.obj \ | |
581 $(OUTDIR)\vim.res | |
582 | |
583 !if "$(OLE)" == "yes" | |
584 CFLAGS = $(CFLAGS) -DFEAT_OLE | |
585 RCFLAGS = $(RCFLAGS) -DFEAT_OLE | |
586 OLE_OBJ = $(OUTDIR)\if_ole.obj | |
587 OLE_IDL = if_ole.idl | |
588 OLE_LIB = oleaut32.lib | |
589 !endif | |
590 | |
591 !if "$(IME)" == "yes" | |
592 CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME | |
593 !ifndef DYNAMIC_IME | |
594 DYNAMIC_IME = yes | |
595 !endif | |
596 !if "$(DYNAMIC_IME)" == "yes" | |
597 CFLAGS = $(CFLAGS) -DDYNAMIC_IME | |
598 !else | |
599 IME_LIB = imm32.lib | |
600 !endif | |
601 !endif | |
602 | |
603 !if "$(GIME)" == "yes" | |
604 CFLAGS = $(CFLAGS) -DGLOBAL_IME | |
605 OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj | |
606 MBYTE = yes | |
607 !endif | |
608 | |
609 !if "$(MBYTE)" == "yes" | |
610 CFLAGS = $(CFLAGS) -DFEAT_MBYTE | |
611 !endif | |
612 | |
613 !if "$(GUI)" == "yes" | |
614 SUBSYSTEM = windows | |
615 CFLAGS = $(CFLAGS) -DFEAT_GUI_W32 | |
616 RCFLAGS = $(RCFLAGS) -DFEAT_GUI_W32 | |
617 VIM = g$(VIM) | |
618 GUI_INCL = \ | |
619 gui.h \ | |
620 regexp.h \ | |
621 ascii.h \ | |
622 ex_cmds.h \ | |
623 farsi.h \ | |
624 feature.h \ | |
625 globals.h \ | |
184 | 626 gui_beval.h \ |
7 | 627 keymap.h \ |
628 macros.h \ | |
629 option.h \ | |
630 os_dos.h \ | |
631 os_win32.h | |
632 GUI_OBJ = \ | |
633 $(OUTDIR)\gui.obj \ | |
184 | 634 $(OUTDIR)\gui_beval.obj \ |
7 | 635 $(OUTDIR)\gui_w32.obj \ |
636 $(OUTDIR)\os_w32exe.obj | |
637 GUI_LIB = \ | |
1569 | 638 gdi32.lib version.lib $(IME_LIB) \ |
7 | 639 winspool.lib comctl32.lib advapi32.lib shell32.lib \ |
6797 | 640 /machine:$(CPU) |
7 | 641 !else |
642 SUBSYSTEM = console | |
643 !endif | |
644 | |
6149 | 645 !if "$(SUBSYSTEM_VER)" != "" |
646 SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER) | |
647 !endif | |
648 | |
6110 | 649 !if "$(GUI)" == "yes" && "$(DIRECTX)" == "yes" |
650 CFLAGS = $(CFLAGS) $(DIRECTX_DEFS) | |
651 GUI_INCL = $(GUI_INCL) $(DIRECTX_INCL) | |
652 GUI_OBJ = $(GUI_OBJ) $(DIRECTX_OBJ) | |
653 !endif | |
654 | |
7 | 655 # iconv.dll library (dynamically loaded) |
656 !ifndef ICONV | |
657 ICONV = yes | |
658 !endif | |
659 !if "$(ICONV)" == "yes" | |
660 CFLAGS = $(CFLAGS) -DDYNAMIC_ICONV | |
661 !endif | |
662 | |
663 # libintl.dll library | |
664 !ifndef GETTEXT | |
665 GETTEXT = yes | |
666 !endif | |
667 !if "$(GETTEXT)" == "yes" | |
668 CFLAGS = $(CFLAGS) -DDYNAMIC_GETTEXT | |
669 !endif | |
670 | |
671 # TCL interface | |
672 !ifdef TCL | |
673 !ifndef TCL_VER | |
674 TCL_VER = 83 | |
675 TCL_VER_LONG = 8.3 | |
676 !endif | |
677 !message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)" | |
678 !if "$(DYNAMIC_TCL)" == "yes" | |
679 !message Tcl DLL will be loaded dynamically | |
680 TCL_DLL = tcl$(TCL_VER).dll | |
416 | 681 CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \ |
682 -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\" | |
7 | 683 TCL_OBJ = $(OUTDIR)\if_tcl.obj |
684 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)" | |
3369 | 685 TCL_LIB = "$(TCL)\lib\tclstub$(TCL_VER).lib" |
7 | 686 !else |
687 CFLAGS = $(CFLAGS) -DFEAT_TCL | |
688 TCL_OBJ = $(OUTDIR)\if_tcl.obj | |
689 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)" | |
690 TCL_LIB = $(TCL)\lib\tcl$(TCL_VER)vc.lib | |
691 !endif | |
692 !endif | |
693 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
694 # Lua interface |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
695 !ifdef LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
696 !ifndef LUA_VER |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
697 LUA_VER = 51 |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
698 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
699 !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
|
700 !if "$(DYNAMIC_LUA)" == "yes" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
701 !message Lua DLL will be loaded dynamically |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
702 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
703 CFLAGS = $(CFLAGS) -DFEAT_LUA |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
704 LUA_OBJ = $(OUTDIR)\if_lua.obj |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
705 LUA_INC = /I "$(LUA)\include" /I "$(LUA)" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
706 !if "$(DYNAMIC_LUA)" == "yes" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
707 CFLAGS = $(CFLAGS) -DDYNAMIC_LUA \ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
708 -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
709 LUA_LIB = /nodefaultlib:lua$(LUA_VER).lib |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
710 !else |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
711 LUA_LIB = "$(LUA)\lib\lua$(LUA_VER).lib" |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
712 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
713 !endif |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
714 |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
715 !ifdef PYTHON |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
716 !ifdef PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
717 DYNAMIC_PYTHON=yes |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
718 DYNAMIC_PYTHON3=yes |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
719 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
720 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
721 |
7 | 722 # PYTHON interface |
723 !ifdef PYTHON | |
724 !ifndef PYTHON_VER | |
725 PYTHON_VER = 22 | |
726 !endif | |
727 !message Python requested (version $(PYTHON_VER)) - root dir is "$(PYTHON)" | |
728 !if "$(DYNAMIC_PYTHON)" == "yes" | |
729 !message Python DLL will be loaded dynamically | |
730 !endif | |
731 CFLAGS = $(CFLAGS) -DFEAT_PYTHON | |
732 PYTHON_OBJ = $(OUTDIR)\if_python.obj | |
733 PYTHON_INC = /I "$(PYTHON)\Include" /I "$(PYTHON)\PC" | |
734 !if "$(DYNAMIC_PYTHON)" == "yes" | |
416 | 735 CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON \ |
736 -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\" | |
7 | 737 PYTHON_LIB = /nodefaultlib:python$(PYTHON_VER).lib |
738 !else | |
739 PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib | |
740 !endif | |
741 !endif | |
742 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
743 # PYTHON3 interface |
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 !ifndef PYTHON3_VER |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
746 PYTHON3_VER = 31 |
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 !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
|
749 !if "$(DYNAMIC_PYTHON3)" == "yes" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
750 !message Python3 DLL will be loaded dynamically |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
751 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
752 CFLAGS = $(CFLAGS) -DFEAT_PYTHON3 |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
753 PYTHON3_OBJ = $(OUTDIR)\if_python3.obj |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
754 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
|
755 !if "$(DYNAMIC_PYTHON3)" == "yes" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
756 CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON3 \ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
757 -DDYNAMIC_PYTHON3_DLL=\"python$(PYTHON3_VER).dll\" |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
758 PYTHON3_LIB = /nodefaultlib:python$(PYTHON3_VER).lib |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
759 !else |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
760 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
|
761 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
762 !endif |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
763 |
14 | 764 # MzScheme interface |
765 !ifdef MZSCHEME | |
766 !message MzScheme requested - root dir is "$(MZSCHEME)" | |
767 !ifndef MZSCHEME_VER | |
768 MZSCHEME_VER = 205_000 | |
769 !endif | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
770 !ifndef MZSCHEME_COLLECTS |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
771 MZSCHEME_COLLECTS=$(MZSCHEME)\collects |
1894 | 772 !endif |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
773 CFLAGS = $(CFLAGS) -DFEAT_MZSCHEME -I "$(MZSCHEME)\include" |
2628 | 774 !if EXIST("$(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib") |
775 MZSCHEME_MAIN_LIB=mzsch | |
776 !else | |
777 MZSCHEME_MAIN_LIB=racket | |
778 !endif | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
779 !if (EXIST("$(MZSCHEME)\lib\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll") \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
780 && !EXIST("$(MZSCHEME)\lib\libmzgc$(MZSCHEME_VER).dll")) \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
781 || (EXIST("$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib") \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
782 && !EXIST("$(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib")) |
1894 | 783 !message Building with Precise GC |
784 MZSCHEME_PRECISE_GC = yes | |
785 CFLAGS = $(CFLAGS) -DMZ_PRECISE_GC | |
786 !endif | |
127 | 787 !if "$(DYNAMIC_MZSCHEME)" == "yes" |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
788 !message MzScheme DLLs will be loaded dynamically |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
789 CFLAGS = $(CFLAGS) -DDYNAMIC_MZSCHEME |
1894 | 790 !if "$(MZSCHEME_PRECISE_GC)" == "yes" |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
791 # Precise GC does not use separate dll |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
792 CFLAGS = $(CFLAGS) \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
793 -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
794 -DDYNAMIC_MZGC_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
795 !else |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
796 CFLAGS = $(CFLAGS) \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
797 -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
798 -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\" |
1894 | 799 !endif |
127 | 800 !else |
1894 | 801 !if "$(MZSCHEME_DEBUG)" == "yes" |
802 CFLAGS = $(CFLAGS) -DMZSCHEME_FORCE_GC | |
803 !endif | |
804 !if "$(MZSCHEME_PRECISE_GC)" == "yes" | |
805 # Precise GC does not use separate dll | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
806 !if EXIST("$(MZSCHEME)\lib\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).def") |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
807 # create .lib from .def |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
808 MZSCHEME_LIB = lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
809 MZSCHEME_EXTRA_DEP = lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib |
1894 | 810 !else |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
811 MZSCHEME_LIB = "$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib" |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
812 !endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
813 !else |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
814 MZSCHEME_LIB = "$(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib" \ |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
815 "$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib" |
127 | 816 !endif |
1894 | 817 !endif |
14 | 818 MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj |
3348 | 819 # increase stack size |
820 MZSCHEME_LIB = $(MZSCHEME_LIB) /STACK:8388608 | |
14 | 821 !endif |
822 | |
7 | 823 # Perl interface |
824 !ifdef PERL | |
825 !ifndef PERL_VER | |
826 PERL_VER = 56 | |
827 !endif | |
828 !message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)" | |
829 !if "$(DYNAMIC_PERL)" == "yes" | |
830 !if $(PERL_VER) >= 56 | |
831 !message Perl DLL will be loaded dynamically | |
832 !else | |
833 !message Dynamic loading is not supported for Perl versions earlier than 5.6.0 | |
834 !message Reverting to static loading... | |
835 !undef DYNAMIC_PERL | |
836 !endif | |
837 !endif | |
838 | |
839 # Is Perl installed in architecture-specific directories? | |
840 !if exist($(PERL)\Bin\MSWin32-x86) | |
841 PERL_ARCH = \MSWin32-x86 | |
842 !endif | |
843 | |
844 PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core | |
845 | |
846 # Version-dependent stuff | |
847 !if $(PERL_VER) == 55 | |
848 PERL_LIB = $(PERL_INCDIR)\perl.lib | |
849 !else | |
850 PERL_DLL = perl$(PERL_VER).dll | |
5560 | 851 !if exist($(PERL_INCDIR)\perl$(PERL_VER).lib) |
7 | 852 PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib |
5560 | 853 !else |
854 # For ActivePerl 5.18 and later | |
855 PERL_LIB = $(PERL_INCDIR)\libperl$(PERL_VER).a | |
856 !endif | |
7 | 857 !endif |
858 | |
6872 | 859 CFLAGS = $(CFLAGS) -DFEAT_PERL -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS |
7 | 860 |
861 # Do we want to load Perl dynamically? | |
862 !if "$(DYNAMIC_PERL)" == "yes" | |
863 CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\" | |
864 !undef PERL_LIB | |
865 !endif | |
866 | |
867 PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl | |
868 PERL_INC = /I $(PERL_INCDIR) | |
7414
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
869 !if $(MSVC_MAJOR) <= 11 |
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
870 # ActivePerl 5.20+ requires stdbool.h but VC2012 or earlier doesn't have it. |
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
871 # Use a stub stdbool.h. |
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
872 PERL_INC = $(PERL_INC) /I if_perl_msvc |
d467ca80d3c1
commit https://github.com/vim/vim/commit/2bf2417612879de627dcea1dbb22ee2199b16963
Christian Brabandt <cb@256bit.org>
parents:
7324
diff
changeset
|
873 !endif |
7 | 874 PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj |
875 XSUBPP = $(PERL)\lib\ExtUtils\xsubpp | |
3085 | 876 !if exist($(XSUBPP)) |
3064 | 877 XSUBPP = $(PERL_EXE) $(XSUBPP) |
878 !else | |
879 XSUBPP = xsubpp | |
880 !endif | |
7 | 881 XSUBPP_TYPEMAP = $(PERL)\lib\ExtUtils\typemap |
882 | |
883 !endif | |
884 | |
885 # | |
886 # Support Ruby interface | |
887 # | |
888 !ifdef RUBY | |
889 # Set default value | |
890 !ifndef RUBY_VER | |
891 RUBY_VER = 18 | |
892 !endif | |
893 !ifndef RUBY_VER_LONG | |
894 RUBY_VER_LONG = 1.8 | |
895 !endif | |
3722 | 896 !ifndef RUBY_API_VER |
897 RUBY_API_VER = $(RUBY_VER_LONG:.=) | |
898 !endif | |
7 | 899 |
900 !if $(RUBY_VER) >= 18 | |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
901 |
7 | 902 !ifndef RUBY_PLATFORM |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
903 !if "$(CPU)" == "i386" |
7 | 904 RUBY_PLATFORM = i386-mswin32 |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
905 !else # CPU |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
906 RUBY_PLATFORM = x64-mswin64 |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
907 !endif # CPU |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
908 !if $(MSVCRT_VER) >= 70 |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
909 RUBY_PLATFORM = $(RUBY_PLATFORM)_$(MSVCRT_VER) |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
910 !endif # MSVCRT_VER |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
911 !endif # RUBY_PLATFORM |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
912 |
7 | 913 !ifndef RUBY_INSTALL_NAME |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
914 !ifndef RUBY_MSVCRT_NAME |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
915 # Base name of msvcrXX.dll which is used by ruby's dll. |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
916 RUBY_MSVCRT_NAME = $(MSVCRT_NAME) |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
917 !endif # RUBY_MSVCRT_NAME |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
918 !if "$(CPU)" == "i386" |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
919 RUBY_INSTALL_NAME = $(RUBY_MSVCRT_NAME)-ruby$(RUBY_API_VER) |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
920 !else # CPU |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
921 RUBY_INSTALL_NAME = x64-$(RUBY_MSVCRT_NAME)-ruby$(RUBY_API_VER) |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
922 !endif # CPU |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
923 !endif # RUBY_INSTALL_NAME |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
924 |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
925 !else # $(RUBY_VER) >= 18 |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
926 |
7 | 927 !ifndef RUBY_PLATFORM |
928 RUBY_PLATFORM = i586-mswin32 | |
929 !endif | |
930 !ifndef RUBY_INSTALL_NAME | |
3722 | 931 RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER) |
7 | 932 !endif |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7475
diff
changeset
|
933 |
7 | 934 !endif # $(RUBY_VER) >= 18 |
935 | |
936 !message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)" | |
937 CFLAGS = $(CFLAGS) -DFEAT_RUBY | |
938 RUBY_OBJ = $(OUTDIR)\if_ruby.obj | |
3722 | 939 !if $(RUBY_VER) >= 19 |
940 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
|
941 !else |
7 | 942 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
|
943 !endif |
7 | 944 RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib |
945 # Do we want to load Ruby dynamically? | |
946 !if "$(DYNAMIC_RUBY)" == "yes" | |
947 !message Ruby DLL will be loaded dynamically | |
416 | 948 CFLAGS = $(CFLAGS) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_VER=$(RUBY_VER) \ |
949 -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\" | |
7 | 950 !undef RUBY_LIB |
951 !endif | |
952 !endif # RUBY | |
953 | |
954 # | |
955 # Support PostScript printing | |
956 # | |
957 !if "$(POSTSCRIPT)" == "yes" | |
958 CFLAGS = $(CFLAGS) -DMSWINPS | |
959 !endif # POSTSCRIPT | |
960 | |
961 # | |
962 # FEATURES: TINY, SMALL, NORMAL, BIG or HUGE | |
963 # | |
964 CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES) | |
965 | |
966 # | |
268 | 967 # Always generate the .pdb file, so that we get debug symbols that can be used |
968 # on a crash (doesn't add overhead to the executable). | |
1419 | 969 # Generate edit-and-continue debug info when no optimization - allows to |
970 # debug more conveniently (able to look at variables which are in registers) | |
268 | 971 # |
1419 | 972 CFLAGS = $(CFLAGS) /Fd$(OUTDIR)/ $(DEBUGINFO) |
973 LINK_PDB = /PDB:$(VIM).pdb -debug | |
268 | 974 |
975 # | |
976 # End extra feature include | |
7 | 977 # |
978 !message | |
979 | |
1419 | 980 conflags = /nologo /subsystem:$(SUBSYSTEM) |
7 | 981 |
659 | 982 PATHDEF_SRC = $(OUTDIR)\pathdef.c |
983 | |
7 | 984 !IF "$(MAP)" == "yes" |
985 # "/map" is for debugging | |
986 conflags = $(conflags) /map | |
987 !ELSEIF "$(MAP)" == "lines" | |
988 # "/mapinfo:lines" is for debugging, only works for VC6 and later | |
989 conflags = $(conflags) /map /mapinfo:lines | |
990 !ENDIF | |
991 | |
1419 | 992 LINKARGS1 = $(linkdebug) $(conflags) |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
993 LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(NODEFAULTLIB) $(LIBC) $(OLE_LIB) user32.lib \ |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
994 $(LUA_LIB) $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(RUBY_LIB) \ |
416 | 995 $(TCL_LIB) $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB) |
7 | 996 |
1419 | 997 # Report link time code generation progress if used. |
998 !ifdef NODEBUG | |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
999 !if $(MSVC_MAJOR) >= 8 |
1419 | 1000 !if "$(OPTIMIZE)" != "SPACE" |
1001 LINKARGS1 = $(LINKARGS1) /LTCG:STATUS | |
1002 !endif | |
1003 !endif | |
1004 !endif | |
1005 | |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1006 all: $(VIM).exe \ |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1007 vimrun.exe \ |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1008 install.exe \ |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1009 uninstal.exe \ |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1010 xxd/xxd.exe \ |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1011 tee/tee.exe \ |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1012 GvimExt/gvimext.dll |
7 | 1013 |
416 | 1014 $(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
|
1015 $(LUA_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) $(TCL_OBJ) \ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
1016 $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(CHANNEL_OBJ) $(XPM_OBJ) \ |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1017 version.c version.h |
416 | 1018 $(CC) $(CFLAGS) version.c |
389 | 1019 $(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
|
1020 $(LUA_OBJ) $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) \ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
1021 $(TCL_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(CHANNEL_OBJ) \ |
416 | 1022 $(XPM_OBJ) $(OUTDIR)\version.obj $(LINKARGS2) |
5925 | 1023 if exist $(VIM).exe.manifest mt.exe -nologo -manifest $(VIM).exe.manifest -updateresource:$(VIM).exe;1 |
7 | 1024 |
388 | 1025 $(VIM): $(VIM).exe |
7 | 1026 |
1027 $(OUTDIR): | |
39 | 1028 if not exist $(OUTDIR)/nul mkdir $(OUTDIR) |
7 | 1029 |
1030 install.exe: dosinst.c | |
416 | 1031 $(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
|
1032 user32.lib ole32.lib advapi32.lib uuid.lib |
7 | 1033 - if exist install.exe del install.exe |
1034 ren dosinst.exe install.exe | |
1035 | |
1036 uninstal.exe: uninstal.c | |
1037 $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib | |
1038 | |
1039 vimrun.exe: vimrun.c | |
1040 $(CC) /nologo -DNDEBUG vimrun.c | |
1041 | |
1042 xxd/xxd.exe: xxd/xxd.c | |
1043 cd xxd | |
1044 $(MAKE) /NOLOGO -f Make_mvc.mak | |
1045 cd .. | |
1046 | |
7475
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1047 tee/tee.exe: tee/tee.c |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1048 cd tee |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1049 $(MAKE) /NOLOGO -f Make_mvc.mak |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1050 cd .. |
6b5ce5161d6d
commit https://github.com/vim/vim/commit/24db72958fc91bd067c7d60a4990d09a6f295b48
Christian Brabandt <cb@256bit.org>
parents:
7433
diff
changeset
|
1051 |
7 | 1052 GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h |
1053 cd GvimExt | |
1054 $(MAKE) /NOLOGO -f Makefile $(MAKEFLAGS_GVIMEXT) | |
1055 cd .. | |
1056 | |
1057 | |
1058 tags: notags | |
1059 $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro | |
1060 | |
1061 notags: | |
1062 - if exist tags del tags | |
1063 | |
1064 clean: | |
444 | 1065 - if exist $(OUTDIR)/nul $(DEL_TREE) $(OUTDIR) |
7 | 1066 - if exist *.obj del *.obj |
1067 - if exist $(VIM).exe del $(VIM).exe | |
1068 - if exist $(VIM).ilk del $(VIM).ilk | |
1069 - if exist $(VIM).pdb del $(VIM).pdb | |
1070 - if exist $(VIM).map del $(VIM).map | |
1071 - if exist $(VIM).ncb del $(VIM).ncb | |
1072 - if exist vimrun.exe del vimrun.exe | |
1073 - if exist install.exe del install.exe | |
1074 - if exist uninstal.exe del uninstal.exe | |
1075 - if exist if_perl.c del if_perl.c | |
1076 - if exist dimm.h del dimm.h | |
1077 - if exist dimm_i.c del dimm_i.c | |
1078 - if exist dimm.tlb del dimm.tlb | |
1079 - if exist dosinst.exe del dosinst.exe | |
1080 cd xxd | |
1081 $(MAKE) /NOLOGO -f Make_mvc.mak clean | |
1082 cd .. | |
7555
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
1083 cd tee |
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
1084 $(MAKE) /NOLOGO -f Make_mvc.mak clean |
5bbfac219f20
commit https://github.com/vim/vim/commit/d08a8d4a31ed10225aca6be7565220fa541c32ac
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
1085 cd .. |
7 | 1086 cd GvimExt |
1087 $(MAKE) /NOLOGO -f Makefile clean | |
1088 cd .. | |
1089 cd GvimExt | |
1090 $(MAKE) /NOLOGO -f Makefile clean | |
1091 cd .. | |
1092 - if exist testdir\*.out del testdir\*.out | |
1093 | |
1094 test: | |
1095 cd testdir | |
1096 $(MAKE) /NOLOGO -f Make_dos.mak win32 | |
1097 cd .. | |
1098 | |
7433
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
1099 testgvim: |
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
1100 cd testdir |
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
1101 $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\gvim win32 |
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
1102 cd .. |
b5d07f5e78ba
commit https://github.com/vim/vim/commit/7eae47af89580df07a72079405a0e7b8aad784a8
Christian Brabandt <cb@256bit.org>
parents:
7414
diff
changeset
|
1103 |
47 | 1104 testclean: |
1105 cd testdir | |
1106 $(MAKE) /NOLOGO -f Make_dos.mak clean | |
1107 cd .. | |
1108 | |
7 | 1109 ########################################################################### |
1110 | |
1111 # Create a default rule for transforming .c files to .obj files in $(OUTDIR) | |
1112 # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later) | |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
1113 !IF "$(_NMAKE_VER)" == "" |
7 | 1114 .c{$(OUTDIR)/}.obj: |
1115 !ELSE | |
1116 .c{$(OUTDIR)/}.obj:: | |
1117 !ENDIF | |
416 | 1118 $(CC) $(CFLAGS) $< |
7 | 1119 |
1120 # Create a default rule for transforming .cpp files to .obj files in $(OUTDIR) | |
1121 # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later) | |
7309
c412b0922c27
commit https://github.com/vim/vim/commit/90f5d0a5c3bbfeefcbc4d6eac59cf225ec714b28
Christian Brabandt <cb@256bit.org>
parents:
6952
diff
changeset
|
1122 !IF "$(_NMAKE_VER)" == "" |
7 | 1123 .cpp{$(OUTDIR)/}.obj: |
1124 !ELSE | |
1125 .cpp{$(OUTDIR)/}.obj:: | |
1126 !ENDIF | |
416 | 1127 $(CC) $(CFLAGS) $< |
7 | 1128 |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
1129 $(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
|
1130 |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1131 $(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
|
1132 |
7 | 1133 $(OUTDIR)/charset.obj: $(OUTDIR) charset.c $(INCL) |
1134 | |
6126 | 1135 $(OUTDIR)/crypt.obj: $(OUTDIR) crypt.c $(INCL) |
1136 | |
1137 $(OUTDIR)/crypt_zip.obj: $(OUTDIR) crypt_zip.c $(INCL) | |
1138 | |
7 | 1139 $(OUTDIR)/diff.obj: $(OUTDIR) diff.c $(INCL) |
1140 | |
1141 $(OUTDIR)/digraph.obj: $(OUTDIR) digraph.c $(INCL) | |
1142 | |
1143 $(OUTDIR)/edit.obj: $(OUTDIR) edit.c $(INCL) | |
1144 | |
1145 $(OUTDIR)/eval.obj: $(OUTDIR) eval.c $(INCL) | |
1146 | |
1147 $(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL) | |
1148 | |
1149 $(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL) | |
1150 | |
1151 $(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmds.h | |
1152 | |
1153 $(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) ex_cmds.h | |
1154 | |
1155 $(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL) | |
1156 | |
1157 $(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL) | |
1158 | |
1159 $(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL) | |
1160 | |
1161 $(OUTDIR)/getchar.obj: $(OUTDIR) getchar.c $(INCL) | |
1162 | |
440 | 1163 $(OUTDIR)/hardcopy.obj: $(OUTDIR) hardcopy.c $(INCL) |
1164 | |
799 | 1165 $(OUTDIR)/hashtab.obj: $(OUTDIR) hashtab.c $(INCL) |
119 | 1166 |
7 | 1167 $(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL) |
1168 | |
184 | 1169 $(OUTDIR)/gui_beval.obj: $(OUTDIR) gui_beval.c $(INCL) $(GUI_INCL) |
1170 | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
1171 $(OUTDIR)/gui_w32.obj: $(OUTDIR) gui_w32.c $(INCL) $(GUI_INCL) |
7 | 1172 |
6110 | 1173 $(OUTDIR)/gui_dwrite.obj: $(OUTDIR) gui_dwrite.cpp $(INCL) $(GUI_INCL) |
1174 | |
7 | 1175 $(OUTDIR)/if_cscope.obj: $(OUTDIR) if_cscope.c $(INCL) |
1176 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1177 $(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL) |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1178 $(CC) $(CFLAGS) $(LUA_INC) if_lua.c |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
1179 |
7 | 1180 if_perl.c : if_perl.xs typemap |
3064 | 1181 $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \ |
416 | 1182 -typemap typemap if_perl.xs > if_perl.c |
7 | 1183 |
1184 $(OUTDIR)/if_perl.obj: $(OUTDIR) if_perl.c $(INCL) | |
416 | 1185 $(CC) $(CFLAGS) $(PERL_INC) if_perl.c |
7 | 1186 |
1187 $(OUTDIR)/if_perlsfio.obj: $(OUTDIR) if_perlsfio.c $(INCL) | |
416 | 1188 $(CC) $(CFLAGS) $(PERL_INC) if_perlsfio.c |
7 | 1189 |
4074 | 1190 $(OUTDIR)/if_mzsch.obj: $(OUTDIR) if_mzsch.c if_mzsch.h $(INCL) $(MZSCHEME_EXTRA_DEP) |
426 | 1191 $(CC) $(CFLAGS) if_mzsch.c \ |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
1192 -DMZSCHEME_COLLECTS="\"$(MZSCHEME_COLLECTS:\=\\)\"" |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
1193 |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
1194 lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib: |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7591
diff
changeset
|
1195 lib /DEF:"$(MZSCHEME)\lib\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).def" |
14 | 1196 |
4724
450e13fe1621
updated for version 7.3.1109
Bram Moolenaar <bram@vim.org>
parents:
4446
diff
changeset
|
1197 $(OUTDIR)/if_python.obj: $(OUTDIR) if_python.c if_py_both.h $(INCL) |
416 | 1198 $(CC) $(CFLAGS) $(PYTHON_INC) if_python.c |
7 | 1199 |
4724
450e13fe1621
updated for version 7.3.1109
Bram Moolenaar <bram@vim.org>
parents:
4446
diff
changeset
|
1200 $(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
|
1201 $(CC) $(CFLAGS) $(PYTHON3_INC) if_python3.c |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
1202 |
7 | 1203 $(OUTDIR)/if_ole.obj: $(OUTDIR) if_ole.cpp $(INCL) if_ole.h |
1204 | |
1205 $(OUTDIR)/if_ruby.obj: $(OUTDIR) if_ruby.c $(INCL) | |
416 | 1206 $(CC) $(CFLAGS) $(RUBY_INC) if_ruby.c |
7 | 1207 |
1208 $(OUTDIR)/if_tcl.obj: $(OUTDIR) if_tcl.c $(INCL) | |
416 | 1209 $(CC) $(CFLAGS) $(TCL_INC) if_tcl.c |
7 | 1210 |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
1211 $(OUTDIR)/json.obj: $(OUTDIR) json.c $(INCL) |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
1212 |
7 | 1213 $(OUTDIR)/main.obj: $(OUTDIR) main.c $(INCL) |
1214 | |
1215 $(OUTDIR)/mark.obj: $(OUTDIR) mark.c $(INCL) | |
1216 | |
1217 $(OUTDIR)/memfile.obj: $(OUTDIR) memfile.c $(INCL) | |
1218 | |
1219 $(OUTDIR)/memline.obj: $(OUTDIR) memline.c $(INCL) | |
1220 | |
1221 $(OUTDIR)/menu.obj: $(OUTDIR) menu.c $(INCL) | |
1222 | |
1223 $(OUTDIR)/message.obj: $(OUTDIR) message.c $(INCL) | |
1224 | |
1225 $(OUTDIR)/misc1.obj: $(OUTDIR) misc1.c $(INCL) | |
1226 | |
1227 $(OUTDIR)/misc2.obj: $(OUTDIR) misc2.c $(INCL) | |
1228 | |
1229 $(OUTDIR)/move.obj: $(OUTDIR) move.c $(INCL) | |
1230 | |
1231 $(OUTDIR)/mbyte.obj: $(OUTDIR) mbyte.c $(INCL) | |
1232 | |
1233 $(OUTDIR)/netbeans.obj: $(OUTDIR) netbeans.c $(NBDEBUG_SRC) $(INCL) | |
1234 | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1235 $(OUTDIR)/channel.obj: $(OUTDIR) channel.c $(INCL) |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1236 |
7 | 1237 $(OUTDIR)/normal.obj: $(OUTDIR) normal.c $(INCL) |
1238 | |
1239 $(OUTDIR)/option.obj: $(OUTDIR) option.c $(INCL) | |
1240 | |
1241 $(OUTDIR)/ops.obj: $(OUTDIR) ops.c $(INCL) | |
1242 | |
1243 $(OUTDIR)/os_mswin.obj: $(OUTDIR) os_mswin.c $(INCL) | |
1244 | |
4168 | 1245 $(OUTDIR)/winclip.obj: $(OUTDIR) winclip.c $(INCL) |
1246 | |
7 | 1247 $(OUTDIR)/os_win32.obj: $(OUTDIR) os_win32.c $(INCL) os_win32.h |
1248 | |
1249 $(OUTDIR)/os_w32exe.obj: $(OUTDIR) os_w32exe.c $(INCL) | |
1250 | |
659 | 1251 $(OUTDIR)/pathdef.obj: $(OUTDIR) $(PATHDEF_SRC) $(INCL) |
1252 $(CC) $(CFLAGS) $(PATHDEF_SRC) | |
7 | 1253 |
799 | 1254 $(OUTDIR)/popupmnu.obj: $(OUTDIR) popupmnu.c $(INCL) |
539 | 1255 |
7 | 1256 $(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL) |
1257 | |
4444 | 1258 $(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c regexp_nfa.c $(INCL) |
7 | 1259 |
1260 $(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL) | |
1261 | |
1262 $(OUTDIR)/search.obj: $(OUTDIR) search.c $(INCL) | |
1263 | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
1264 $(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
|
1265 |
220 | 1266 $(OUTDIR)/spell.obj: $(OUTDIR) spell.c $(INCL) |
1267 | |
7 | 1268 $(OUTDIR)/syntax.obj: $(OUTDIR) syntax.c $(INCL) |
1269 | |
1270 $(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL) | |
1271 | |
1272 $(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL) | |
1273 | |
1274 $(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL) | |
1275 | |
1276 $(OUTDIR)/undo.obj: $(OUTDIR) undo.c $(INCL) | |
1277 | |
1278 $(OUTDIR)/window.obj: $(OUTDIR) window.c $(INCL) | |
1279 | |
1280 $(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c | |
416 | 1281 $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c |
7 | 1282 |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
1283 $(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
|
1284 tearoff.bmp vim.ico vim_error.ico \ |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2243
diff
changeset
|
1285 vim_alert.ico vim_info.ico vim_quest.ico |
7887
a98b93736894
commit https://github.com/vim/vim/commit/bc073092254df17b282d162d8e8181e8f6a7a356
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
1286 $(RC) /nologo /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc |
7 | 1287 |
388 | 1288 iid_ole.c if_ole.h vim.tlb: if_ole.idl |
416 | 1289 midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \ |
1290 /header if_ole.h if_ole.idl | |
7 | 1291 |
1292 dimm.h dimm_i.c: dimm.idl | |
388 | 1293 midl /nologo /error none /proxy nul dimm.idl |
7 | 1294 |
1295 $(OUTDIR)/dimm_i.obj: $(OUTDIR) dimm_i.c $(INCL) | |
1296 | |
1297 $(OUTDIR)/glbl_ime.obj: $(OUTDIR) glbl_ime.cpp dimm.h $(INCL) | |
1298 | |
19 | 1299 # $CFLAGS may contain backslashes and double quotes, escape them both. |
1300 E0_CFLAGS = $(CFLAGS:\=\\) | |
1301 E_CFLAGS = $(E0_CFLAGS:"=\") | |
1072 | 1302 # ") stop the string |
2708 | 1303 # $LINKARGS2 may contain backslashes and double quotes, escape them both. |
1304 E0_LINKARGS2 = $(LINKARGS2:\=\\) | |
1305 E_LINKARGS2 = $(E0_LINKARGS2:"=\") | |
1306 # ") stop the string | |
19 | 1307 |
659 | 1308 $(PATHDEF_SRC): auto |
1309 @echo creating $(PATHDEF_SRC) | |
1310 @echo /* pathdef.c */ > $(PATHDEF_SRC) | |
1311 @echo #include "vim.h" >> $(PATHDEF_SRC) | |
1312 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; >> $(PATHDEF_SRC) | |
1313 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; >> $(PATHDEF_SRC) | |
1314 @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> $(PATHDEF_SRC) | |
2708 | 1315 @echo char_u *all_lflags = (char_u *)"$(link:\=\\) $(LINKARGS1:\=\\) $(E_LINKARGS2)"; >> $(PATHDEF_SRC) |
659 | 1316 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> $(PATHDEF_SRC) |
1317 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> $(PATHDEF_SRC) | |
7 | 1318 |
1319 auto: | |
1320 if not exist auto/nul mkdir auto | |
1321 | |
1322 # End Custom Build | |
1323 proto.h: \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2101
diff
changeset
|
1324 proto/blowfish.pro \ |
7 | 1325 proto/buffer.pro \ |
1326 proto/charset.pro \ | |
6126 | 1327 proto/crypt.pro \ |
1328 proto/crypt_zip.pro \ | |
7 | 1329 proto/diff.pro \ |
1330 proto/digraph.pro \ | |
1331 proto/edit.pro \ | |
1332 proto/eval.pro \ | |
1333 proto/ex_cmds.pro \ | |
1334 proto/ex_cmds2.pro \ | |
1335 proto/ex_docmd.pro \ | |
1336 proto/ex_eval.pro \ | |
1337 proto/ex_getln.pro \ | |
1338 proto/fileio.pro \ | |
1339 proto/getchar.pro \ | |
440 | 1340 proto/hardcopy.pro \ |
799 | 1341 proto/hashtab.pro \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
1342 proto/json.pro \ |
7 | 1343 proto/main.pro \ |
1344 proto/mark.pro \ | |
1345 proto/memfile.pro \ | |
1346 proto/memline.pro \ | |
1347 proto/menu.pro \ | |
1348 proto/message.pro \ | |
1349 proto/misc1.pro \ | |
1350 proto/misc2.pro \ | |
1351 proto/move.pro \ | |
1352 proto/mbyte.pro \ | |
1353 proto/normal.pro \ | |
1354 proto/ops.pro \ | |
1355 proto/option.pro \ | |
1356 proto/os_mswin.pro \ | |
4168 | 1357 proto/winclip.pro \ |
7 | 1358 proto/os_win32.pro \ |
799 | 1359 proto/popupmnu.pro \ |
7 | 1360 proto/quickfix.pro \ |
1361 proto/regexp.pro \ | |
1362 proto/screen.pro \ | |
1363 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
|
1364 proto/sha256.pro \ |
220 | 1365 proto/spell.pro \ |
7 | 1366 proto/syntax.pro \ |
1367 proto/tag.pro \ | |
1368 proto/term.pro \ | |
1369 proto/ui.pro \ | |
1370 proto/undo.pro \ | |
1371 proto/window.pro \ | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1372 $(NETBEANS_PRO) \ |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
1373 $(CHANNEL_PRO) |
7 | 1374 |
844 | 1375 .SUFFIXES: .cod .i |
843 | 1376 |
1377 # Generate foo.cod (mixed source and assembly listing) from foo.c via "nmake | |
1378 # foo.cod" | |
1379 .c.cod: | |
1380 $(CC) $(CFLAGS) /FAcs $< | |
1381 | |
1382 # Generate foo.i (preprocessor listing) from foo.c via "nmake foo.i" | |
1383 .c.i: | |
1384 $(CC) $(CFLAGS) /P /C $< | |
714 | 1385 |
1386 | |
7 | 1387 # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: |