7
|
1 # Makefile for Vim on Win32 (Windows NT and Windows 95), using the
|
|
2 # Microsoft Visual C++ 2.x and MSVC 4.x compilers (or newer).
|
|
3 # It builds on Windows 95 and all four NT platforms: i386, Alpha, MIPS, and
|
|
4 # PowerPC. The NT/i386 binary and the Windows 95 binary are identical.
|
|
5 #
|
|
6 # This makefile can build the console, GUI, OLE-enable, Perl-enabled and
|
|
7 # Python-enabled versions of vim for Win32 platforms.
|
|
8 #
|
|
9 # When compiling different versions, do "nmake clean" first!
|
|
10 #
|
|
11 # The basic command line to build vim is:
|
|
12 # nmake -f Make_mvc.mak
|
|
13 # This will build the console version of vim with no additional interfaces.
|
|
14 # To add interfaces, define any of the following:
|
|
15 # GUI interface: GUI=yes (default is no)
|
|
16 # OLE interface: OLE=yes (usually with GUI=yes)
|
|
17 # Multibyte support: MBYTE=yes
|
|
18 # IME support: IME=yes (requires GUI=yes)
|
|
19 # DYNAMIC_IME=[yes or no] (to load the imm32.dll dynamically, default
|
|
20 # is yes)
|
|
21 # Global IME support: GIME=yes (requires GUI=yes)
|
14
|
22 # MzScheme interface: MZSCHEME=[Path to MzScheme directory], MZSCHEME_VER=[version, 205_000, ...]
|
7
|
23 # Perl interface:
|
|
24 # PERL=[Path to Perl directory]
|
|
25 # DYNAMIC_PERL=yes (to load the Perl DLL dynamically)
|
|
26 # PERL_VER=[Perl version, in the form 55 (5.005), 56 (5.6.x), etc] (default is 56)
|
|
27 # Python interface:
|
|
28 # PYTHON=[Path to Python directory]
|
|
29 # DYNAMIC_PYTHON=yes (to load the Python DLL dynamically)
|
|
30 # PYTHON_VER=[Python version, eg 15, 20] (default is 22)
|
|
31 # Ruby interface:
|
|
32 # RUBY=[Path to Ruby directory]
|
|
33 # DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically)
|
|
34 # RUBY_VER=[Ruby version, eg 16, 17] (default is 18)
|
|
35 # RUBY_VER_LONG=[Ruby version, eg 1.6, 1.7] (default is 1.8)
|
|
36 # You must set RUBY_VER_LONG when change RUBY_VER.
|
|
37 # Tcl interface:
|
|
38 # TCL=[Path to Tcl directory]
|
|
39 # DYNAMIC_TCL=yes (to load the Tcl DLL dynamically)
|
|
40 # TCL_VER=[Tcl version, e.g. 80, 83] (default is 83)
|
|
41 # TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.3)
|
|
42 # You must set TCL_VER_LONG when you set TCL_VER.
|
|
43 # Debug version: DEBUG=yes
|
|
44 # Mapfile: MAP=[no, yes or lines] (default is yes)
|
|
45 # no: Don't write a mapfile.
|
|
46 # yes: Write a normal mapfile.
|
|
47 # lines: Write a mapfile with line numbers (only for VC6 and later)
|
|
48 # SNiFF+ interface: SNIFF=yes
|
|
49 # Cscope support: CSCOPE=yes
|
|
50 # Iconv library support (always dynamically loaded):
|
|
51 # ICONV=[yes or no] (default is yes)
|
|
52 # Intl library support (always dynamically loaded):
|
|
53 # GETTEXT=[yes or no] (default is yes)
|
|
54 # See http://sourceforge.net/projects/gettext/
|
|
55 # PostScript printing: POSTSCRIPT=yes (default is no)
|
47
|
56 # Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG)
|
7
|
57 # Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400)
|
47
|
58 # Processor Version: CPUNR=[i386, i486, i586, i686, P4] (default is i386)
|
7
|
59 # Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED)
|
|
60 # Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes)
|
12
|
61 # Netbeans Debugging Support: NBDEBUG=[yes or no] (default is no)
|
7
|
62 # XPM Image Support: XPM=[path to XPM directory]
|
|
63 #
|
|
64 # You can combine any of these interfaces
|
|
65 #
|
|
66 # Example: To build the non-debug, GUI version with Perl interface:
|
|
67 # nmake -f Make_mvc.mak GUI=yes PERL=C:\Perl
|
|
68 #
|
|
69 # To build using Borland C++, use Make_bc3.mak or Make_bc5.mak.
|
|
70 #
|
|
71 # DEBUG with Make_mvc.mak and Make_dvc.mak:
|
|
72 # This makefile gives a fineness of control which is not supported in
|
|
73 # Visual C++ configuration files. Therefore, debugging requires a bit of
|
|
74 # extra work.
|
|
75 # Make_dvc.mak is a Visual C++ project to access that support.
|
|
76 # To use Make_dvc.mak:
|
|
77 # 1) Build Vim with Make_mvc.mak.
|
|
78 # Use a "DEBUG=yes" argument to build Vim with debug support.
|
|
79 # E.g. the following builds gvimd.exe:
|
|
80 # nmake -f Make_mvc.mak debug=yes gui=yes
|
|
81 # 2) Use MS Devstudio and set it up to allow that file to be debugged:
|
|
82 # i) Pass Make_dvc.mak to the IDE.
|
|
83 # Use the "open workspace" menu entry to load Make_dvc.mak.
|
|
84 # Alternatively, from the command line:
|
|
85 # msdev /nologo Make_dvc.mak
|
|
86 # Note: Make_dvc.mak is in VC4.0 format. Later VC versions see
|
|
87 # this and offer to convert it to their own format. Accept that.
|
|
88 # It creates a file called Make_dvc.dsw which can then be used
|
|
89 # for further operations. E.g.
|
|
90 # msdev /nologo Make_dvc.dsw
|
|
91 # ii) Set the built executable for debugging:
|
|
92 # a) Alt+F7/Debug takes you to the Debug dialog.
|
|
93 # b) Fill "Executable for debug session". e.g. gvimd.exe
|
|
94 # c) Fill "Program arguments". e.g. -R dosinst.c
|
|
95 # d) Complete the dialog
|
|
96 # 3) You can now debug the executable you built with Make_mvc.mak
|
|
97 #
|
|
98 # Note: Make_dvc.mak builds vimrun.exe, because it must build something
|
|
99 # to be a valid makefile..
|
|
100
|
|
101 ### See feature.h for a list of optionals.
|
|
102 # If you want to build some optional features without modifying the source,
|
|
103 # you can set DEFINES on the command line, e.g.,
|
|
104 # nmake -f makefile.mvc "DEFINES=-DEMACS_TAGS"
|
|
105
|
|
106 # Build on both Windows NT and Windows 95
|
|
107
|
|
108 TARGETOS = BOTH
|
|
109
|
|
110 # Select one of eight object code directories, depends on GUI, OLE and DEBUG.
|
|
111 # If you change something else, do "make clean" first!
|
|
112 !if "$(GUI)" == "yes"
|
|
113 OBJDIR = .\ObjG
|
|
114 !else
|
|
115 OBJDIR = .\ObjC
|
|
116 !endif
|
|
117 !if "$(OLE)" == "yes"
|
|
118 OBJDIR = $(OBJDIR)O
|
|
119 !endif
|
14
|
120 !ifdef MZSCHEME
|
|
121 OBJDIR = $(OBJDIR)Z
|
|
122 !endif
|
7
|
123 !if "$(DEBUG)" == "yes"
|
|
124 OBJDIR = $(OBJDIR)d
|
|
125 !endif
|
|
126
|
|
127 # ntwin32.mak requires that CPU be set appropriately
|
|
128
|
|
129 !ifdef PROCESSOR_ARCHITECTURE
|
|
130 # We're on Windows NT or using VC 6
|
|
131 CPU = $(PROCESSOR_ARCHITECTURE)
|
|
132 ! if "$(CPU)" == "x86"
|
|
133 CPU = i386
|
|
134 ! endif
|
|
135 !else # !PROCESSOR_ARCHITECTURE
|
|
136 # We're on Windows 95
|
|
137 CPU = i386
|
|
138 !endif # !PROCESSOR_ARCHITECTURE
|
|
139
|
|
140
|
|
141 # Build a retail version by default
|
|
142
|
|
143 !if "$(DEBUG)" != "yes"
|
|
144 NODEBUG = 1
|
|
145 !else
|
|
146 MAKEFLAGS_GVIMEXT = DEBUG=yes
|
|
147 !endif
|
|
148
|
|
149
|
|
150 # Build a multithreaded version for the Windows 95 dead keys hack
|
|
151 # Commented out because it doesn't work.
|
|
152 # MULTITHREADED = 1
|
|
153
|
|
154
|
|
155 # Get all sorts of useful, standard macros from the SDK. (Note that
|
|
156 # MSVC 2.2 does not install <ntwin32.mak> in the \msvc20\include
|
|
157 # directory, but you can find it in \msvc20\include on the CD-ROM.
|
|
158 # You may also need <win32.mak> from the same place.)
|
|
159
|
|
160 !include <ntwin32.mak>
|
|
161
|
|
162
|
|
163 #>>>>> path of the compiler and linker; name of include and lib directories
|
|
164 # PATH = c:\msvc20\bin;$(PATH)
|
|
165 # INCLUDE = c:\msvc20\include
|
|
166 # LIB = c:\msvc20\lib
|
|
167
|
|
168 !ifndef CTAGS
|
|
169 CTAGS = ctags
|
|
170 !endif
|
|
171
|
|
172 !if "$(SNIFF)" == "yes"
|
|
173 # SNIFF - Include support for SNiFF+.
|
|
174 SNIFF_INCL = if_sniff.h
|
|
175 SNIFF_OBJ = $(OBJDIR)/if_sniff.obj
|
|
176 SNIFF_LIB = shell32.lib
|
|
177 SNIFF_DEFS = -DFEAT_SNIFF
|
|
178 # The SNiFF integration needs multithreaded libraries!
|
|
179 MULTITHREADED = yes
|
|
180 !endif
|
|
181
|
|
182 !ifndef CSCOPE
|
|
183 CSCOPE = yes
|
|
184 !endif
|
|
185
|
|
186 !if "$(CSCOPE)" == "yes"
|
|
187 # CSCOPE - Include support for Cscope
|
|
188 CSCOPE_INCL = if_cscope.h
|
|
189 CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj
|
|
190 CSCOPE_DEFS = -DFEAT_CSCOPE
|
|
191 !endif
|
|
192
|
|
193 !ifndef NETBEANS
|
|
194 NETBEANS = $(GUI)
|
|
195 !endif
|
|
196
|
12
|
197 # Only allow NETBEANS and XPM for a GUI build.
|
|
198 !if "$(GUI)" == "yes"
|
7
|
199 !if "$(NETBEANS)" == "yes"
|
|
200 # NETBEANS - Include support for Netbeans integration
|
|
201 NETBEANS_PRO = proto/netbeans.pro
|
|
202 NETBEANS_OBJ = $(OBJDIR)/netbeans.obj $(OBJDIR)/gui_beval.obj
|
|
203 NETBEANS_DEFS = -DFEAT_NETBEANS_INTG
|
12
|
204
|
|
205 !if "$(NBDEBUG)" == "yes"
|
7
|
206 NBDEBUG_DEFS = -DNBDEBUG
|
|
207 NBDEBUG_INCL = nbdebug.h
|
|
208 NBDEBUG_SRC = nbdebug.c
|
|
209 !endif
|
|
210 NETBEANS_LIB = WSock32.lib
|
|
211 !endif
|
|
212
|
|
213 !ifdef XPM
|
|
214 # XPM - Include support for XPM signs
|
|
215 # you can get xpm.lib from http://iamphet.nm.ru/xpm or create it yourself
|
|
216 XPM_OBJ = $(OBJDIR)/xpm_w32.obj
|
|
217 XPM_DEFS = -DFEAT_XPM_W32
|
|
218 XPM_LIB = $(XPM)\lib\libXpm.lib
|
|
219 XPM_INC = -I $(XPM)\include
|
|
220 !endif
|
12
|
221 !endif
|
7
|
222
|
|
223 !if defined(USE_MSVCRT)
|
|
224 CVARS = $(cvarsdll)
|
|
225 !elseif defined(MULTITHREADED)
|
|
226 CVARS = $(cvarsmt)
|
|
227 !else
|
|
228 CVARS = $(cvars)
|
|
229 !endif
|
|
230
|
|
231 # need advapi32.lib for GetUserName()
|
|
232 # need shell32.lib for ExtractIcon()
|
|
233 # gdi32.lib and comdlg32.lib for printing support
|
|
234 # ole32.lib and uuid.lib are needed for FEAT_SHORTCUT
|
|
235 CON_LIB = advapi32.lib shell32.lib gdi32.lib comdlg32.lib ole32.lib uuid.lib
|
|
236 !if "$(VC6)" == "yes"
|
|
237 CON_LIB = $(CON_LIB) /DELAYLOAD:comdlg32.dll /DELAYLOAD:ole32.dll DelayImp.lib
|
|
238 !endif
|
|
239
|
|
240 ### Set the default $(WINVER) to make it work with VC++7.0 (VS.NET)
|
|
241 # When set to 0x0500 ":browse" stops working.
|
|
242 !ifndef WINVER
|
|
243 WINVER = 0x0400
|
|
244 !endif
|
|
245
|
|
246 # If you have a fixed directory for $VIM or $VIMRUNTIME, other than the normal
|
|
247 # default, use these lines.
|
|
248 #VIMRCLOC = somewhere
|
|
249 #VIMRUNTIMEDIR = somewhere
|
|
250
|
|
251 CFLAGS = -c /W3 /nologo $(CVARS) -I. -Iproto -DHAVE_PATHDEF -DWIN32 \
|
|
252 $(SNIFF_DEFS) $(CSCOPE_DEFS) $(NETBEANS_DEFS) \
|
|
253 $(NBDEBUG_DEFS) $(XPM_DEFS) \
|
|
254 $(DEFINES) -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER)
|
|
255
|
|
256 #>>>>> end of choices
|
|
257 ###########################################################################
|
|
258
|
|
259 !ifdef OS
|
|
260 OS_TYPE = winnt
|
|
261 DEL_TREE = rmdir /s /q
|
|
262 !else
|
|
263 OS_TYPE = win95
|
|
264 DEL_TREE = deltree /y
|
|
265 !endif
|
|
266
|
|
267 INTDIR=$(OBJDIR)
|
|
268 OUTDIR=$(OBJDIR)
|
|
269
|
|
270 # Convert processor ID to MVC-compatible number
|
|
271 !if "$(CPUNR)" == "i386"
|
|
272 CPUARG = /G3
|
|
273 !elseif "$(CPUNR)" == "i486"
|
|
274 CPUARG = /G4
|
|
275 !elseif "$(CPUNR)" == "i586"
|
|
276 CPUARG = /G5
|
|
277 !elseif "$(CPUNR)" == "i686"
|
|
278 CPUARG = /G6
|
47
|
279 !elseif "$(CPUNR)" == "P4"
|
|
280 CPUARG = /G7 /arch:SSE2
|
7
|
281 !else
|
|
282 CPUARG =
|
|
283 !endif
|
|
284
|
|
285 !ifdef NODEBUG
|
|
286 VIM = vim
|
|
287 !if "$(OPTIMIZE)" == "SPACE"
|
|
288 OPTFLAG = /O1
|
|
289 !elseif "$(OPTIMIZE)" == "SPEED"
|
|
290 OPTFLAG = /O2
|
|
291 !else # MAXSPEED
|
|
292 OPTFLAG = /Ox
|
|
293 !endif
|
47
|
294 CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG)
|
7
|
295 RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG
|
47
|
296 PDB =
|
|
297 LINK_PDB =
|
7
|
298 ! ifdef USE_MSVCRT
|
|
299 CFLAGS = $(CFLAGS) -MD
|
|
300 LIBC = msvcrt.lib
|
|
301 ! elseif defined(MULTITHREADED)
|
|
302 LIBC = libcmt.lib
|
|
303 ! else
|
|
304 LIBC = libc.lib
|
|
305 ! endif
|
|
306 !else # DEBUG
|
|
307 VIM = vimd
|
|
308 # MSVC 4.1
|
|
309 PDB = /Fd$(OUTDIR)/
|
|
310 LINK_PDB = /PDB:$(OUTDIR)/
|
|
311 # MSVC 2.2
|
|
312 # PDB = /Fd$(OUTDIR)/vim.pdb
|
|
313 # LINK_PDB = /PDB:$(OUTDIR)/vim.pdb
|
|
314 CFLAGS = $(CFLAGS) -D_DEBUG -DDEBUG /Zi /Od
|
|
315 RCFLAGS = $(rcflags) $(rcvars) -D_DEBUG -DDEBUG
|
|
316 # The /fixed:no is needed for Quantify. Assume not 4.? as unsupported in VC4.0.
|
|
317 ! if "$(_NMAKE_VER)" == ""
|
|
318 LIBC =
|
|
319 ! else
|
|
320 LIBC = /fixed:no
|
|
321 ! endif
|
|
322
|
|
323 ! ifndef USE_MSVCRT
|
|
324 LIBC = $(LIBC) libcd.lib
|
|
325 ! else
|
|
326 CFLAGS = $(CFLAGS) -MDd
|
|
327 LIBC = $(LIBC) msvcrtd.lib
|
|
328 ! endif
|
|
329 !endif # DEBUG
|
|
330
|
|
331 INCL = vim.h os_win32.h ascii.h feature.h globals.h keymap.h macros.h \
|
|
332 proto.h option.h structs.h term.h $(SNIFF_INCL) $(CSCOPE_INCL) \
|
|
333 $(NBDEBUG_INCL)
|
|
334
|
|
335 OBJ = \
|
|
336 $(OUTDIR)\buffer.obj \
|
|
337 $(OUTDIR)\charset.obj \
|
|
338 $(OUTDIR)\diff.obj \
|
|
339 $(OUTDIR)\digraph.obj \
|
|
340 $(OUTDIR)\edit.obj \
|
|
341 $(OUTDIR)\eval.obj \
|
|
342 $(OUTDIR)\ex_cmds.obj \
|
|
343 $(OUTDIR)\ex_cmds2.obj \
|
|
344 $(OUTDIR)\ex_docmd.obj \
|
|
345 $(OUTDIR)\ex_eval.obj \
|
|
346 $(OUTDIR)\ex_getln.obj \
|
|
347 $(OUTDIR)\fileio.obj \
|
|
348 $(OUTDIR)\fold.obj \
|
|
349 $(OUTDIR)\getchar.obj \
|
|
350 $(OUTDIR)\main.obj \
|
|
351 $(OUTDIR)\mark.obj \
|
|
352 $(OUTDIR)\mbyte.obj \
|
|
353 $(OUTDIR)\memfile.obj \
|
|
354 $(OUTDIR)\memline.obj \
|
|
355 $(OUTDIR)\menu.obj \
|
|
356 $(OUTDIR)\message.obj \
|
|
357 $(OUTDIR)\misc1.obj \
|
|
358 $(OUTDIR)\misc2.obj \
|
|
359 $(OUTDIR)\move.obj \
|
|
360 $(OUTDIR)\normal.obj \
|
|
361 $(OUTDIR)\ops.obj \
|
|
362 $(OUTDIR)\option.obj \
|
|
363 $(OUTDIR)\os_mswin.obj \
|
|
364 $(OUTDIR)\os_win32.obj \
|
|
365 $(OUTDIR)\pathdef.obj \
|
|
366 $(OUTDIR)\quickfix.obj \
|
|
367 $(OUTDIR)\regexp.obj \
|
|
368 $(OUTDIR)\screen.obj \
|
|
369 $(OUTDIR)\search.obj \
|
|
370 $(OUTDIR)\syntax.obj \
|
|
371 $(OUTDIR)\tag.obj \
|
|
372 $(OUTDIR)\term.obj \
|
|
373 $(OUTDIR)\ui.obj \
|
|
374 $(OUTDIR)\undo.obj \
|
|
375 $(OUTDIR)\window.obj \
|
|
376 $(OUTDIR)\vim.res
|
|
377
|
|
378 !if "$(OLE)" == "yes"
|
|
379 CFLAGS = $(CFLAGS) -DFEAT_OLE
|
|
380 RCFLAGS = $(RCFLAGS) -DFEAT_OLE
|
|
381 OLE_OBJ = $(OUTDIR)\if_ole.obj
|
|
382 OLE_IDL = if_ole.idl
|
|
383 OLE_LIB = oleaut32.lib
|
|
384 !endif
|
|
385
|
|
386 !if "$(IME)" == "yes"
|
|
387 CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME
|
|
388 !ifndef DYNAMIC_IME
|
|
389 DYNAMIC_IME = yes
|
|
390 !endif
|
|
391 !if "$(DYNAMIC_IME)" == "yes"
|
|
392 CFLAGS = $(CFLAGS) -DDYNAMIC_IME
|
|
393 !else
|
|
394 IME_LIB = imm32.lib
|
|
395 !endif
|
|
396 !endif
|
|
397
|
|
398 !if "$(GIME)" == "yes"
|
|
399 CFLAGS = $(CFLAGS) -DGLOBAL_IME
|
|
400 OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj
|
|
401 MBYTE = yes
|
|
402 !endif
|
|
403
|
|
404 !if "$(MBYTE)" == "yes"
|
|
405 CFLAGS = $(CFLAGS) -DFEAT_MBYTE
|
|
406 !endif
|
|
407
|
|
408 !if "$(GUI)" == "yes"
|
|
409 SUBSYSTEM = windows
|
|
410 CFLAGS = $(CFLAGS) -DFEAT_GUI_W32
|
|
411 RCFLAGS = $(RCFLAGS) -DFEAT_GUI_W32
|
|
412 VIM = g$(VIM)
|
|
413 GUI_INCL = \
|
|
414 gui.h \
|
|
415 regexp.h \
|
|
416 ascii.h \
|
|
417 ex_cmds.h \
|
|
418 farsi.h \
|
|
419 feature.h \
|
|
420 globals.h \
|
|
421 keymap.h \
|
|
422 macros.h \
|
|
423 option.h \
|
|
424 os_dos.h \
|
|
425 os_win32.h
|
|
426 GUI_OBJ = \
|
|
427 $(OUTDIR)\gui.obj \
|
|
428 $(OUTDIR)\gui_w32.obj \
|
|
429 $(OUTDIR)\os_w32exe.obj
|
|
430 GUI_LIB = \
|
|
431 oldnames.lib kernel32.lib gdi32.lib $(IME_LIB) \
|
|
432 winspool.lib comctl32.lib advapi32.lib shell32.lib \
|
|
433 /machine:$(CPU) /nodefaultlib
|
|
434 !else
|
|
435 SUBSYSTEM = console
|
|
436 !endif
|
|
437
|
|
438 # iconv.dll library (dynamically loaded)
|
|
439 !ifndef ICONV
|
|
440 ICONV = yes
|
|
441 !endif
|
|
442 !if "$(ICONV)" == "yes"
|
|
443 CFLAGS = $(CFLAGS) -DDYNAMIC_ICONV
|
|
444 !endif
|
|
445
|
|
446 # libintl.dll library
|
|
447 !ifndef GETTEXT
|
|
448 GETTEXT = yes
|
|
449 !endif
|
|
450 !if "$(GETTEXT)" == "yes"
|
|
451 CFLAGS = $(CFLAGS) -DDYNAMIC_GETTEXT
|
|
452 !endif
|
|
453
|
|
454 # TCL interface
|
|
455 !ifdef TCL
|
|
456 !ifndef TCL_VER
|
|
457 TCL_VER = 83
|
|
458 TCL_VER_LONG = 8.3
|
|
459 !endif
|
|
460 !message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)"
|
|
461 !if "$(DYNAMIC_TCL)" == "yes"
|
|
462 !message Tcl DLL will be loaded dynamically
|
|
463 TCL_DLL = tcl$(TCL_VER).dll
|
|
464 CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\"
|
|
465 TCL_OBJ = $(OUTDIR)\if_tcl.obj
|
|
466 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
|
|
467 TCL_LIB = $(TCL)\lib\tclstub$(TCL_VER).lib
|
|
468 !else
|
|
469 CFLAGS = $(CFLAGS) -DFEAT_TCL
|
|
470 TCL_OBJ = $(OUTDIR)\if_tcl.obj
|
|
471 TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
|
|
472 TCL_LIB = $(TCL)\lib\tcl$(TCL_VER)vc.lib
|
|
473 !endif
|
|
474 !endif
|
|
475
|
|
476 # PYTHON interface
|
|
477 !ifdef PYTHON
|
|
478 !ifndef PYTHON_VER
|
|
479 PYTHON_VER = 22
|
|
480 !endif
|
|
481 !message Python requested (version $(PYTHON_VER)) - root dir is "$(PYTHON)"
|
|
482 !if "$(DYNAMIC_PYTHON)" == "yes"
|
|
483 !message Python DLL will be loaded dynamically
|
|
484 !endif
|
|
485 CFLAGS = $(CFLAGS) -DFEAT_PYTHON
|
|
486 PYTHON_OBJ = $(OUTDIR)\if_python.obj
|
|
487 PYTHON_INC = /I "$(PYTHON)\Include" /I "$(PYTHON)\PC"
|
|
488 !if "$(DYNAMIC_PYTHON)" == "yes"
|
|
489 CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\"
|
|
490 PYTHON_LIB = /nodefaultlib:python$(PYTHON_VER).lib
|
|
491 !else
|
|
492 PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib
|
|
493 !endif
|
|
494 !endif
|
|
495
|
14
|
496 # MzScheme interface
|
|
497 !ifdef MZSCHEME
|
|
498 !message MzScheme requested - root dir is "$(MZSCHEME)"
|
|
499 !ifndef MZSCHEME_VER
|
|
500 MZSCHEME_VER = 205_000
|
|
501 !endif
|
|
502 CFLAGS = $(CFLAGS) -DFEAT_MZSCHEME -I $(MZSCHEME)\include
|
|
503 MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj
|
|
504 MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib $(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib
|
|
505 !endif
|
|
506
|
7
|
507 # Perl interface
|
|
508 !ifdef PERL
|
|
509 !ifndef PERL_VER
|
|
510 PERL_VER = 56
|
|
511 !endif
|
|
512 !message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)"
|
|
513 !if "$(DYNAMIC_PERL)" == "yes"
|
|
514 !if $(PERL_VER) >= 56
|
|
515 !message Perl DLL will be loaded dynamically
|
|
516 !else
|
|
517 !message Dynamic loading is not supported for Perl versions earlier than 5.6.0
|
|
518 !message Reverting to static loading...
|
|
519 !undef DYNAMIC_PERL
|
|
520 !endif
|
|
521 !endif
|
|
522
|
|
523 # Is Perl installed in architecture-specific directories?
|
|
524 !if exist($(PERL)\Bin\MSWin32-x86)
|
|
525 PERL_ARCH = \MSWin32-x86
|
|
526 !endif
|
|
527
|
|
528 PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core
|
|
529
|
|
530 # Version-dependent stuff
|
|
531 !if $(PERL_VER) == 55
|
|
532 PERL_LIB = $(PERL_INCDIR)\perl.lib
|
|
533 !else
|
|
534 PERL_DLL = perl$(PERL_VER).dll
|
|
535 PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib
|
|
536 !endif
|
|
537
|
|
538 CFLAGS = $(CFLAGS) -DFEAT_PERL
|
|
539
|
|
540 # Do we want to load Perl dynamically?
|
|
541 !if "$(DYNAMIC_PERL)" == "yes"
|
|
542 CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\"
|
|
543 !undef PERL_LIB
|
|
544 !endif
|
|
545
|
|
546 PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl
|
|
547 PERL_INC = /I $(PERL_INCDIR)
|
|
548 PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj
|
|
549 XSUBPP = $(PERL)\lib\ExtUtils\xsubpp
|
|
550 XSUBPP_TYPEMAP = $(PERL)\lib\ExtUtils\typemap
|
|
551
|
|
552 !endif
|
|
553
|
|
554 #
|
|
555 # Support Ruby interface
|
|
556 #
|
|
557 !ifdef RUBY
|
|
558 # Set default value
|
|
559 !ifndef RUBY_VER
|
|
560 RUBY_VER = 18
|
|
561 !endif
|
|
562 !ifndef RUBY_VER_LONG
|
|
563 RUBY_VER_LONG = 1.8
|
|
564 !endif
|
|
565
|
|
566 !if $(RUBY_VER) >= 18
|
|
567 !ifndef RUBY_PLATFORM
|
|
568 RUBY_PLATFORM = i386-mswin32
|
|
569 !endif
|
|
570 !ifndef RUBY_INSTALL_NAME
|
|
571 RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_VER)
|
|
572 !endif
|
|
573 !else
|
|
574 !ifndef RUBY_PLATFORM
|
|
575 RUBY_PLATFORM = i586-mswin32
|
|
576 !endif
|
|
577 !ifndef RUBY_INSTALL_NAME
|
|
578 RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_VER)
|
|
579 !endif
|
|
580 !endif # $(RUBY_VER) >= 18
|
|
581
|
|
582 !message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)"
|
|
583 CFLAGS = $(CFLAGS) -DFEAT_RUBY
|
|
584 RUBY_OBJ = $(OUTDIR)\if_ruby.obj
|
|
585 RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)"
|
|
586 RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib
|
|
587 # Do we want to load Ruby dynamically?
|
|
588 !if "$(DYNAMIC_RUBY)" == "yes"
|
|
589 !message Ruby DLL will be loaded dynamically
|
|
590 CFLAGS = $(CFLAGS) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\" -DDYNAMIC_RUBY_VER=$(RUBY_VER)
|
|
591 !undef RUBY_LIB
|
|
592 !endif
|
|
593 !endif # RUBY
|
|
594
|
|
595 #
|
|
596 # Support PostScript printing
|
|
597 #
|
|
598 !if "$(POSTSCRIPT)" == "yes"
|
|
599 CFLAGS = $(CFLAGS) -DMSWINPS
|
|
600 !endif # POSTSCRIPT
|
|
601
|
|
602 #
|
|
603 # FEATURES: TINY, SMALL, NORMAL, BIG or HUGE
|
|
604 #
|
|
605 !if "$(FEATURES)"==""
|
|
606 FEATURES = BIG
|
|
607 !endif
|
|
608 CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES)
|
|
609
|
|
610 #
|
|
611 # End extra featuare include
|
|
612 #
|
|
613 !message
|
|
614
|
|
615 conflags = /nologo /subsystem:$(SUBSYSTEM) /incremental:no
|
|
616
|
|
617 !IF "$(MAP)" == "yes"
|
|
618 # "/map" is for debugging
|
|
619 conflags = $(conflags) /map
|
|
620 !ELSEIF "$(MAP)" == "lines"
|
|
621 # "/mapinfo:lines" is for debugging, only works for VC6 and later
|
|
622 conflags = $(conflags) /map /mapinfo:lines
|
|
623 !ENDIF
|
|
624
|
|
625 LINKARGS1 = $(linkdebug) $(conflags) /nodefaultlib:libc
|
|
626 LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(LIBC) $(OLE_LIB) user32.lib $(SNIFF_LIB) \
|
14
|
627 $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(RUBY_LIB) $(TCL_LIB) \
|
7
|
628 $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB)
|
|
629
|
|
630 all: $(VIM) vimrun.exe install.exe uninstal.exe xxd/xxd.exe GvimExt/gvimext.dll
|
|
631
|
14
|
632 $(VIM): $(OUTDIR) $(OBJ) $(GUI_OBJ) $(OLE_OBJ) $(OLE_IDL) $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(RUBY_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) version.c version.h
|
7
|
633 $(CC) $(CFLAGS) version.c /Fo$(OUTDIR)/version.obj $(PDB)
|
|
634 $(link) $(LINKARGS1) -out:$*.exe $(OBJ) $(GUI_OBJ) $(OLE_OBJ) \
|
14
|
635 $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(RUBY_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \
|
7
|
636 $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) \
|
|
637 $(OUTDIR)\version.obj $(LINKARGS2)
|
|
638
|
|
639 $(VIM).exe: $(VIM)
|
|
640
|
|
641 $(OUTDIR):
|
39
|
642 if not exist $(OUTDIR)/nul mkdir $(OUTDIR)
|
7
|
643
|
|
644 install.exe: dosinst.c
|
|
645 $(CC) /nologo -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib ole32.lib advapi32.lib uuid.lib
|
|
646 - if exist install.exe del install.exe
|
|
647 ren dosinst.exe install.exe
|
|
648
|
|
649 uninstal.exe: uninstal.c
|
|
650 $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib
|
|
651
|
|
652 vimrun.exe: vimrun.c
|
|
653 $(CC) /nologo -DNDEBUG vimrun.c
|
|
654
|
|
655 xxd/xxd.exe: xxd/xxd.c
|
|
656 cd xxd
|
|
657 $(MAKE) /NOLOGO -f Make_mvc.mak
|
|
658 cd ..
|
|
659
|
|
660 GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
|
|
661 cd GvimExt
|
|
662 $(MAKE) /NOLOGO -f Makefile $(MAKEFLAGS_GVIMEXT)
|
|
663 cd ..
|
|
664
|
|
665
|
|
666 tags: notags
|
|
667 $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro
|
|
668
|
|
669 notags:
|
|
670 - if exist tags del tags
|
|
671
|
|
672 clean:
|
|
673 - $(DEL_TREE) $(OUTDIR) auto
|
|
674 - if exist *.obj del *.obj
|
|
675 - if exist $(VIM).exe del $(VIM).exe
|
|
676 - if exist $(VIM).ilk del $(VIM).ilk
|
|
677 - if exist $(VIM).pdb del $(VIM).pdb
|
|
678 - if exist $(VIM).map del $(VIM).map
|
|
679 - if exist $(VIM).ncb del $(VIM).ncb
|
|
680 - if exist vimrun.exe del vimrun.exe
|
|
681 - if exist install.exe del install.exe
|
|
682 - if exist uninstal.exe del uninstal.exe
|
|
683 - if exist if_perl.c del if_perl.c
|
|
684 - if exist dimm.h del dimm.h
|
|
685 - if exist dimm_i.c del dimm_i.c
|
|
686 - if exist dimm.tlb del dimm.tlb
|
|
687 - if exist dosinst.exe del dosinst.exe
|
|
688 cd xxd
|
|
689 $(MAKE) /NOLOGO -f Make_mvc.mak clean
|
|
690 cd ..
|
|
691 cd GvimExt
|
|
692 $(MAKE) /NOLOGO -f Makefile clean
|
|
693 cd ..
|
|
694 cd GvimExt
|
|
695 $(MAKE) /NOLOGO -f Makefile clean
|
|
696 cd ..
|
|
697 - if exist testdir\*.out del testdir\*.out
|
|
698
|
|
699 test:
|
|
700 cd testdir
|
|
701 $(MAKE) /NOLOGO -f Make_dos.mak win32
|
|
702 cd ..
|
|
703
|
47
|
704 testclean:
|
|
705 cd testdir
|
|
706 $(MAKE) /NOLOGO -f Make_dos.mak clean
|
|
707 cd ..
|
|
708
|
7
|
709 ###########################################################################
|
|
710
|
|
711 # Create a default rule for transforming .c files to .obj files in $(OUTDIR)
|
|
712 # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
|
|
713 !IF "$(_NMAKE_VER)" == ""
|
|
714 .c{$(OUTDIR)/}.obj:
|
|
715 !ELSE
|
|
716 .c{$(OUTDIR)/}.obj::
|
|
717 !ENDIF
|
|
718 $(CC) $(CFLAGS) /Fo$(OUTDIR)/ $(PDB) $<
|
|
719
|
|
720 # Create a default rule for transforming .cpp files to .obj files in $(OUTDIR)
|
|
721 # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
|
|
722 !IF "$(_NMAKE_VER)" == ""
|
|
723 .cpp{$(OUTDIR)/}.obj:
|
|
724 !ELSE
|
|
725 .cpp{$(OUTDIR)/}.obj::
|
|
726 !ENDIF
|
|
727 $(CC) $(CFLAGS) /Fo$(OUTDIR)/ $(PDB) $<
|
|
728
|
|
729 $(OUTDIR)/buffer.obj: $(OUTDIR) buffer.c $(INCL)
|
|
730
|
|
731 $(OUTDIR)/charset.obj: $(OUTDIR) charset.c $(INCL)
|
|
732
|
|
733 $(OUTDIR)/diff.obj: $(OUTDIR) diff.c $(INCL)
|
|
734
|
|
735 $(OUTDIR)/digraph.obj: $(OUTDIR) digraph.c $(INCL)
|
|
736
|
|
737 $(OUTDIR)/edit.obj: $(OUTDIR) edit.c $(INCL)
|
|
738
|
|
739 $(OUTDIR)/eval.obj: $(OUTDIR) eval.c $(INCL)
|
|
740
|
|
741 $(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL)
|
|
742
|
|
743 $(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL)
|
|
744
|
|
745 $(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmds.h
|
|
746
|
|
747 $(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) ex_cmds.h
|
|
748
|
|
749 $(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL)
|
|
750
|
|
751 $(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL)
|
|
752
|
|
753 $(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL)
|
|
754
|
|
755 $(OUTDIR)/getchar.obj: $(OUTDIR) getchar.c $(INCL)
|
|
756
|
|
757 $(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL)
|
|
758
|
|
759 $(OUTDIR)/gui_w32.obj: $(OUTDIR) gui_w32.c gui_w48.c $(INCL) $(GUI_INCL)
|
|
760
|
|
761 $(OUTDIR)/if_cscope.obj: $(OUTDIR) if_cscope.c $(INCL)
|
|
762
|
|
763 if_perl.c : if_perl.xs typemap
|
|
764 $(PERL_EXE) $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) -typemap typemap if_perl.xs > if_perl.c
|
|
765
|
|
766 $(OUTDIR)/if_perl.obj: $(OUTDIR) if_perl.c $(INCL)
|
|
767 $(CC) $(CFLAGS) $(PERL_INC) if_perl.c /Fo$(OUTDIR)/if_perl.obj $(PDB)
|
|
768
|
|
769 $(OUTDIR)/if_perlsfio.obj: $(OUTDIR) if_perlsfio.c $(INCL)
|
|
770 $(CC) $(CFLAGS) $(PERL_INC) if_perlsfio.c /Fo$(OUTDIR)/if_perlsfio.obj $(PDB)
|
|
771
|
14
|
772 $(OUTDIR)/if_mzsch.obj: $(OUTDIR) if_mzsch.c $(INCL)
|
|
773 $(CC) $(CFLAGS) $(PERL_INC) if_mzsch.c /Fo$(OUTDIR)/if_mzsch.obj $(PDB) -DMZSCHEME_COLLECTS=\"$(MZSCHEME:\=\\)\\collects\"
|
|
774
|
7
|
775 $(OUTDIR)/if_python.obj: $(OUTDIR) if_python.c $(INCL)
|
|
776 $(CC) $(CFLAGS) $(PYTHON_INC) if_python.c /Fo$(OUTDIR)/if_python.obj $(PDB)
|
|
777
|
|
778 $(OUTDIR)/if_ole.obj: $(OUTDIR) if_ole.cpp $(INCL) if_ole.h
|
|
779
|
|
780 $(OUTDIR)/if_ruby.obj: $(OUTDIR) if_ruby.c $(INCL)
|
|
781 $(CC) $(CFLAGS) $(RUBY_INC) if_ruby.c /Fo$(OUTDIR)/if_ruby.obj $(PDB)
|
|
782
|
|
783 $(OUTDIR)/if_sniff.obj: $(OUTDIR) if_sniff.c $(INCL)
|
|
784 $(CC) $(CFLAGS) if_sniff.c /Fo$(OUTDIR)/if_sniff.obj $(PDB)
|
|
785
|
|
786 $(OUTDIR)/if_tcl.obj: $(OUTDIR) if_tcl.c $(INCL)
|
|
787 $(CC) $(CFLAGS) $(TCL_INC) if_tcl.c /Fo$(OUTDIR)/if_tcl.obj $(PDB)
|
|
788
|
|
789 $(OUTDIR)/main.obj: $(OUTDIR) main.c $(INCL)
|
|
790
|
|
791 $(OUTDIR)/mark.obj: $(OUTDIR) mark.c $(INCL)
|
|
792
|
|
793 $(OUTDIR)/memfile.obj: $(OUTDIR) memfile.c $(INCL)
|
|
794
|
|
795 $(OUTDIR)/memline.obj: $(OUTDIR) memline.c $(INCL)
|
|
796
|
|
797 $(OUTDIR)/menu.obj: $(OUTDIR) menu.c $(INCL)
|
|
798
|
|
799 $(OUTDIR)/message.obj: $(OUTDIR) message.c $(INCL)
|
|
800
|
|
801 $(OUTDIR)/misc1.obj: $(OUTDIR) misc1.c $(INCL)
|
|
802
|
|
803 $(OUTDIR)/misc2.obj: $(OUTDIR) misc2.c $(INCL)
|
|
804
|
|
805 $(OUTDIR)/move.obj: $(OUTDIR) move.c $(INCL)
|
|
806
|
|
807 $(OUTDIR)/mbyte.obj: $(OUTDIR) mbyte.c $(INCL)
|
|
808
|
|
809 $(OUTDIR)/netbeans.obj: $(OUTDIR) netbeans.c $(NBDEBUG_SRC) $(INCL)
|
|
810
|
|
811 $(OUTDIR)/normal.obj: $(OUTDIR) normal.c $(INCL)
|
|
812
|
|
813 $(OUTDIR)/option.obj: $(OUTDIR) option.c $(INCL)
|
|
814
|
|
815 $(OUTDIR)/ops.obj: $(OUTDIR) ops.c $(INCL)
|
|
816
|
|
817 $(OUTDIR)/os_mswin.obj: $(OUTDIR) os_mswin.c $(INCL)
|
|
818
|
|
819 $(OUTDIR)/os_win32.obj: $(OUTDIR) os_win32.c $(INCL) os_win32.h
|
|
820
|
|
821 $(OUTDIR)/os_w32exe.obj: $(OUTDIR) os_w32exe.c $(INCL)
|
|
822
|
|
823 $(OUTDIR)/pathdef.obj: $(OUTDIR) auto/pathdef.c $(INCL)
|
|
824 $(CC) $(CFLAGS) auto/pathdef.c /Fo$(OUTDIR)/pathdef.obj $(PDB)
|
|
825
|
|
826 $(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL)
|
|
827
|
|
828 $(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c $(INCL)
|
|
829
|
|
830 $(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL)
|
|
831
|
|
832 $(OUTDIR)/search.obj: $(OUTDIR) search.c $(INCL)
|
|
833
|
|
834 $(OUTDIR)/syntax.obj: $(OUTDIR) syntax.c $(INCL)
|
|
835
|
|
836 $(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL)
|
|
837
|
|
838 $(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL)
|
|
839
|
|
840 $(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL)
|
|
841
|
|
842 $(OUTDIR)/undo.obj: $(OUTDIR) undo.c $(INCL)
|
|
843
|
|
844 $(OUTDIR)/window.obj: $(OUTDIR) window.c $(INCL)
|
|
845
|
|
846 $(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c
|
|
847 $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c /Fo$(OUTDIR)/xpm_w32.obj $(PDB)
|
|
848
|
|
849 $(OUTDIR)/vim.res: $(OUTDIR) vim.rc version.h tools.bmp tearoff.bmp vim.ico vim_error.ico vim_alert.ico vim_info.ico vim_quest.ico
|
|
850 $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc
|
|
851
|
|
852 iid_ole.c if_ole.h vim.tlb: if_ole.idl $(INTDIR) $(OUTDIR)
|
|
853 midl /nologo /proxy nul /iid iid_ole.c /tlb vim.tlb /header if_ole.h if_ole.idl
|
|
854
|
|
855 dimm.h dimm_i.c: dimm.idl
|
|
856 midl /nologo /proxy nul dimm.idl
|
|
857
|
|
858 $(OUTDIR)/dimm_i.obj: $(OUTDIR) dimm_i.c $(INCL)
|
|
859
|
|
860 $(OUTDIR)/glbl_ime.obj: $(OUTDIR) glbl_ime.cpp dimm.h $(INCL)
|
|
861
|
19
|
862 # $CFLAGS may contain backslashes and double quotes, escape them both.
|
|
863 E0_CFLAGS = $(CFLAGS:\=\\)
|
|
864 E_CFLAGS = $(E0_CFLAGS:"=\")
|
|
865
|
7
|
866 auto/pathdef.c: auto
|
|
867 @echo creating auto/pathdef.c
|
|
868 @echo /* pathdef.c */ > auto\pathdef.c
|
|
869 @echo #include "vim.h" >> auto\pathdef.c
|
|
870 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; >> auto\pathdef.c
|
|
871 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; >> auto\pathdef.c
|
19
|
872 @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> auto\pathdef.c
|
7
|
873 @echo char_u *all_lflags = (char_u *)"$(link:\=\\) $(LINKARGS1:\=\\) $(LINKARGS2:\=\\)"; >> auto\pathdef.c
|
|
874 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> auto\pathdef.c
|
|
875 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> auto\pathdef.c
|
|
876
|
|
877 auto:
|
|
878 if not exist auto/nul mkdir auto
|
|
879
|
|
880 # End Custom Build
|
|
881 proto.h: \
|
|
882 proto/buffer.pro \
|
|
883 proto/charset.pro \
|
|
884 proto/diff.pro \
|
|
885 proto/digraph.pro \
|
|
886 proto/edit.pro \
|
|
887 proto/eval.pro \
|
|
888 proto/ex_cmds.pro \
|
|
889 proto/ex_cmds2.pro \
|
|
890 proto/ex_docmd.pro \
|
|
891 proto/ex_eval.pro \
|
|
892 proto/ex_getln.pro \
|
|
893 proto/fileio.pro \
|
|
894 proto/getchar.pro \
|
|
895 proto/main.pro \
|
|
896 proto/mark.pro \
|
|
897 proto/memfile.pro \
|
|
898 proto/memline.pro \
|
|
899 proto/menu.pro \
|
|
900 proto/message.pro \
|
|
901 proto/misc1.pro \
|
|
902 proto/misc2.pro \
|
|
903 proto/move.pro \
|
|
904 proto/mbyte.pro \
|
|
905 proto/normal.pro \
|
|
906 proto/ops.pro \
|
|
907 proto/option.pro \
|
|
908 proto/os_mswin.pro \
|
|
909 proto/os_win32.pro \
|
|
910 proto/quickfix.pro \
|
|
911 proto/regexp.pro \
|
|
912 proto/screen.pro \
|
|
913 proto/search.pro \
|
|
914 proto/syntax.pro \
|
|
915 proto/tag.pro \
|
|
916 proto/term.pro \
|
|
917 proto/ui.pro \
|
|
918 proto/undo.pro \
|
|
919 proto/window.pro \
|
|
920 $(NETBEANS_PRO)
|
|
921
|
|
922 # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0:
|