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