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