blob: a6534c8bb9c14b974a84d8d2fbf048265f3870f4 [file] [log] [blame]
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001# 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
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003# VC5, VC6 (VS98), VC7.0 (VS2002), VC7.1 (VS2003), VC8 (VS2005),
Bram Moolenaar6f586de2012-09-18 22:00:08 +02004# VC9 (VS2008), VC10 (VS2010) and VC11 (VS2012)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005#
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006# To build using other Windows compilers, see INSTALLpc.txt
Bram Moolenaar7887d882005-07-01 22:33:52 +00007#
Bram Moolenaar071d4272004-06-13 20:20:40 +00008# This makefile can build the console, GUI, OLE-enable, Perl-enabled and
Bram Moolenaarda2f99a2009-06-16 14:34:38 +00009# Python-enabled versions of Vim for Win32 platforms.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010#
Bram Moolenaarda2f99a2009-06-16 14:34:38 +000011# The basic command line to build Vim is:
Bram Moolenaar7887d882005-07-01 22:33:52 +000012#
Bram Moolenaar071d4272004-06-13 20:20:40 +000013# nmake -f Make_mvc.mak
Bram Moolenaar7887d882005-07-01 22:33:52 +000014#
Bram Moolenaarda2f99a2009-06-16 14:34:38 +000015# This will build the console version of Vim with no additional interfaces.
Bram Moolenaar7887d882005-07-01 22:33:52 +000016# To add features, define any of the following:
17#
Bram Moolenaar6f586de2012-09-18 22:00:08 +020018# 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#
Bram Moolenaar7887d882005-07-01 22:33:52 +000021# !!!! After changing features do "nmake clean" first !!!!
22#
Bram Moolenaar884f6e42013-05-19 21:03:54 +020023# Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG)
Bram Moolenaar7887d882005-07-01 22:33:52 +000024#
Bram Moolenaar071d4272004-06-13 20:20:40 +000025# GUI interface: GUI=yes (default is no)
Bram Moolenaar7887d882005-07-01 22:33:52 +000026#
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +020027# GUI with DirectWrite(DirectX): DIRECTX=yes
28# (default is no, requires GUI=yes)
29#
Bram Moolenaar071d4272004-06-13 20:20:40 +000030# OLE interface: OLE=yes (usually with GUI=yes)
Bram Moolenaar7887d882005-07-01 22:33:52 +000031#
Bram Moolenaara83c3e02006-03-17 23:10:44 +000032# Multibyte support: MBYTE=yes (default is no)
Bram Moolenaar7887d882005-07-01 22:33:52 +000033#
Bram Moolenaar071d4272004-06-13 20:20:40 +000034# 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)
Bram Moolenaar7887d882005-07-01 22:33:52 +000038#
Bram Moolenaar0ba04292010-07-14 23:23:17 +020039# Lua interface:
40# LUA=[Path to Lua directory]
41# DYNAMIC_LUA=yes (to load the Lua DLL dynamically)
42# LUA_VER=[Lua version] (default is 51)
43#
Bram Moolenaar65c1b012005-01-31 19:02:28 +000044# MzScheme interface:
45# MZSCHEME=[Path to MzScheme directory]
46# DYNAMIC_MZSCHEME=yes (to load the MzScheme DLLs dynamically)
47# MZSCHEME_VER=[version, 205_000, ...]
Bram Moolenaar9e70cf12009-05-26 20:59:55 +000048# MZSCHEME_DEBUG=no
Bram Moolenaar7887d882005-07-01 22:33:52 +000049#
Bram Moolenaar071d4272004-06-13 20:20:40 +000050# Perl interface:
51# PERL=[Path to Perl directory]
52# DYNAMIC_PERL=yes (to load the Perl DLL dynamically)
Bram Moolenaar4f7e8212014-11-05 13:53:32 +010053# PERL_VER=[Perl version, in the form 55 (5.005), 56 (5.6.x),
54# 510 (5.10.x), etc]
Bram Moolenaar7887d882005-07-01 22:33:52 +000055# (default is 56)
56#
Bram Moolenaar071d4272004-06-13 20:20:40 +000057# Python interface:
58# PYTHON=[Path to Python directory]
59# DYNAMIC_PYTHON=yes (to load the Python DLL dynamically)
Bram Moolenaar4f7e8212014-11-05 13:53:32 +010060# PYTHON_VER=[Python version, eg 22, 23, ..., 27] (default is 22)
Bram Moolenaar7887d882005-07-01 22:33:52 +000061#
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020062# Python3 interface:
63# PYTHON3=[Path to Python3 directory]
64# DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically)
65# PYTHON3_VER=[Python3 version, eg 30, 31] (default is 31)
66#
Bram Moolenaar071d4272004-06-13 20:20:40 +000067# Ruby interface:
68# RUBY=[Path to Ruby directory]
69# DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically)
Bram Moolenaar4f7e8212014-11-05 13:53:32 +010070# RUBY_VER=[Ruby version, eg 18, 19, 20] (default is 18)
71# RUBY_VER_LONG=[Ruby version, eg 1.8, 1.9.1, 2.0.0] (default is 1.8)
Bram Moolenaar071d4272004-06-13 20:20:40 +000072# You must set RUBY_VER_LONG when change RUBY_VER.
Bram Moolenaar4f7e8212014-11-05 13:53:32 +010073# RUBY_API_VER is derived from RUBY_VER_LONG.
74# Note: If you use Ruby 1.9.3, set as follows:
75# RUBY_VER=19
76# RUBY_VER_LONG=1.9.1 (not 1.9.3, because the API version is 1.9.1.)
Bram Moolenaar7887d882005-07-01 22:33:52 +000077#
Bram Moolenaar071d4272004-06-13 20:20:40 +000078# Tcl interface:
79# TCL=[Path to Tcl directory]
80# DYNAMIC_TCL=yes (to load the Tcl DLL dynamically)
81# TCL_VER=[Tcl version, e.g. 80, 83] (default is 83)
82# TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.3)
83# You must set TCL_VER_LONG when you set TCL_VER.
Bram Moolenaar7887d882005-07-01 22:33:52 +000084#
85# SNiFF+ interface: SNIFF=yes
86#
87# Cscope support: CSCOPE=yes
88#
89# Iconv library support (always dynamically loaded):
90# ICONV=[yes or no] (default is yes)
91#
92# Intl library support (always dynamically loaded):
93# GETTEXT=[yes or no] (default is yes)
94# See http://sourceforge.net/projects/gettext/
95#
Bram Moolenaar884f6e42013-05-19 21:03:54 +020096# PostScript printing: POSTSCRIPT=yes (default is no)
Bram Moolenaar7887d882005-07-01 22:33:52 +000097#
Bram Moolenaar884f6e42013-05-19 21:03:54 +020098# Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes)
Bram Moolenaar7887d882005-07-01 22:33:52 +000099#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200100# XPM Image Support: XPM=[path to XPM directory]
101# Default is "xpm", using the files included in the distribution.
102# Use "no" to disable this feature.
Bram Moolenaar7887d882005-07-01 22:33:52 +0000103#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200104# Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED)
Bram Moolenaar7887d882005-07-01 22:33:52 +0000105#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200106# Processor Version: CPUNR=[i386, i486, i586, i686, pentium4] (default is
107# i386)
Bram Moolenaar7887d882005-07-01 22:33:52 +0000108#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200109# Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400)
Bram Moolenaar7887d882005-07-01 22:33:52 +0000110#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111# Debug version: DEBUG=yes
112# Mapfile: MAP=[no, yes or lines] (default is yes)
113# no: Don't write a mapfile.
114# yes: Write a normal mapfile.
115# lines: Write a mapfile with line numbers (only for VC6 and later)
Bram Moolenaar7887d882005-07-01 22:33:52 +0000116#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200117# Netbeans Debugging Support: NBDEBUG=[yes or no] (should be no, yes
118# doesn't work)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200120# Visual C Version: MSVCVER=m.n (default derived from nmake if undefined)
121#
122# Static Code Analysis: ANALYZE=yes (works with VS2012 only)
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000123#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124# 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#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129# 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.
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000133# 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...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135# 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.,
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000163# nmake -f Make_mvc.mvc "DEFINES=-DEMACS_TAGS"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000165# Build on both Windows NT/XP and Windows 9x
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166
167TARGETOS = BOTH
168
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000169# Select one of eight object code directories, depends on GUI, OLE, DEBUG and
170# interfaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171# If you change something else, do "make clean" first!
172!if "$(GUI)" == "yes"
173OBJDIR = .\ObjG
174!else
175OBJDIR = .\ObjC
176!endif
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200177!if "$(DIRECTX)" == "yes"
178OBJDIR = $(OBJDIR)X
179!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180!if "$(OLE)" == "yes"
181OBJDIR = $(OBJDIR)O
182!endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200183!ifdef LUA
184OBJDIR = $(OBJDIR)U
185!endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000186!ifdef PERL
187OBJDIR = $(OBJDIR)L
188!endif
189!ifdef PYTHON
190OBJDIR = $(OBJDIR)Y
191!endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200192!ifdef PYTHON3
193OBJDIR = $(OBJDIR)H
194!endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000195!ifdef TCL
196OBJDIR = $(OBJDIR)T
197!endif
198!ifdef RUBY
199OBJDIR = $(OBJDIR)R
200!endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000201!ifdef MZSCHEME
202OBJDIR = $(OBJDIR)Z
203!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204!if "$(DEBUG)" == "yes"
205OBJDIR = $(OBJDIR)d
206!endif
207
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000208# Win32.mak requires that CPU be set appropriately.
209# To cross-compile for Win64, set CPU=AMD64 or CPU=IA64.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210
211!ifdef PROCESSOR_ARCHITECTURE
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000212# We're on Windows NT or using VC 6+
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000213! ifdef CPU
214ASSEMBLY_ARCHITECTURE=$(CPU)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000215# Using I386 for $ASSEMBLY_ARCHITECTURE doesn't work for VC7.
216! if ("$(ASSEMBLY_ARCHITECTURE)" == "i386") || ("$(ASSEMBLY_ARCHITECTURE)" == "I386")
217ASSEMBLY_ARCHITECTURE = x86
218! endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000219! else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220CPU = $(PROCESSOR_ARCHITECTURE)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000221ASSEMBLY_ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000222! if ("$(CPU)" == "x86") || ("$(CPU)" == "X86")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223CPU = i386
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000224! endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225! endif
226!else # !PROCESSOR_ARCHITECTURE
227# We're on Windows 95
228CPU = i386
229!endif # !PROCESSOR_ARCHITECTURE
Bram Moolenaare2db4362012-09-05 17:57:39 +0200230OBJDIR = $(OBJDIR)$(CPU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232# Build a retail version by default
233
234!if "$(DEBUG)" != "yes"
235NODEBUG = 1
236!else
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000237!undef NODEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238MAKEFLAGS_GVIMEXT = DEBUG=yes
239!endif
240
241
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000242# Get all sorts of useful, standard macros from the Platform SDK.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243
Bram Moolenaar6f586de2012-09-18 22:00:08 +0200244!ifdef SDK_INCLUDE_DIR
245!include $(SDK_INCLUDE_DIR)\Win32.mak
246!else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000247!include <Win32.mak>
Bram Moolenaar6f586de2012-09-18 22:00:08 +0200248!endif
249
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250
Bram Moolenaar8cd213c2010-06-01 21:57:09 +0200251# Flag to turn on Win64 compatibility warnings for VC7.x and VC8.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200252WP64CHECK = /Wp64
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253
254#>>>>> path of the compiler and linker; name of include and lib directories
255# PATH = c:\msvc20\bin;$(PATH)
256# INCLUDE = c:\msvc20\include
257# LIB = c:\msvc20\lib
258
259!ifndef CTAGS
260CTAGS = ctags
261!endif
262
263!if "$(SNIFF)" == "yes"
264# SNIFF - Include support for SNiFF+.
265SNIFF_INCL = if_sniff.h
266SNIFF_OBJ = $(OBJDIR)/if_sniff.obj
Bram Moolenaarb6356332005-07-18 21:40:44 +0000267SNIFF_LIB = shell32.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268SNIFF_DEFS = -DFEAT_SNIFF
269# The SNiFF integration needs multithreaded libraries!
270MULTITHREADED = yes
271!endif
272
273!ifndef CSCOPE
274CSCOPE = yes
275!endif
276
277!if "$(CSCOPE)" == "yes"
278# CSCOPE - Include support for Cscope
279CSCOPE_INCL = if_cscope.h
280CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj
281CSCOPE_DEFS = -DFEAT_CSCOPE
282!endif
283
284!ifndef NETBEANS
285NETBEANS = $(GUI)
286!endif
287
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000288# Only allow NETBEANS and XPM for a GUI build.
289!if "$(GUI)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290!if "$(NETBEANS)" == "yes"
291# NETBEANS - Include support for Netbeans integration
292NETBEANS_PRO = proto/netbeans.pro
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000293NETBEANS_OBJ = $(OBJDIR)/netbeans.obj
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294NETBEANS_DEFS = -DFEAT_NETBEANS_INTG
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000295
296!if "$(NBDEBUG)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297NBDEBUG_DEFS = -DNBDEBUG
298NBDEBUG_INCL = nbdebug.h
299NBDEBUG_SRC = nbdebug.c
300!endif
Bram Moolenaarb6356332005-07-18 21:40:44 +0000301NETBEANS_LIB = WSock32.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302!endif
303
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200304# DirectWrite(DirectX)
305!if "$(DIRECTX)" == "yes"
306DIRECTX_DEFS = -DFEAT_DIRECTX -DDYNAMIC_DIRECTX
307DIRECTX_INCL = gui_dwrite.h
308DIRECTX_OBJ = $(OUTDIR)\gui_dwrite.obj
309!endif
310
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200311!ifndef XPM
312# XPM is not set, use the included xpm files, depending on the architecture.
Bram Moolenaare2db4362012-09-05 17:57:39 +0200313!if "$(CPU)" == "AMD64"
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200314XPM = xpm\x64
Bram Moolenaare2db4362012-09-05 17:57:39 +0200315!elseif "$(CPU)" == "i386"
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200316XPM = xpm\x86
Bram Moolenaare2db4362012-09-05 17:57:39 +0200317!else
318XPM = no
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200319!endif
320!endif
321!if "$(XPM)" != "no"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322# XPM - Include support for XPM signs
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200323# See the xpm directory for more information.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324XPM_OBJ = $(OBJDIR)/xpm_w32.obj
325XPM_DEFS = -DFEAT_XPM_W32
326XPM_LIB = $(XPM)\lib\libXpm.lib
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200327XPM_INC = -I $(XPM)\include -I $(XPM)\..\include
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328!endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000329!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000331# Set which version of the CRT to use
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332!if defined(USE_MSVCRT)
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000333# CVARS = $(cvarsdll)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000334# !elseif defined(MULTITHREADED)
335# CVARS = $(cvarsmt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336!else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000337# CVARS = $(cvars)
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000338# CVARS = $(cvarsmt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339!endif
340
341# need advapi32.lib for GetUserName()
342# need shell32.lib for ExtractIcon()
343# gdi32.lib and comdlg32.lib for printing support
344# ole32.lib and uuid.lib are needed for FEAT_SHORTCUT
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000345CON_LIB = oldnames.lib kernel32.lib advapi32.lib shell32.lib gdi32.lib \
Bram Moolenaarf300ad22015-05-04 16:18:42 +0200346 comdlg32.lib ole32.lib uuid.lib /machine:$(CPU)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000347!if "$(DELAYLOAD)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348CON_LIB = $(CON_LIB) /DELAYLOAD:comdlg32.dll /DELAYLOAD:ole32.dll DelayImp.lib
349!endif
350
351### Set the default $(WINVER) to make it work with VC++7.0 (VS.NET)
352# When set to 0x0500 ":browse" stops working.
353!ifndef WINVER
354WINVER = 0x0400
355!endif
356
357# If you have a fixed directory for $VIM or $VIMRUNTIME, other than the normal
358# default, use these lines.
359#VIMRCLOC = somewhere
360#VIMRUNTIMEDIR = somewhere
361
362CFLAGS = -c /W3 /nologo $(CVARS) -I. -Iproto -DHAVE_PATHDEF -DWIN32 \
363 $(SNIFF_DEFS) $(CSCOPE_DEFS) $(NETBEANS_DEFS) \
364 $(NBDEBUG_DEFS) $(XPM_DEFS) \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000365 $(DEFINES) -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \
366 /Fo$(OUTDIR)/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367
368#>>>>> end of choices
369###########################################################################
370
371!ifdef OS
372OS_TYPE = winnt
373DEL_TREE = rmdir /s /q
374!else
375OS_TYPE = win95
376DEL_TREE = deltree /y
377!endif
378
379INTDIR=$(OBJDIR)
380OUTDIR=$(OBJDIR)
381
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000382# Derive version of VC being used from nmake if not specified
383!if "$(MSVCVER)" == ""
384!if "$(_NMAKE_VER)" == ""
385MSVCVER = 4.0
386!endif
387!if "$(_NMAKE_VER)" == "162"
388MSVCVER = 5.0
389!endif
390!if "$(_NMAKE_VER)" == "6.00.8168.0"
391MSVCVER = 6.0
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000392CPU = ix86
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000393!endif
Bram Moolenaar67a4f6c2012-10-21 02:41:08 +0200394!if "$(_NMAKE_VER)" == "6.00.9782.0"
395MSVCVER = 6.0
396CPU = ix86
397!endif
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000398!if "$(_NMAKE_VER)" == "7.00.9466"
399MSVCVER = 7.0
400!endif
401!if "$(_NMAKE_VER)" == "7.10.3077"
402MSVCVER = 7.1
403!endif
404!if "$(_NMAKE_VER)" == "8.00.50727.42"
405MSVCVER = 8.0
406!endif
407!if "$(_NMAKE_VER)" == "8.00.50727.762"
408MSVCVER = 8.0
409!endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000410!if "$(_NMAKE_VER)" == "9.00.20706.01"
411MSVCVER = 9.0
412!endif
Bram Moolenaara7241f52008-06-24 20:39:31 +0000413!if "$(_NMAKE_VER)" == "9.00.21022.08"
414MSVCVER = 9.0
415!endif
Bram Moolenaar13658312009-02-04 17:35:52 +0000416!if "$(_NMAKE_VER)" == "9.00.30729.01"
417MSVCVER = 9.0
418!endif
Bram Moolenaarda2f99a2009-06-16 14:34:38 +0000419!if "$(_NMAKE_VER)" == "10.00.20506.01"
420MSVCVER = 10.0
421!endif
Bram Moolenaar2498b3a2010-03-02 17:59:44 +0100422!if "$(_NMAKE_VER)" == "10.00.30128.01"
423MSVCVER = 10.0
424!endif
Bram Moolenaar218116c2010-05-20 21:46:00 +0200425!if "$(_NMAKE_VER)" == "10.00.30319.01"
426MSVCVER = 10.0
427!endif
Bram Moolenaare3a22462012-10-23 05:35:34 +0200428!if "$(_NMAKE_VER)" == "10.00.40219.01"
429MSVCVER = 10.0
430!endif
Bram Moolenaar2b017fa2012-09-18 18:27:12 +0200431!if "$(_NMAKE_VER)" == "11.00.50727.1"
432MSVCVER = 11.0
433!endif
Bram Moolenaar52cc2662012-12-06 21:30:29 +0100434!if "$(_NMAKE_VER)" == "11.00.51106.1"
435MSVCVER = 11.0
436!endif
Bram Moolenaar29042482013-05-07 05:11:17 +0200437!if "$(_NMAKE_VER)" == "11.00.60315.1"
438MSVCVER = 11.0
439!endif
Bram Moolenaarc64b85a2013-07-09 13:15:46 +0200440!if "$(_NMAKE_VER)" == "11.00.60610.1"
441MSVCVER = 11.0
442!endif
Bram Moolenaarc8643822014-02-15 19:47:51 +0100443!if "$(_NMAKE_VER)" == "11.00.61030.0"
444MSVCVER = 11.0
445!endif
Bram Moolenaare5878f42013-11-08 03:15:47 +0100446!if "$(_NMAKE_VER)" == "12.00.21005.1"
447MSVCVER = 12.0
448!endif
Bram Moolenaar42704962015-05-06 11:33:47 +0200449!if ("$(_NMAKE_VER)" == "14.00.22609.0") || ("$(_NMAKE_VER)" == "14.00.22816.0")
Bram Moolenaarf300ad22015-05-04 16:18:42 +0200450MSVCVER = 14.0
451!endif
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000452!endif
453
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200454# Abort building VIM if version of VC is unrecognised.
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000455!ifndef MSVCVER
456!message *** ERROR
457!message Cannot determine Visual C version being used. If you are using the
458!message Windows SDK then you must have the environment variable MSVCVER set to
459!message your version of the VC compiler. If you are not using the Express
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000460!message version of Visual C, you can either set MSVCVER or update this makefile
461!message to handle the new value for _NMAKE_VER, "$(_NMAKE_VER)".
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000462!error Make aborted.
463!endif
464
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465# Convert processor ID to MVC-compatible number
Bram Moolenaarf300ad22015-05-04 16:18:42 +0200466!if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") && ("$(MSVCVER)" != "11.0") && ("$(MSVCVER)" != "12.0") && ("$(MSVCVER)" != "14.0")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467!if "$(CPUNR)" == "i386"
468CPUARG = /G3
469!elseif "$(CPUNR)" == "i486"
470CPUARG = /G4
471!elseif "$(CPUNR)" == "i586"
472CPUARG = /G5
473!elseif "$(CPUNR)" == "i686"
474CPUARG = /G6
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000475!elseif "$(CPUNR)" == "pentium4"
Bram Moolenaar34114692005-01-02 11:28:13 +0000476CPUARG = /G7 /arch:SSE2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477!else
478CPUARG =
479!endif
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000480!else
Bram Moolenaar3ed16dc2011-06-12 20:31:31 +0200481# VC8/9/10 only allows specifying SSE architecture but only for 32bit
482!if "$(ASSEMBLY_ARCHITECTURE)" == "x86" && "$(CPUNR)" == "pentium4"
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000483CPUARG = /arch:SSE2
484!endif
485!endif
486
487LIBC =
488DEBUGINFO = /Zi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489
Bram Moolenaarf300ad22015-05-04 16:18:42 +0200490# Don't use /nodefaultlib on MSVC 14
491!if "$(MSVCVER)" == "14.0"
492NODEFAULTLIB =
493!else
494NODEFAULTLIB = /nodefaultlib
495!endif
496
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497!ifdef NODEBUG
498VIM = vim
499!if "$(OPTIMIZE)" == "SPACE"
500OPTFLAG = /O1
501!elseif "$(OPTIMIZE)" == "SPEED"
502OPTFLAG = /O2
503!else # MAXSPEED
504OPTFLAG = /Ox
505!endif
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200506
Bram Moolenaare5878f42013-11-08 03:15:47 +0100507!if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000508# Use link time code generation if not worried about size
509!if "$(OPTIMIZE)" != "SPACE"
510OPTFLAG = $(OPTFLAG) /GL
511!endif
512!endif
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200513
514# (/Wp64 is deprecated in VC9 and generates an obnoxious warning.)
515!if ("$(MSVCVER)" == "7.0") || ("$(MSVCVER)" == "7.1") || ("$(MSVCVER)" == "8.0")
516CFLAGS=$(CFLAGS) $(WP64CHECK)
517!endif
518
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200519# Static code analysis generally available starting with VS2012
Bram Moolenaar815135e2013-11-09 02:32:18 +0100520!if ("$(ANALYZE)" == "yes") && (("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0"))
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200521CFLAGS=$(CFLAGS) /analyze
522!endif
523
Bram Moolenaar34114692005-01-02 11:28:13 +0000524CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526! ifdef USE_MSVCRT
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000527CFLAGS = $(CFLAGS) /MD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528LIBC = msvcrt.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529! else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000530LIBC = libcmt.lib
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000531CFLAGS = $(CFLAGS) /Zl /MT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532! endif
533!else # DEBUG
534VIM = vimd
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000535! if ("$(CPU)" == "i386") || ("$(CPU)" == "ix86")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000536DEBUGINFO = /ZI
537! endif
Bram Moolenaard9d30582005-05-18 22:10:28 +0000538CFLAGS = $(CFLAGS) -D_DEBUG -DDEBUG /Od
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539RCFLAGS = $(rcflags) $(rcvars) -D_DEBUG -DDEBUG
540# The /fixed:no is needed for Quantify. Assume not 4.? as unsupported in VC4.0.
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000541! if "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542LIBC =
543! else
544LIBC = /fixed:no
545! endif
Bram Moolenaar6a9aa372005-07-20 21:54:57 +0000546! ifdef USE_MSVCRT
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000547CFLAGS = $(CFLAGS) /MDd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548LIBC = $(LIBC) msvcrtd.lib
Bram Moolenaar6a9aa372005-07-20 21:54:57 +0000549! else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000550LIBC = $(LIBC) libcmtd.lib
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000551CFLAGS = $(CFLAGS) /Zl /MTd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552! endif
553!endif # DEBUG
554
555INCL = vim.h os_win32.h ascii.h feature.h globals.h keymap.h macros.h \
556 proto.h option.h structs.h term.h $(SNIFF_INCL) $(CSCOPE_INCL) \
557 $(NBDEBUG_INCL)
558
559OBJ = \
Bram Moolenaar40e6a712010-05-16 22:32:54 +0200560 $(OUTDIR)\blowfish.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 $(OUTDIR)\buffer.obj \
562 $(OUTDIR)\charset.obj \
Bram Moolenaar07cf3822014-08-10 16:31:50 +0200563 $(OUTDIR)\crypt.obj \
564 $(OUTDIR)\crypt_zip.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 $(OUTDIR)\diff.obj \
566 $(OUTDIR)\digraph.obj \
567 $(OUTDIR)\edit.obj \
568 $(OUTDIR)\eval.obj \
569 $(OUTDIR)\ex_cmds.obj \
570 $(OUTDIR)\ex_cmds2.obj \
571 $(OUTDIR)\ex_docmd.obj \
572 $(OUTDIR)\ex_eval.obj \
573 $(OUTDIR)\ex_getln.obj \
574 $(OUTDIR)\fileio.obj \
575 $(OUTDIR)\fold.obj \
576 $(OUTDIR)\getchar.obj \
Bram Moolenaar58d98232005-07-23 22:25:46 +0000577 $(OUTDIR)\hardcopy.obj \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000578 $(OUTDIR)\hashtab.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 $(OUTDIR)\main.obj \
580 $(OUTDIR)\mark.obj \
581 $(OUTDIR)\mbyte.obj \
582 $(OUTDIR)\memfile.obj \
583 $(OUTDIR)\memline.obj \
584 $(OUTDIR)\menu.obj \
585 $(OUTDIR)\message.obj \
586 $(OUTDIR)\misc1.obj \
587 $(OUTDIR)\misc2.obj \
588 $(OUTDIR)\move.obj \
589 $(OUTDIR)\normal.obj \
590 $(OUTDIR)\ops.obj \
591 $(OUTDIR)\option.obj \
592 $(OUTDIR)\os_mswin.obj \
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100593 $(OUTDIR)\winclip.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 $(OUTDIR)\os_win32.obj \
595 $(OUTDIR)\pathdef.obj \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000596 $(OUTDIR)\popupmnu.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 $(OUTDIR)\quickfix.obj \
598 $(OUTDIR)\regexp.obj \
599 $(OUTDIR)\screen.obj \
600 $(OUTDIR)\search.obj \
Bram Moolenaaredac1852010-05-18 20:34:20 +0200601 $(OUTDIR)\sha256.obj \
Bram Moolenaar2e4096b2005-03-20 22:25:45 +0000602 $(OUTDIR)\spell.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 $(OUTDIR)\syntax.obj \
604 $(OUTDIR)\tag.obj \
605 $(OUTDIR)\term.obj \
606 $(OUTDIR)\ui.obj \
607 $(OUTDIR)\undo.obj \
608 $(OUTDIR)\window.obj \
609 $(OUTDIR)\vim.res
610
611!if "$(OLE)" == "yes"
612CFLAGS = $(CFLAGS) -DFEAT_OLE
613RCFLAGS = $(RCFLAGS) -DFEAT_OLE
614OLE_OBJ = $(OUTDIR)\if_ole.obj
615OLE_IDL = if_ole.idl
616OLE_LIB = oleaut32.lib
617!endif
618
619!if "$(IME)" == "yes"
620CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME
621!ifndef DYNAMIC_IME
622DYNAMIC_IME = yes
623!endif
624!if "$(DYNAMIC_IME)" == "yes"
625CFLAGS = $(CFLAGS) -DDYNAMIC_IME
626!else
627IME_LIB = imm32.lib
628!endif
629!endif
630
631!if "$(GIME)" == "yes"
632CFLAGS = $(CFLAGS) -DGLOBAL_IME
633OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj
634MBYTE = yes
635!endif
636
637!if "$(MBYTE)" == "yes"
638CFLAGS = $(CFLAGS) -DFEAT_MBYTE
639!endif
640
641!if "$(GUI)" == "yes"
642SUBSYSTEM = windows
643CFLAGS = $(CFLAGS) -DFEAT_GUI_W32
644RCFLAGS = $(RCFLAGS) -DFEAT_GUI_W32
645VIM = g$(VIM)
646GUI_INCL = \
647 gui.h \
648 regexp.h \
649 ascii.h \
650 ex_cmds.h \
651 farsi.h \
652 feature.h \
653 globals.h \
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000654 gui_beval.h \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 keymap.h \
656 macros.h \
657 option.h \
658 os_dos.h \
659 os_win32.h
660GUI_OBJ = \
661 $(OUTDIR)\gui.obj \
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000662 $(OUTDIR)\gui_beval.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 $(OUTDIR)\gui_w32.obj \
664 $(OUTDIR)\os_w32exe.obj
665GUI_LIB = \
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000666 gdi32.lib version.lib $(IME_LIB) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 winspool.lib comctl32.lib advapi32.lib shell32.lib \
Bram Moolenaarf300ad22015-05-04 16:18:42 +0200668 /machine:$(CPU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669!else
670SUBSYSTEM = console
671!endif
672
Bram Moolenaarce2f2e02014-08-22 18:12:57 +0200673!if "$(SUBSYSTEM_VER)" != ""
674SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER)
675!endif
676
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +0200677!if "$(GUI)" == "yes" && "$(DIRECTX)" == "yes"
678CFLAGS = $(CFLAGS) $(DIRECTX_DEFS)
679GUI_INCL = $(GUI_INCL) $(DIRECTX_INCL)
680GUI_OBJ = $(GUI_OBJ) $(DIRECTX_OBJ)
681!endif
682
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683# iconv.dll library (dynamically loaded)
684!ifndef ICONV
685ICONV = yes
686!endif
687!if "$(ICONV)" == "yes"
688CFLAGS = $(CFLAGS) -DDYNAMIC_ICONV
689!endif
690
691# libintl.dll library
692!ifndef GETTEXT
693GETTEXT = yes
694!endif
695!if "$(GETTEXT)" == "yes"
696CFLAGS = $(CFLAGS) -DDYNAMIC_GETTEXT
697!endif
698
699# TCL interface
700!ifdef TCL
701!ifndef TCL_VER
702TCL_VER = 83
703TCL_VER_LONG = 8.3
704!endif
705!message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)"
706!if "$(DYNAMIC_TCL)" == "yes"
707!message Tcl DLL will be loaded dynamically
708TCL_DLL = tcl$(TCL_VER).dll
Bram Moolenaarb6356332005-07-18 21:40:44 +0000709CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \
710 -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711TCL_OBJ = $(OUTDIR)\if_tcl.obj
712TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
Bram Moolenaar84a4c332012-02-22 16:01:56 +0100713TCL_LIB = "$(TCL)\lib\tclstub$(TCL_VER).lib"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714!else
715CFLAGS = $(CFLAGS) -DFEAT_TCL
716TCL_OBJ = $(OUTDIR)\if_tcl.obj
717TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
718TCL_LIB = $(TCL)\lib\tcl$(TCL_VER)vc.lib
719!endif
720!endif
721
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200722# Lua interface
723!ifdef LUA
724!ifndef LUA_VER
725LUA_VER = 51
726!endif
727!message Lua requested (version $(LUA_VER)) - root dir is "$(LUA)"
728!if "$(DYNAMIC_LUA)" == "yes"
729!message Lua DLL will be loaded dynamically
730!endif
731CFLAGS = $(CFLAGS) -DFEAT_LUA
732LUA_OBJ = $(OUTDIR)\if_lua.obj
733LUA_INC = /I "$(LUA)\include" /I "$(LUA)"
734!if "$(DYNAMIC_LUA)" == "yes"
735CFLAGS = $(CFLAGS) -DDYNAMIC_LUA \
736 -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\"
737LUA_LIB = /nodefaultlib:lua$(LUA_VER).lib
738!else
739LUA_LIB = "$(LUA)\lib\lua$(LUA_VER).lib"
740!endif
741!endif
742
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200743!ifdef PYTHON
744!ifdef PYTHON3
745DYNAMIC_PYTHON=yes
746DYNAMIC_PYTHON3=yes
747!endif
748!endif
749
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750# PYTHON interface
751!ifdef PYTHON
752!ifndef PYTHON_VER
753PYTHON_VER = 22
754!endif
755!message Python requested (version $(PYTHON_VER)) - root dir is "$(PYTHON)"
756!if "$(DYNAMIC_PYTHON)" == "yes"
757!message Python DLL will be loaded dynamically
758!endif
759CFLAGS = $(CFLAGS) -DFEAT_PYTHON
760PYTHON_OBJ = $(OUTDIR)\if_python.obj
761PYTHON_INC = /I "$(PYTHON)\Include" /I "$(PYTHON)\PC"
762!if "$(DYNAMIC_PYTHON)" == "yes"
Bram Moolenaarb6356332005-07-18 21:40:44 +0000763CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON \
764 -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765PYTHON_LIB = /nodefaultlib:python$(PYTHON_VER).lib
766!else
767PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib
768!endif
769!endif
770
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200771# PYTHON3 interface
772!ifdef PYTHON3
773!ifndef PYTHON3_VER
774PYTHON3_VER = 31
775!endif
776!message Python3 requested (version $(PYTHON3_VER)) - root dir is "$(PYTHON3)"
777!if "$(DYNAMIC_PYTHON3)" == "yes"
778!message Python3 DLL will be loaded dynamically
779!endif
780CFLAGS = $(CFLAGS) -DFEAT_PYTHON3
781PYTHON3_OBJ = $(OUTDIR)\if_python3.obj
782PYTHON3_INC = /I "$(PYTHON3)\Include" /I "$(PYTHON3)\PC"
783!if "$(DYNAMIC_PYTHON3)" == "yes"
784CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON3 \
785 -DDYNAMIC_PYTHON3_DLL=\"python$(PYTHON3_VER).dll\"
786PYTHON3_LIB = /nodefaultlib:python$(PYTHON3_VER).lib
787!else
788PYTHON3_LIB = $(PYTHON3)\libs\python$(PYTHON3_VER).lib
789!endif
790!endif
791
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000792# MzScheme interface
793!ifdef MZSCHEME
794!message MzScheme requested - root dir is "$(MZSCHEME)"
795!ifndef MZSCHEME_VER
796MZSCHEME_VER = 205_000
797!endif
798CFLAGS = $(CFLAGS) -DFEAT_MZSCHEME -I $(MZSCHEME)\include
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100799!if EXIST("$(MZSCHEME)\collects\scheme\base.ss") \
800 || EXIST("$(MZSCHEME)\collects\scheme\base.rkt")
801# for MzScheme >= 4 we need to include byte code for basic Scheme stuff
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000802MZSCHEME_EXTRA_DEP = mzscheme_base.c
803CFLAGS = $(CFLAGS) -DINCLUDE_MZSCHEME_BASE
804!endif
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100805!if EXIST("$(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib")
806MZSCHEME_MAIN_LIB=mzsch
807!else
808MZSCHEME_MAIN_LIB=racket
809!endif
810!if EXIST("$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib") \
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000811 && !EXIST("$(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib")
812!message Building with Precise GC
813MZSCHEME_PRECISE_GC = yes
814CFLAGS = $(CFLAGS) -DMZ_PRECISE_GC
815!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000816!if "$(DYNAMIC_MZSCHEME)" == "yes"
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000817!if "$(MZSCHEME_PRECISE_GC)" == "yes"
818!error MzScheme with Precise GC cannot be loaded dynamically
819!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000820!message MzScheme DLLs will be loaded dynamically
Bram Moolenaarb6356332005-07-18 21:40:44 +0000821CFLAGS = $(CFLAGS) -DDYNAMIC_MZSCHEME \
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100822 -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000823 -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\"
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000824!else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000825!if "$(MZSCHEME_DEBUG)" == "yes"
826CFLAGS = $(CFLAGS) -DMZSCHEME_FORCE_GC
827!endif
828!if "$(MZSCHEME_PRECISE_GC)" == "yes"
829# Precise GC does not use separate dll
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100830MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000831!else
Bram Moolenaarb6356332005-07-18 21:40:44 +0000832MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib \
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100833 $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000834!endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000835!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000836MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100837# increase stack size
838MZSCHEME_LIB = $(MZSCHEME_LIB) /STACK:8388608
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000839!endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000840
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841# Perl interface
842!ifdef PERL
843!ifndef PERL_VER
844PERL_VER = 56
845!endif
846!message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)"
847!if "$(DYNAMIC_PERL)" == "yes"
848!if $(PERL_VER) >= 56
849!message Perl DLL will be loaded dynamically
850!else
851!message Dynamic loading is not supported for Perl versions earlier than 5.6.0
852!message Reverting to static loading...
853!undef DYNAMIC_PERL
854!endif
855!endif
856
857# Is Perl installed in architecture-specific directories?
858!if exist($(PERL)\Bin\MSWin32-x86)
859PERL_ARCH = \MSWin32-x86
860!endif
861
862PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core
863
864# Version-dependent stuff
865!if $(PERL_VER) == 55
866PERL_LIB = $(PERL_INCDIR)\perl.lib
867!else
868PERL_DLL = perl$(PERL_VER).dll
Bram Moolenaar207fd752013-12-14 11:50:35 +0100869!if exist($(PERL_INCDIR)\perl$(PERL_VER).lib)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib
Bram Moolenaar207fd752013-12-14 11:50:35 +0100871!else
872# For ActivePerl 5.18 and later
873PERL_LIB = $(PERL_INCDIR)\libperl$(PERL_VER).a
874!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875!endif
876
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200877CFLAGS = $(CFLAGS) -DFEAT_PERL -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878
879# Do we want to load Perl dynamically?
880!if "$(DYNAMIC_PERL)" == "yes"
881CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\"
882!undef PERL_LIB
883!endif
884
885PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl
886PERL_INC = /I $(PERL_INCDIR)
887PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj
888XSUBPP = $(PERL)\lib\ExtUtils\xsubpp
Bram Moolenaar52f83172011-09-14 19:01:42 +0200889!if exist($(XSUBPP))
Bram Moolenaar612af432011-09-14 10:49:46 +0200890XSUBPP = $(PERL_EXE) $(XSUBPP)
891!else
892XSUBPP = xsubpp
893!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894XSUBPP_TYPEMAP = $(PERL)\lib\ExtUtils\typemap
895
896!endif
897
898#
899# Support Ruby interface
900#
901!ifdef RUBY
902# Set default value
903!ifndef RUBY_VER
904RUBY_VER = 18
905!endif
906!ifndef RUBY_VER_LONG
907RUBY_VER_LONG = 1.8
908!endif
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200909!ifndef RUBY_API_VER
910RUBY_API_VER = $(RUBY_VER_LONG:.=)
911!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912
913!if $(RUBY_VER) >= 18
914!ifndef RUBY_PLATFORM
915RUBY_PLATFORM = i386-mswin32
916!endif
917!ifndef RUBY_INSTALL_NAME
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200918RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_API_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919!endif
920!else
921!ifndef RUBY_PLATFORM
922RUBY_PLATFORM = i586-mswin32
923!endif
924!ifndef RUBY_INSTALL_NAME
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200925RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926!endif
927!endif # $(RUBY_VER) >= 18
928
929!message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)"
930CFLAGS = $(CFLAGS) -DFEAT_RUBY
931RUBY_OBJ = $(OUTDIR)\if_ruby.obj
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200932!if $(RUBY_VER) >= 19
933RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" /I "$(RUBY)\include\ruby-$(RUBY_VER_LONG)" /I "$(RUBY)\include\ruby-$(RUBY_VER_LONG)\$(RUBY_PLATFORM)"
Bram Moolenaar69154f22010-07-18 21:42:34 +0200934!else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)"
Bram Moolenaar69154f22010-07-18 21:42:34 +0200936!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib
938# Do we want to load Ruby dynamically?
939!if "$(DYNAMIC_RUBY)" == "yes"
940!message Ruby DLL will be loaded dynamically
Bram Moolenaarb6356332005-07-18 21:40:44 +0000941CFLAGS = $(CFLAGS) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_VER=$(RUBY_VER) \
942 -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943!undef RUBY_LIB
944!endif
945!endif # RUBY
946
947#
948# Support PostScript printing
949#
950!if "$(POSTSCRIPT)" == "yes"
951CFLAGS = $(CFLAGS) -DMSWINPS
952!endif # POSTSCRIPT
953
954#
955# FEATURES: TINY, SMALL, NORMAL, BIG or HUGE
956#
957!if "$(FEATURES)"==""
958FEATURES = BIG
959!endif
960CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES)
961
962#
Bram Moolenaard9d30582005-05-18 22:10:28 +0000963# Always generate the .pdb file, so that we get debug symbols that can be used
964# on a crash (doesn't add overhead to the executable).
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000965# Generate edit-and-continue debug info when no optimization - allows to
966# debug more conveniently (able to look at variables which are in registers)
Bram Moolenaard9d30582005-05-18 22:10:28 +0000967#
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000968CFLAGS = $(CFLAGS) /Fd$(OUTDIR)/ $(DEBUGINFO)
969LINK_PDB = /PDB:$(VIM).pdb -debug
Bram Moolenaard9d30582005-05-18 22:10:28 +0000970
971#
972# End extra feature include
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973#
974!message
975
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000976conflags = /nologo /subsystem:$(SUBSYSTEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000978PATHDEF_SRC = $(OUTDIR)\pathdef.c
979
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980!IF "$(MAP)" == "yes"
981# "/map" is for debugging
982conflags = $(conflags) /map
983!ELSEIF "$(MAP)" == "lines"
984# "/mapinfo:lines" is for debugging, only works for VC6 and later
985conflags = $(conflags) /map /mapinfo:lines
986!ENDIF
987
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000988LINKARGS1 = $(linkdebug) $(conflags)
Bram Moolenaarf300ad22015-05-04 16:18:42 +0200989LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(NODEFAULTLIB) $(LIBC) $(OLE_LIB) user32.lib $(SNIFF_LIB) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200990 $(LUA_LIB) $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(RUBY_LIB) \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000991 $(TCL_LIB) $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000993# Report link time code generation progress if used.
994!ifdef NODEBUG
Bram Moolenaare5878f42013-11-08 03:15:47 +0100995!if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000996!if "$(OPTIMIZE)" != "SPACE"
997LINKARGS1 = $(LINKARGS1) /LTCG:STATUS
998!endif
999!endif
1000!endif
1001
Bram Moolenaarb6356332005-07-18 21:40:44 +00001002all: $(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe \
1003 GvimExt/gvimext.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004
Bram Moolenaarb6356332005-07-18 21:40:44 +00001005$(VIM).exe: $(OUTDIR) $(OBJ) $(GUI_OBJ) $(OLE_OBJ) $(OLE_IDL) $(MZSCHEME_OBJ) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001006 $(LUA_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) $(TCL_OBJ) \
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001007 $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) \
1008 version.c version.h
Bram Moolenaarb6356332005-07-18 21:40:44 +00001009 $(CC) $(CFLAGS) version.c
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00001010 $(link) $(LINKARGS1) -out:$(VIM).exe $(OBJ) $(GUI_OBJ) $(OLE_OBJ) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001011 $(LUA_OBJ) $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001012 $(TCL_OBJ) $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) \
1013 $(XPM_OBJ) $(OUTDIR)\version.obj $(LINKARGS2)
Bram Moolenaarb7776182014-05-22 16:29:06 +02001014 if exist $(VIM).exe.manifest mt.exe -nologo -manifest $(VIM).exe.manifest -updateresource:$(VIM).exe;1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001016$(VIM): $(VIM).exe
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017
1018$(OUTDIR):
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001019 if not exist $(OUTDIR)/nul mkdir $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020
1021install.exe: dosinst.c
Bram Moolenaarb6356332005-07-18 21:40:44 +00001022 $(CC) /nologo -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib \
Bram Moolenaarb230bd52010-05-25 21:02:00 +02001023 user32.lib ole32.lib advapi32.lib uuid.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 - if exist install.exe del install.exe
1025 ren dosinst.exe install.exe
1026
1027uninstal.exe: uninstal.c
1028 $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib
1029
1030vimrun.exe: vimrun.c
1031 $(CC) /nologo -DNDEBUG vimrun.c
1032
1033xxd/xxd.exe: xxd/xxd.c
1034 cd xxd
1035 $(MAKE) /NOLOGO -f Make_mvc.mak
1036 cd ..
1037
1038GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
1039 cd GvimExt
1040 $(MAKE) /NOLOGO -f Makefile $(MAKEFLAGS_GVIMEXT)
1041 cd ..
1042
1043
1044tags: notags
1045 $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro
1046
1047notags:
1048 - if exist tags del tags
1049
1050clean:
Bram Moolenaar02743632005-07-25 20:42:36 +00001051 - if exist $(OUTDIR)/nul $(DEL_TREE) $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 - if exist *.obj del *.obj
1053 - if exist $(VIM).exe del $(VIM).exe
1054 - if exist $(VIM).ilk del $(VIM).ilk
1055 - if exist $(VIM).pdb del $(VIM).pdb
1056 - if exist $(VIM).map del $(VIM).map
1057 - if exist $(VIM).ncb del $(VIM).ncb
1058 - if exist vimrun.exe del vimrun.exe
1059 - if exist install.exe del install.exe
1060 - if exist uninstal.exe del uninstal.exe
1061 - if exist if_perl.c del if_perl.c
1062 - if exist dimm.h del dimm.h
1063 - if exist dimm_i.c del dimm_i.c
1064 - if exist dimm.tlb del dimm.tlb
1065 - if exist dosinst.exe del dosinst.exe
Bram Moolenaar2d6db762009-09-11 10:49:58 +00001066 - if exist mzscheme_base.c del mzscheme_base.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 cd xxd
1068 $(MAKE) /NOLOGO -f Make_mvc.mak clean
1069 cd ..
1070 cd GvimExt
1071 $(MAKE) /NOLOGO -f Makefile clean
1072 cd ..
1073 cd GvimExt
1074 $(MAKE) /NOLOGO -f Makefile clean
1075 cd ..
1076 - if exist testdir\*.out del testdir\*.out
1077
1078test:
1079 cd testdir
1080 $(MAKE) /NOLOGO -f Make_dos.mak win32
1081 cd ..
1082
Bram Moolenaar34114692005-01-02 11:28:13 +00001083testclean:
1084 cd testdir
1085 $(MAKE) /NOLOGO -f Make_dos.mak clean
1086 cd ..
1087
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088###########################################################################
1089
1090# Create a default rule for transforming .c files to .obj files in $(OUTDIR)
1091# Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
Bram Moolenaarf22129b2007-10-03 11:29:44 +00001092!IF "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093.c{$(OUTDIR)/}.obj:
1094!ELSE
1095.c{$(OUTDIR)/}.obj::
1096!ENDIF
Bram Moolenaarb6356332005-07-18 21:40:44 +00001097 $(CC) $(CFLAGS) $<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098
1099# Create a default rule for transforming .cpp files to .obj files in $(OUTDIR)
1100# Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
Bram Moolenaarf22129b2007-10-03 11:29:44 +00001101!IF "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102.cpp{$(OUTDIR)/}.obj:
1103!ELSE
1104.cpp{$(OUTDIR)/}.obj::
1105!ENDIF
Bram Moolenaarb6356332005-07-18 21:40:44 +00001106 $(CC) $(CFLAGS) $<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001108$(OUTDIR)/blowfish.obj: $(OUTDIR) blowfish.c $(INCL)
1109
Bram Moolenaaredac1852010-05-18 20:34:20 +02001110$(OUTDIR)/buffer.obj: $(OUTDIR) buffer.c $(INCL)
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001111
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112$(OUTDIR)/charset.obj: $(OUTDIR) charset.c $(INCL)
1113
Bram Moolenaar07cf3822014-08-10 16:31:50 +02001114$(OUTDIR)/crypt.obj: $(OUTDIR) crypt.c $(INCL)
1115
1116$(OUTDIR)/crypt_zip.obj: $(OUTDIR) crypt_zip.c $(INCL)
1117
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118$(OUTDIR)/diff.obj: $(OUTDIR) diff.c $(INCL)
1119
1120$(OUTDIR)/digraph.obj: $(OUTDIR) digraph.c $(INCL)
1121
1122$(OUTDIR)/edit.obj: $(OUTDIR) edit.c $(INCL)
1123
1124$(OUTDIR)/eval.obj: $(OUTDIR) eval.c $(INCL)
1125
1126$(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL)
1127
1128$(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL)
1129
1130$(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmds.h
1131
1132$(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) ex_cmds.h
1133
1134$(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL)
1135
1136$(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL)
1137
1138$(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL)
1139
1140$(OUTDIR)/getchar.obj: $(OUTDIR) getchar.c $(INCL)
1141
Bram Moolenaar58d98232005-07-23 22:25:46 +00001142$(OUTDIR)/hardcopy.obj: $(OUTDIR) hardcopy.c $(INCL)
1143
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001144$(OUTDIR)/hashtab.obj: $(OUTDIR) hashtab.c $(INCL)
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001145
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146$(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL)
1147
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001148$(OUTDIR)/gui_beval.obj: $(OUTDIR) gui_beval.c $(INCL) $(GUI_INCL)
1149
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150$(OUTDIR)/gui_w32.obj: $(OUTDIR) gui_w32.c gui_w48.c $(INCL) $(GUI_INCL)
1151
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02001152$(OUTDIR)/gui_dwrite.obj: $(OUTDIR) gui_dwrite.cpp $(INCL) $(GUI_INCL)
1153
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154$(OUTDIR)/if_cscope.obj: $(OUTDIR) if_cscope.c $(INCL)
1155
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001156$(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL)
1157 $(CC) $(CFLAGS) $(LUA_INC) if_lua.c
1158
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159if_perl.c : if_perl.xs typemap
Bram Moolenaar612af432011-09-14 10:49:46 +02001160 $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001161 -typemap typemap if_perl.xs > if_perl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162
1163$(OUTDIR)/if_perl.obj: $(OUTDIR) if_perl.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001164 $(CC) $(CFLAGS) $(PERL_INC) if_perl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165
1166$(OUTDIR)/if_perlsfio.obj: $(OUTDIR) if_perlsfio.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001167 $(CC) $(CFLAGS) $(PERL_INC) if_perlsfio.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168
Bram Moolenaar75676462013-01-30 14:55:42 +01001169$(OUTDIR)/if_mzsch.obj: $(OUTDIR) if_mzsch.c if_mzsch.h $(INCL) $(MZSCHEME_EXTRA_DEP)
Bram Moolenaar6a9aa372005-07-20 21:54:57 +00001170 $(CC) $(CFLAGS) if_mzsch.c \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001171 -DMZSCHEME_COLLECTS=\"$(MZSCHEME:\=\\)\\collects\"
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001172mzscheme_base.c:
1173 $(MZSCHEME)\mzc --c-mods mzscheme_base.c ++lib scheme/base
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001174
Bram Moolenaardd9a4a42013-06-03 20:12:51 +02001175$(OUTDIR)/if_python.obj: $(OUTDIR) if_python.c if_py_both.h $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001176 $(CC) $(CFLAGS) $(PYTHON_INC) if_python.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177
Bram Moolenaardd9a4a42013-06-03 20:12:51 +02001178$(OUTDIR)/if_python3.obj: $(OUTDIR) if_python3.c if_py_both.h $(INCL)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001179 $(CC) $(CFLAGS) $(PYTHON3_INC) if_python3.c
1180
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181$(OUTDIR)/if_ole.obj: $(OUTDIR) if_ole.cpp $(INCL) if_ole.h
1182
1183$(OUTDIR)/if_ruby.obj: $(OUTDIR) if_ruby.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001184 $(CC) $(CFLAGS) $(RUBY_INC) if_ruby.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185
1186$(OUTDIR)/if_sniff.obj: $(OUTDIR) if_sniff.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001187 $(CC) $(CFLAGS) if_sniff.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188
1189$(OUTDIR)/if_tcl.obj: $(OUTDIR) if_tcl.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001190 $(CC) $(CFLAGS) $(TCL_INC) if_tcl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191
1192$(OUTDIR)/main.obj: $(OUTDIR) main.c $(INCL)
1193
1194$(OUTDIR)/mark.obj: $(OUTDIR) mark.c $(INCL)
1195
1196$(OUTDIR)/memfile.obj: $(OUTDIR) memfile.c $(INCL)
1197
1198$(OUTDIR)/memline.obj: $(OUTDIR) memline.c $(INCL)
1199
1200$(OUTDIR)/menu.obj: $(OUTDIR) menu.c $(INCL)
1201
1202$(OUTDIR)/message.obj: $(OUTDIR) message.c $(INCL)
1203
1204$(OUTDIR)/misc1.obj: $(OUTDIR) misc1.c $(INCL)
1205
1206$(OUTDIR)/misc2.obj: $(OUTDIR) misc2.c $(INCL)
1207
1208$(OUTDIR)/move.obj: $(OUTDIR) move.c $(INCL)
1209
1210$(OUTDIR)/mbyte.obj: $(OUTDIR) mbyte.c $(INCL)
1211
1212$(OUTDIR)/netbeans.obj: $(OUTDIR) netbeans.c $(NBDEBUG_SRC) $(INCL)
1213
1214$(OUTDIR)/normal.obj: $(OUTDIR) normal.c $(INCL)
1215
1216$(OUTDIR)/option.obj: $(OUTDIR) option.c $(INCL)
1217
1218$(OUTDIR)/ops.obj: $(OUTDIR) ops.c $(INCL)
1219
1220$(OUTDIR)/os_mswin.obj: $(OUTDIR) os_mswin.c $(INCL)
1221
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001222$(OUTDIR)/winclip.obj: $(OUTDIR) winclip.c $(INCL)
1223
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224$(OUTDIR)/os_win32.obj: $(OUTDIR) os_win32.c $(INCL) os_win32.h
1225
1226$(OUTDIR)/os_w32exe.obj: $(OUTDIR) os_w32exe.c $(INCL)
1227
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001228$(OUTDIR)/pathdef.obj: $(OUTDIR) $(PATHDEF_SRC) $(INCL)
1229 $(CC) $(CFLAGS) $(PATHDEF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001231$(OUTDIR)/popupmnu.obj: $(OUTDIR) popupmnu.c $(INCL)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001232
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233$(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL)
1234
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001235$(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c regexp_nfa.c $(INCL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236
1237$(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL)
1238
1239$(OUTDIR)/search.obj: $(OUTDIR) search.c $(INCL)
1240
Bram Moolenaaredac1852010-05-18 20:34:20 +02001241$(OUTDIR)/sha256.obj: $(OUTDIR) sha256.c $(INCL)
1242
Bram Moolenaar2e4096b2005-03-20 22:25:45 +00001243$(OUTDIR)/spell.obj: $(OUTDIR) spell.c $(INCL)
1244
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245$(OUTDIR)/syntax.obj: $(OUTDIR) syntax.c $(INCL)
1246
1247$(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL)
1248
1249$(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL)
1250
1251$(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL)
1252
1253$(OUTDIR)/undo.obj: $(OUTDIR) undo.c $(INCL)
1254
1255$(OUTDIR)/window.obj: $(OUTDIR) window.c $(INCL)
1256
1257$(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c
Bram Moolenaarb6356332005-07-18 21:40:44 +00001258 $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001260$(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp \
1261 tearoff.bmp vim.ico vim_error.ico \
1262 vim_alert.ico vim_info.ico vim_quest.ico
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc
1264
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001265iid_ole.c if_ole.h vim.tlb: if_ole.idl
Bram Moolenaarb6356332005-07-18 21:40:44 +00001266 midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \
1267 /header if_ole.h if_ole.idl
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268
1269dimm.h dimm_i.c: dimm.idl
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001270 midl /nologo /error none /proxy nul dimm.idl
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271
1272$(OUTDIR)/dimm_i.obj: $(OUTDIR) dimm_i.c $(INCL)
1273
1274$(OUTDIR)/glbl_ime.obj: $(OUTDIR) glbl_ime.cpp dimm.h $(INCL)
1275
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00001276# $CFLAGS may contain backslashes and double quotes, escape them both.
1277E0_CFLAGS = $(CFLAGS:\=\\)
1278E_CFLAGS = $(E0_CFLAGS:"=\")
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001279# ") stop the string
Bram Moolenaarc30846f2011-02-15 18:06:15 +01001280# $LINKARGS2 may contain backslashes and double quotes, escape them both.
1281E0_LINKARGS2 = $(LINKARGS2:\=\\)
1282E_LINKARGS2 = $(E0_LINKARGS2:"=\")
1283# ") stop the string
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00001284
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001285$(PATHDEF_SRC): auto
1286 @echo creating $(PATHDEF_SRC)
1287 @echo /* pathdef.c */ > $(PATHDEF_SRC)
1288 @echo #include "vim.h" >> $(PATHDEF_SRC)
1289 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; >> $(PATHDEF_SRC)
1290 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; >> $(PATHDEF_SRC)
1291 @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> $(PATHDEF_SRC)
Bram Moolenaarc30846f2011-02-15 18:06:15 +01001292 @echo char_u *all_lflags = (char_u *)"$(link:\=\\) $(LINKARGS1:\=\\) $(E_LINKARGS2)"; >> $(PATHDEF_SRC)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001293 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> $(PATHDEF_SRC)
1294 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> $(PATHDEF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295
1296auto:
1297 if not exist auto/nul mkdir auto
1298
1299# End Custom Build
1300proto.h: \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001301 proto/blowfish.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 proto/buffer.pro \
1303 proto/charset.pro \
Bram Moolenaar07cf3822014-08-10 16:31:50 +02001304 proto/crypt.pro \
1305 proto/crypt_zip.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 proto/diff.pro \
1307 proto/digraph.pro \
1308 proto/edit.pro \
1309 proto/eval.pro \
1310 proto/ex_cmds.pro \
1311 proto/ex_cmds2.pro \
1312 proto/ex_docmd.pro \
1313 proto/ex_eval.pro \
1314 proto/ex_getln.pro \
1315 proto/fileio.pro \
1316 proto/getchar.pro \
Bram Moolenaar58d98232005-07-23 22:25:46 +00001317 proto/hardcopy.pro \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001318 proto/hashtab.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 proto/main.pro \
1320 proto/mark.pro \
1321 proto/memfile.pro \
1322 proto/memline.pro \
1323 proto/menu.pro \
1324 proto/message.pro \
1325 proto/misc1.pro \
1326 proto/misc2.pro \
1327 proto/move.pro \
1328 proto/mbyte.pro \
1329 proto/normal.pro \
1330 proto/ops.pro \
1331 proto/option.pro \
1332 proto/os_mswin.pro \
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001333 proto/winclip.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 proto/os_win32.pro \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001335 proto/popupmnu.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 proto/quickfix.pro \
1337 proto/regexp.pro \
1338 proto/screen.pro \
1339 proto/search.pro \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001340 proto/sha256.pro \
Bram Moolenaar2e4096b2005-03-20 22:25:45 +00001341 proto/spell.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 proto/syntax.pro \
1343 proto/tag.pro \
1344 proto/term.pro \
1345 proto/ui.pro \
1346 proto/undo.pro \
1347 proto/window.pro \
1348 $(NETBEANS_PRO)
1349
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001350.SUFFIXES: .cod .i
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001351
1352# Generate foo.cod (mixed source and assembly listing) from foo.c via "nmake
1353# foo.cod"
1354.c.cod:
1355 $(CC) $(CFLAGS) /FAcs $<
1356
1357# Generate foo.i (preprocessor listing) from foo.c via "nmake foo.i"
1358.c.i:
1359 $(CC) $(CFLAGS) /P /C $<
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001360
1361
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362# vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: