blob: df71a77782593cbb6ed7db2f33c041ef64fe13d6 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001# 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)
Bram Moolenaar325b7a22004-07-05 15:58:32 +000022# MzScheme interface: MZSCHEME=[Path to MzScheme directory], MZSCHEME_VER=[version, 205_000, ...]
Bram Moolenaar071d4272004-06-13 20:20:40 +000023# 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)
Bram Moolenaar34114692005-01-02 11:28:13 +000056# Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG)
Bram Moolenaar071d4272004-06-13 20:20:40 +000057# Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400)
Bram Moolenaar34114692005-01-02 11:28:13 +000058# Processor Version: CPUNR=[i386, i486, i586, i686, P4] (default is i386)
Bram Moolenaar071d4272004-06-13 20:20:40 +000059# Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED)
60# Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +000061# Netbeans Debugging Support: NBDEBUG=[yes or no] (default is no)
Bram Moolenaar071d4272004-06-13 20:20:40 +000062# 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
108TARGETOS = 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"
113OBJDIR = .\ObjG
114!else
115OBJDIR = .\ObjC
116!endif
117!if "$(OLE)" == "yes"
118OBJDIR = $(OBJDIR)O
119!endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000120!ifdef MZSCHEME
121OBJDIR = $(OBJDIR)Z
122!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123!if "$(DEBUG)" == "yes"
124OBJDIR = $(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
131CPU = $(PROCESSOR_ARCHITECTURE)
132! if "$(CPU)" == "x86"
133CPU = i386
134! endif
135!else # !PROCESSOR_ARCHITECTURE
136# We're on Windows 95
137CPU = i386
138!endif # !PROCESSOR_ARCHITECTURE
139
140
141# Build a retail version by default
142
143!if "$(DEBUG)" != "yes"
144NODEBUG = 1
145!else
146MAKEFLAGS_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
169CTAGS = ctags
170!endif
171
172!if "$(SNIFF)" == "yes"
173# SNIFF - Include support for SNiFF+.
174SNIFF_INCL = if_sniff.h
175SNIFF_OBJ = $(OBJDIR)/if_sniff.obj
176SNIFF_LIB = shell32.lib
177SNIFF_DEFS = -DFEAT_SNIFF
178# The SNiFF integration needs multithreaded libraries!
179MULTITHREADED = yes
180!endif
181
182!ifndef CSCOPE
183CSCOPE = yes
184!endif
185
186!if "$(CSCOPE)" == "yes"
187# CSCOPE - Include support for Cscope
188CSCOPE_INCL = if_cscope.h
189CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj
190CSCOPE_DEFS = -DFEAT_CSCOPE
191!endif
192
193!ifndef NETBEANS
194NETBEANS = $(GUI)
195!endif
196
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000197# Only allow NETBEANS and XPM for a GUI build.
198!if "$(GUI)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199!if "$(NETBEANS)" == "yes"
200# NETBEANS - Include support for Netbeans integration
201NETBEANS_PRO = proto/netbeans.pro
202NETBEANS_OBJ = $(OBJDIR)/netbeans.obj $(OBJDIR)/gui_beval.obj
203NETBEANS_DEFS = -DFEAT_NETBEANS_INTG
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000204
205!if "$(NBDEBUG)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206NBDEBUG_DEFS = -DNBDEBUG
207NBDEBUG_INCL = nbdebug.h
208NBDEBUG_SRC = nbdebug.c
209!endif
210NETBEANS_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
216XPM_OBJ = $(OBJDIR)/xpm_w32.obj
217XPM_DEFS = -DFEAT_XPM_W32
218XPM_LIB = $(XPM)\lib\libXpm.lib
219XPM_INC = -I $(XPM)\include
220!endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000221!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
223!if defined(USE_MSVCRT)
224CVARS = $(cvarsdll)
225!elseif defined(MULTITHREADED)
226CVARS = $(cvarsmt)
227!else
228CVARS = $(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
235CON_LIB = advapi32.lib shell32.lib gdi32.lib comdlg32.lib ole32.lib uuid.lib
236!if "$(VC6)" == "yes"
237CON_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
243WINVER = 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
251CFLAGS = -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
260OS_TYPE = winnt
261DEL_TREE = rmdir /s /q
262!else
263OS_TYPE = win95
264DEL_TREE = deltree /y
265!endif
266
267INTDIR=$(OBJDIR)
268OUTDIR=$(OBJDIR)
269
270# Convert processor ID to MVC-compatible number
271!if "$(CPUNR)" == "i386"
272CPUARG = /G3
273!elseif "$(CPUNR)" == "i486"
274CPUARG = /G4
275!elseif "$(CPUNR)" == "i586"
276CPUARG = /G5
277!elseif "$(CPUNR)" == "i686"
278CPUARG = /G6
Bram Moolenaar34114692005-01-02 11:28:13 +0000279!elseif "$(CPUNR)" == "P4"
280CPUARG = /G7 /arch:SSE2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281!else
282CPUARG =
283!endif
284
285!ifdef NODEBUG
286VIM = vim
287!if "$(OPTIMIZE)" == "SPACE"
288OPTFLAG = /O1
289!elseif "$(OPTIMIZE)" == "SPEED"
290OPTFLAG = /O2
291!else # MAXSPEED
292OPTFLAG = /Ox
293!endif
Bram Moolenaar34114692005-01-02 11:28:13 +0000294CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG
Bram Moolenaar34114692005-01-02 11:28:13 +0000296PDB =
297LINK_PDB =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298! ifdef USE_MSVCRT
299CFLAGS = $(CFLAGS) -MD
300LIBC = msvcrt.lib
301! elseif defined(MULTITHREADED)
302LIBC = libcmt.lib
303! else
304LIBC = libc.lib
305! endif
306!else # DEBUG
307VIM = vimd
308# MSVC 4.1
309PDB = /Fd$(OUTDIR)/
310LINK_PDB = /PDB:$(OUTDIR)/
311# MSVC 2.2
312# PDB = /Fd$(OUTDIR)/vim.pdb
313# LINK_PDB = /PDB:$(OUTDIR)/vim.pdb
314CFLAGS = $(CFLAGS) -D_DEBUG -DDEBUG /Zi /Od
315RCFLAGS = $(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)" == ""
318LIBC =
319! else
320LIBC = /fixed:no
321! endif
322
323! ifndef USE_MSVCRT
324LIBC = $(LIBC) libcd.lib
325! else
326CFLAGS = $(CFLAGS) -MDd
327LIBC = $(LIBC) msvcrtd.lib
328! endif
329!endif # DEBUG
330
331INCL = 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
335OBJ = \
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"
379CFLAGS = $(CFLAGS) -DFEAT_OLE
380RCFLAGS = $(RCFLAGS) -DFEAT_OLE
381OLE_OBJ = $(OUTDIR)\if_ole.obj
382OLE_IDL = if_ole.idl
383OLE_LIB = oleaut32.lib
384!endif
385
386!if "$(IME)" == "yes"
387CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME
388!ifndef DYNAMIC_IME
389DYNAMIC_IME = yes
390!endif
391!if "$(DYNAMIC_IME)" == "yes"
392CFLAGS = $(CFLAGS) -DDYNAMIC_IME
393!else
394IME_LIB = imm32.lib
395!endif
396!endif
397
398!if "$(GIME)" == "yes"
399CFLAGS = $(CFLAGS) -DGLOBAL_IME
400OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj
401MBYTE = yes
402!endif
403
404!if "$(MBYTE)" == "yes"
405CFLAGS = $(CFLAGS) -DFEAT_MBYTE
406!endif
407
408!if "$(GUI)" == "yes"
409SUBSYSTEM = windows
410CFLAGS = $(CFLAGS) -DFEAT_GUI_W32
411RCFLAGS = $(RCFLAGS) -DFEAT_GUI_W32
412VIM = g$(VIM)
413GUI_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
426GUI_OBJ = \
427 $(OUTDIR)\gui.obj \
428 $(OUTDIR)\gui_w32.obj \
429 $(OUTDIR)\os_w32exe.obj
430GUI_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
435SUBSYSTEM = console
436!endif
437
438# iconv.dll library (dynamically loaded)
439!ifndef ICONV
440ICONV = yes
441!endif
442!if "$(ICONV)" == "yes"
443CFLAGS = $(CFLAGS) -DDYNAMIC_ICONV
444!endif
445
446# libintl.dll library
447!ifndef GETTEXT
448GETTEXT = yes
449!endif
450!if "$(GETTEXT)" == "yes"
451CFLAGS = $(CFLAGS) -DDYNAMIC_GETTEXT
452!endif
453
454# TCL interface
455!ifdef TCL
456!ifndef TCL_VER
457TCL_VER = 83
458TCL_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
463TCL_DLL = tcl$(TCL_VER).dll
464CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\"
465TCL_OBJ = $(OUTDIR)\if_tcl.obj
466TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
467TCL_LIB = $(TCL)\lib\tclstub$(TCL_VER).lib
468!else
469CFLAGS = $(CFLAGS) -DFEAT_TCL
470TCL_OBJ = $(OUTDIR)\if_tcl.obj
471TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
472TCL_LIB = $(TCL)\lib\tcl$(TCL_VER)vc.lib
473!endif
474!endif
475
476# PYTHON interface
477!ifdef PYTHON
478!ifndef PYTHON_VER
479PYTHON_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
485CFLAGS = $(CFLAGS) -DFEAT_PYTHON
486PYTHON_OBJ = $(OUTDIR)\if_python.obj
487PYTHON_INC = /I "$(PYTHON)\Include" /I "$(PYTHON)\PC"
488!if "$(DYNAMIC_PYTHON)" == "yes"
489CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\"
490PYTHON_LIB = /nodefaultlib:python$(PYTHON_VER).lib
491!else
492PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib
493!endif
494!endif
495
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000496# MzScheme interface
497!ifdef MZSCHEME
498!message MzScheme requested - root dir is "$(MZSCHEME)"
499!ifndef MZSCHEME_VER
500MZSCHEME_VER = 205_000
501!endif
502CFLAGS = $(CFLAGS) -DFEAT_MZSCHEME -I $(MZSCHEME)\include
503MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj
504MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib $(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib
505!endif
506
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507# Perl interface
508!ifdef PERL
509!ifndef PERL_VER
510PERL_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)
525PERL_ARCH = \MSWin32-x86
526!endif
527
528PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core
529
530# Version-dependent stuff
531!if $(PERL_VER) == 55
532PERL_LIB = $(PERL_INCDIR)\perl.lib
533!else
534PERL_DLL = perl$(PERL_VER).dll
535PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib
536!endif
537
538CFLAGS = $(CFLAGS) -DFEAT_PERL
539
540# Do we want to load Perl dynamically?
541!if "$(DYNAMIC_PERL)" == "yes"
542CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\"
543!undef PERL_LIB
544!endif
545
546PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl
547PERL_INC = /I $(PERL_INCDIR)
548PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj
549XSUBPP = $(PERL)\lib\ExtUtils\xsubpp
550XSUBPP_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
560RUBY_VER = 18
561!endif
562!ifndef RUBY_VER_LONG
563RUBY_VER_LONG = 1.8
564!endif
565
566!if $(RUBY_VER) >= 18
567!ifndef RUBY_PLATFORM
568RUBY_PLATFORM = i386-mswin32
569!endif
570!ifndef RUBY_INSTALL_NAME
571RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_VER)
572!endif
573!else
574!ifndef RUBY_PLATFORM
575RUBY_PLATFORM = i586-mswin32
576!endif
577!ifndef RUBY_INSTALL_NAME
578RUBY_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)"
583CFLAGS = $(CFLAGS) -DFEAT_RUBY
584RUBY_OBJ = $(OUTDIR)\if_ruby.obj
585RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)"
586RUBY_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
590CFLAGS = $(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"
599CFLAGS = $(CFLAGS) -DMSWINPS
600!endif # POSTSCRIPT
601
602#
603# FEATURES: TINY, SMALL, NORMAL, BIG or HUGE
604#
605!if "$(FEATURES)"==""
606FEATURES = BIG
607!endif
608CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES)
609
610#
611# End extra featuare include
612#
613!message
614
615conflags = /nologo /subsystem:$(SUBSYSTEM) /incremental:no
616
617!IF "$(MAP)" == "yes"
618# "/map" is for debugging
619conflags = $(conflags) /map
620!ELSEIF "$(MAP)" == "lines"
621# "/mapinfo:lines" is for debugging, only works for VC6 and later
622conflags = $(conflags) /map /mapinfo:lines
623!ENDIF
624
625LINKARGS1 = $(linkdebug) $(conflags) /nodefaultlib:libc
626LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(LIBC) $(OLE_LIB) user32.lib $(SNIFF_LIB) \
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000627 $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(RUBY_LIB) $(TCL_LIB) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB)
629
630all: $(VIM) vimrun.exe install.exe uninstal.exe xxd/xxd.exe GvimExt/gvimext.dll
631
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000632$(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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 $(CC) $(CFLAGS) version.c /Fo$(OUTDIR)/version.obj $(PDB)
634 $(link) $(LINKARGS1) -out:$*.exe $(OBJ) $(GUI_OBJ) $(OLE_OBJ) \
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000635 $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(RUBY_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) \
637 $(OUTDIR)\version.obj $(LINKARGS2)
638
639$(VIM).exe: $(VIM)
640
641$(OUTDIR):
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000642 if not exist $(OUTDIR)/nul mkdir $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643
644install.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
649uninstal.exe: uninstal.c
650 $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib
651
652vimrun.exe: vimrun.c
653 $(CC) /nologo -DNDEBUG vimrun.c
654
655xxd/xxd.exe: xxd/xxd.c
656 cd xxd
657 $(MAKE) /NOLOGO -f Make_mvc.mak
658 cd ..
659
660GvimExt/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
666tags: notags
667 $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro
668
669notags:
670 - if exist tags del tags
671
672clean:
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
699test:
700 cd testdir
701 $(MAKE) /NOLOGO -f Make_dos.mak win32
702 cd ..
703
Bram Moolenaar34114692005-01-02 11:28:13 +0000704testclean:
705 cd testdir
706 $(MAKE) /NOLOGO -f Make_dos.mak clean
707 cd ..
708
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709###########################################################################
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
763if_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
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000772$(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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775$(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
852iid_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
855dimm.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
Bram Moolenaar89cb5e02004-07-19 20:55:54 +0000862# $CFLAGS may contain backslashes and double quotes, escape them both.
863E0_CFLAGS = $(CFLAGS:\=\\)
864E_CFLAGS = $(E0_CFLAGS:"=\")
865
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866auto/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
Bram Moolenaar89cb5e02004-07-19 20:55:54 +0000872 @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> auto\pathdef.c
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 @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
877auto:
878 if not exist auto/nul mkdir auto
879
880# End Custom Build
881proto.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: