blob: 7cb72453988c3a455b35cbdf8bc8f0ff554a0b85 [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 Moolenaard4a95c32015-07-21 20:22:12 +0200449!if ("$(_NMAKE_VER)" == "14.00.22609.0") || ("$(_NMAKE_VER)" == "14.00.22816.0") || ("$(_NMAKE_VER)" == "14.00.23026.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") \
Bram Moolenaar5c5c9802015-07-10 16:12:48 +0200800 || EXIST("$(MZSCHEME)\collects\scheme\base.rkt") \
801 || EXIST("$(MZSCHEME)\collects\racket\base.rkt")
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100802# for MzScheme >= 4 we need to include byte code for basic Scheme stuff
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000803MZSCHEME_EXTRA_DEP = mzscheme_base.c
804CFLAGS = $(CFLAGS) -DINCLUDE_MZSCHEME_BASE
805!endif
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100806!if EXIST("$(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib")
807MZSCHEME_MAIN_LIB=mzsch
808!else
809MZSCHEME_MAIN_LIB=racket
810!endif
811!if EXIST("$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib") \
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000812 && !EXIST("$(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib")
813!message Building with Precise GC
814MZSCHEME_PRECISE_GC = yes
815CFLAGS = $(CFLAGS) -DMZ_PRECISE_GC
816!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000817!if "$(DYNAMIC_MZSCHEME)" == "yes"
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000818!if "$(MZSCHEME_PRECISE_GC)" == "yes"
819!error MzScheme with Precise GC cannot be loaded dynamically
820!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000821!message MzScheme DLLs will be loaded dynamically
Bram Moolenaarb6356332005-07-18 21:40:44 +0000822CFLAGS = $(CFLAGS) -DDYNAMIC_MZSCHEME \
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100823 -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000824 -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\"
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000825!else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000826!if "$(MZSCHEME_DEBUG)" == "yes"
827CFLAGS = $(CFLAGS) -DMZSCHEME_FORCE_GC
828!endif
829!if "$(MZSCHEME_PRECISE_GC)" == "yes"
830# Precise GC does not use separate dll
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100831MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000832!else
Bram Moolenaarb6356332005-07-18 21:40:44 +0000833MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib \
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100834 $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000835!endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000836!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000837MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100838# increase stack size
839MZSCHEME_LIB = $(MZSCHEME_LIB) /STACK:8388608
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000840!endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000841
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842# Perl interface
843!ifdef PERL
844!ifndef PERL_VER
845PERL_VER = 56
846!endif
847!message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)"
848!if "$(DYNAMIC_PERL)" == "yes"
849!if $(PERL_VER) >= 56
850!message Perl DLL will be loaded dynamically
851!else
852!message Dynamic loading is not supported for Perl versions earlier than 5.6.0
853!message Reverting to static loading...
854!undef DYNAMIC_PERL
855!endif
856!endif
857
858# Is Perl installed in architecture-specific directories?
859!if exist($(PERL)\Bin\MSWin32-x86)
860PERL_ARCH = \MSWin32-x86
861!endif
862
863PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core
864
865# Version-dependent stuff
866!if $(PERL_VER) == 55
867PERL_LIB = $(PERL_INCDIR)\perl.lib
868!else
869PERL_DLL = perl$(PERL_VER).dll
Bram Moolenaar207fd752013-12-14 11:50:35 +0100870!if exist($(PERL_INCDIR)\perl$(PERL_VER).lib)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib
Bram Moolenaar207fd752013-12-14 11:50:35 +0100872!else
873# For ActivePerl 5.18 and later
874PERL_LIB = $(PERL_INCDIR)\libperl$(PERL_VER).a
875!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876!endif
877
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200878CFLAGS = $(CFLAGS) -DFEAT_PERL -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879
880# Do we want to load Perl dynamically?
881!if "$(DYNAMIC_PERL)" == "yes"
882CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\"
883!undef PERL_LIB
884!endif
885
886PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl
887PERL_INC = /I $(PERL_INCDIR)
888PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj
889XSUBPP = $(PERL)\lib\ExtUtils\xsubpp
Bram Moolenaar52f83172011-09-14 19:01:42 +0200890!if exist($(XSUBPP))
Bram Moolenaar612af432011-09-14 10:49:46 +0200891XSUBPP = $(PERL_EXE) $(XSUBPP)
892!else
893XSUBPP = xsubpp
894!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895XSUBPP_TYPEMAP = $(PERL)\lib\ExtUtils\typemap
896
897!endif
898
899#
900# Support Ruby interface
901#
902!ifdef RUBY
903# Set default value
904!ifndef RUBY_VER
905RUBY_VER = 18
906!endif
907!ifndef RUBY_VER_LONG
908RUBY_VER_LONG = 1.8
909!endif
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200910!ifndef RUBY_API_VER
911RUBY_API_VER = $(RUBY_VER_LONG:.=)
912!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913
914!if $(RUBY_VER) >= 18
915!ifndef RUBY_PLATFORM
916RUBY_PLATFORM = i386-mswin32
917!endif
918!ifndef RUBY_INSTALL_NAME
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200919RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_API_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920!endif
921!else
922!ifndef RUBY_PLATFORM
923RUBY_PLATFORM = i586-mswin32
924!endif
925!ifndef RUBY_INSTALL_NAME
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200926RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927!endif
928!endif # $(RUBY_VER) >= 18
929
930!message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)"
931CFLAGS = $(CFLAGS) -DFEAT_RUBY
932RUBY_OBJ = $(OUTDIR)\if_ruby.obj
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200933!if $(RUBY_VER) >= 19
934RUBY_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 +0200935!else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)"
Bram Moolenaar69154f22010-07-18 21:42:34 +0200937!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib
939# Do we want to load Ruby dynamically?
940!if "$(DYNAMIC_RUBY)" == "yes"
941!message Ruby DLL will be loaded dynamically
Bram Moolenaarb6356332005-07-18 21:40:44 +0000942CFLAGS = $(CFLAGS) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_VER=$(RUBY_VER) \
943 -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944!undef RUBY_LIB
945!endif
946!endif # RUBY
947
948#
949# Support PostScript printing
950#
951!if "$(POSTSCRIPT)" == "yes"
952CFLAGS = $(CFLAGS) -DMSWINPS
953!endif # POSTSCRIPT
954
955#
956# FEATURES: TINY, SMALL, NORMAL, BIG or HUGE
957#
958!if "$(FEATURES)"==""
959FEATURES = BIG
960!endif
961CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES)
962
963#
Bram Moolenaard9d30582005-05-18 22:10:28 +0000964# Always generate the .pdb file, so that we get debug symbols that can be used
965# on a crash (doesn't add overhead to the executable).
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000966# Generate edit-and-continue debug info when no optimization - allows to
967# debug more conveniently (able to look at variables which are in registers)
Bram Moolenaard9d30582005-05-18 22:10:28 +0000968#
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000969CFLAGS = $(CFLAGS) /Fd$(OUTDIR)/ $(DEBUGINFO)
970LINK_PDB = /PDB:$(VIM).pdb -debug
Bram Moolenaard9d30582005-05-18 22:10:28 +0000971
972#
973# End extra feature include
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974#
975!message
976
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000977conflags = /nologo /subsystem:$(SUBSYSTEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000979PATHDEF_SRC = $(OUTDIR)\pathdef.c
980
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981!IF "$(MAP)" == "yes"
982# "/map" is for debugging
983conflags = $(conflags) /map
984!ELSEIF "$(MAP)" == "lines"
985# "/mapinfo:lines" is for debugging, only works for VC6 and later
986conflags = $(conflags) /map /mapinfo:lines
987!ENDIF
988
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000989LINKARGS1 = $(linkdebug) $(conflags)
Bram Moolenaarf300ad22015-05-04 16:18:42 +0200990LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(NODEFAULTLIB) $(LIBC) $(OLE_LIB) user32.lib $(SNIFF_LIB) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200991 $(LUA_LIB) $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(RUBY_LIB) \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000992 $(TCL_LIB) $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000994# Report link time code generation progress if used.
995!ifdef NODEBUG
Bram Moolenaare5878f42013-11-08 03:15:47 +0100996!if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000997!if "$(OPTIMIZE)" != "SPACE"
998LINKARGS1 = $(LINKARGS1) /LTCG:STATUS
999!endif
1000!endif
1001!endif
1002
Bram Moolenaarb6356332005-07-18 21:40:44 +00001003all: $(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe \
1004 GvimExt/gvimext.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005
Bram Moolenaarb6356332005-07-18 21:40:44 +00001006$(VIM).exe: $(OUTDIR) $(OBJ) $(GUI_OBJ) $(OLE_OBJ) $(OLE_IDL) $(MZSCHEME_OBJ) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001007 $(LUA_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) $(TCL_OBJ) \
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001008 $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) \
1009 version.c version.h
Bram Moolenaarb6356332005-07-18 21:40:44 +00001010 $(CC) $(CFLAGS) version.c
Bram Moolenaar0dc065e2005-07-04 22:49:24 +00001011 $(link) $(LINKARGS1) -out:$(VIM).exe $(OBJ) $(GUI_OBJ) $(OLE_OBJ) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001012 $(LUA_OBJ) $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001013 $(TCL_OBJ) $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) \
1014 $(XPM_OBJ) $(OUTDIR)\version.obj $(LINKARGS2)
Bram Moolenaarb7776182014-05-22 16:29:06 +02001015 if exist $(VIM).exe.manifest mt.exe -nologo -manifest $(VIM).exe.manifest -updateresource:$(VIM).exe;1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001017$(VIM): $(VIM).exe
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018
1019$(OUTDIR):
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001020 if not exist $(OUTDIR)/nul mkdir $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021
1022install.exe: dosinst.c
Bram Moolenaarb6356332005-07-18 21:40:44 +00001023 $(CC) /nologo -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib \
Bram Moolenaarb230bd52010-05-25 21:02:00 +02001024 user32.lib ole32.lib advapi32.lib uuid.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 - if exist install.exe del install.exe
1026 ren dosinst.exe install.exe
1027
1028uninstal.exe: uninstal.c
1029 $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib
1030
1031vimrun.exe: vimrun.c
1032 $(CC) /nologo -DNDEBUG vimrun.c
1033
1034xxd/xxd.exe: xxd/xxd.c
1035 cd xxd
1036 $(MAKE) /NOLOGO -f Make_mvc.mak
1037 cd ..
1038
1039GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
1040 cd GvimExt
1041 $(MAKE) /NOLOGO -f Makefile $(MAKEFLAGS_GVIMEXT)
1042 cd ..
1043
1044
1045tags: notags
1046 $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro
1047
1048notags:
1049 - if exist tags del tags
1050
1051clean:
Bram Moolenaar02743632005-07-25 20:42:36 +00001052 - if exist $(OUTDIR)/nul $(DEL_TREE) $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 - if exist *.obj del *.obj
1054 - if exist $(VIM).exe del $(VIM).exe
1055 - if exist $(VIM).ilk del $(VIM).ilk
1056 - if exist $(VIM).pdb del $(VIM).pdb
1057 - if exist $(VIM).map del $(VIM).map
1058 - if exist $(VIM).ncb del $(VIM).ncb
1059 - if exist vimrun.exe del vimrun.exe
1060 - if exist install.exe del install.exe
1061 - if exist uninstal.exe del uninstal.exe
1062 - if exist if_perl.c del if_perl.c
1063 - if exist dimm.h del dimm.h
1064 - if exist dimm_i.c del dimm_i.c
1065 - if exist dimm.tlb del dimm.tlb
1066 - if exist dosinst.exe del dosinst.exe
Bram Moolenaar2d6db762009-09-11 10:49:58 +00001067 - if exist mzscheme_base.c del mzscheme_base.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 cd xxd
1069 $(MAKE) /NOLOGO -f Make_mvc.mak clean
1070 cd ..
1071 cd GvimExt
1072 $(MAKE) /NOLOGO -f Makefile clean
1073 cd ..
1074 cd GvimExt
1075 $(MAKE) /NOLOGO -f Makefile clean
1076 cd ..
1077 - if exist testdir\*.out del testdir\*.out
1078
1079test:
1080 cd testdir
1081 $(MAKE) /NOLOGO -f Make_dos.mak win32
1082 cd ..
1083
Bram Moolenaar34114692005-01-02 11:28:13 +00001084testclean:
1085 cd testdir
1086 $(MAKE) /NOLOGO -f Make_dos.mak clean
1087 cd ..
1088
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089###########################################################################
1090
1091# Create a default rule for transforming .c files to .obj files in $(OUTDIR)
1092# Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
Bram Moolenaarf22129b2007-10-03 11:29:44 +00001093!IF "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094.c{$(OUTDIR)/}.obj:
1095!ELSE
1096.c{$(OUTDIR)/}.obj::
1097!ENDIF
Bram Moolenaarb6356332005-07-18 21:40:44 +00001098 $(CC) $(CFLAGS) $<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099
1100# Create a default rule for transforming .cpp files to .obj files in $(OUTDIR)
1101# Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
Bram Moolenaarf22129b2007-10-03 11:29:44 +00001102!IF "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103.cpp{$(OUTDIR)/}.obj:
1104!ELSE
1105.cpp{$(OUTDIR)/}.obj::
1106!ENDIF
Bram Moolenaarb6356332005-07-18 21:40:44 +00001107 $(CC) $(CFLAGS) $<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001109$(OUTDIR)/blowfish.obj: $(OUTDIR) blowfish.c $(INCL)
1110
Bram Moolenaaredac1852010-05-18 20:34:20 +02001111$(OUTDIR)/buffer.obj: $(OUTDIR) buffer.c $(INCL)
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001112
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113$(OUTDIR)/charset.obj: $(OUTDIR) charset.c $(INCL)
1114
Bram Moolenaar07cf3822014-08-10 16:31:50 +02001115$(OUTDIR)/crypt.obj: $(OUTDIR) crypt.c $(INCL)
1116
1117$(OUTDIR)/crypt_zip.obj: $(OUTDIR) crypt_zip.c $(INCL)
1118
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119$(OUTDIR)/diff.obj: $(OUTDIR) diff.c $(INCL)
1120
1121$(OUTDIR)/digraph.obj: $(OUTDIR) digraph.c $(INCL)
1122
1123$(OUTDIR)/edit.obj: $(OUTDIR) edit.c $(INCL)
1124
1125$(OUTDIR)/eval.obj: $(OUTDIR) eval.c $(INCL)
1126
1127$(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL)
1128
1129$(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL)
1130
1131$(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmds.h
1132
1133$(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) ex_cmds.h
1134
1135$(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL)
1136
1137$(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL)
1138
1139$(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL)
1140
1141$(OUTDIR)/getchar.obj: $(OUTDIR) getchar.c $(INCL)
1142
Bram Moolenaar58d98232005-07-23 22:25:46 +00001143$(OUTDIR)/hardcopy.obj: $(OUTDIR) hardcopy.c $(INCL)
1144
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001145$(OUTDIR)/hashtab.obj: $(OUTDIR) hashtab.c $(INCL)
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001146
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147$(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL)
1148
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001149$(OUTDIR)/gui_beval.obj: $(OUTDIR) gui_beval.c $(INCL) $(GUI_INCL)
1150
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151$(OUTDIR)/gui_w32.obj: $(OUTDIR) gui_w32.c gui_w48.c $(INCL) $(GUI_INCL)
1152
Bram Moolenaarb5a7a8b2014-08-06 14:52:30 +02001153$(OUTDIR)/gui_dwrite.obj: $(OUTDIR) gui_dwrite.cpp $(INCL) $(GUI_INCL)
1154
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155$(OUTDIR)/if_cscope.obj: $(OUTDIR) if_cscope.c $(INCL)
1156
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001157$(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL)
1158 $(CC) $(CFLAGS) $(LUA_INC) if_lua.c
1159
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160if_perl.c : if_perl.xs typemap
Bram Moolenaar612af432011-09-14 10:49:46 +02001161 $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001162 -typemap typemap if_perl.xs > if_perl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163
1164$(OUTDIR)/if_perl.obj: $(OUTDIR) if_perl.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001165 $(CC) $(CFLAGS) $(PERL_INC) if_perl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166
1167$(OUTDIR)/if_perlsfio.obj: $(OUTDIR) if_perlsfio.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001168 $(CC) $(CFLAGS) $(PERL_INC) if_perlsfio.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169
Bram Moolenaar75676462013-01-30 14:55:42 +01001170$(OUTDIR)/if_mzsch.obj: $(OUTDIR) if_mzsch.c if_mzsch.h $(INCL) $(MZSCHEME_EXTRA_DEP)
Bram Moolenaar6a9aa372005-07-20 21:54:57 +00001171 $(CC) $(CFLAGS) if_mzsch.c \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001172 -DMZSCHEME_COLLECTS=\"$(MZSCHEME:\=\\)\\collects\"
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001173mzscheme_base.c:
Bram Moolenaar5c5c9802015-07-10 16:12:48 +02001174!IF "$(MZSCHEME_MAIN_LIB)" == "racket"
1175 $(MZSCHEME)\raco ctool --c-mods mzscheme_base.c ++lib scheme/base
1176!ELSE
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001177 $(MZSCHEME)\mzc --c-mods mzscheme_base.c ++lib scheme/base
Bram Moolenaar5c5c9802015-07-10 16:12:48 +02001178!ENDIF
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001179
Bram Moolenaardd9a4a42013-06-03 20:12:51 +02001180$(OUTDIR)/if_python.obj: $(OUTDIR) if_python.c if_py_both.h $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001181 $(CC) $(CFLAGS) $(PYTHON_INC) if_python.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182
Bram Moolenaardd9a4a42013-06-03 20:12:51 +02001183$(OUTDIR)/if_python3.obj: $(OUTDIR) if_python3.c if_py_both.h $(INCL)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001184 $(CC) $(CFLAGS) $(PYTHON3_INC) if_python3.c
1185
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186$(OUTDIR)/if_ole.obj: $(OUTDIR) if_ole.cpp $(INCL) if_ole.h
1187
1188$(OUTDIR)/if_ruby.obj: $(OUTDIR) if_ruby.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001189 $(CC) $(CFLAGS) $(RUBY_INC) if_ruby.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190
1191$(OUTDIR)/if_sniff.obj: $(OUTDIR) if_sniff.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001192 $(CC) $(CFLAGS) if_sniff.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193
1194$(OUTDIR)/if_tcl.obj: $(OUTDIR) if_tcl.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001195 $(CC) $(CFLAGS) $(TCL_INC) if_tcl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196
1197$(OUTDIR)/main.obj: $(OUTDIR) main.c $(INCL)
1198
1199$(OUTDIR)/mark.obj: $(OUTDIR) mark.c $(INCL)
1200
1201$(OUTDIR)/memfile.obj: $(OUTDIR) memfile.c $(INCL)
1202
1203$(OUTDIR)/memline.obj: $(OUTDIR) memline.c $(INCL)
1204
1205$(OUTDIR)/menu.obj: $(OUTDIR) menu.c $(INCL)
1206
1207$(OUTDIR)/message.obj: $(OUTDIR) message.c $(INCL)
1208
1209$(OUTDIR)/misc1.obj: $(OUTDIR) misc1.c $(INCL)
1210
1211$(OUTDIR)/misc2.obj: $(OUTDIR) misc2.c $(INCL)
1212
1213$(OUTDIR)/move.obj: $(OUTDIR) move.c $(INCL)
1214
1215$(OUTDIR)/mbyte.obj: $(OUTDIR) mbyte.c $(INCL)
1216
1217$(OUTDIR)/netbeans.obj: $(OUTDIR) netbeans.c $(NBDEBUG_SRC) $(INCL)
1218
1219$(OUTDIR)/normal.obj: $(OUTDIR) normal.c $(INCL)
1220
1221$(OUTDIR)/option.obj: $(OUTDIR) option.c $(INCL)
1222
1223$(OUTDIR)/ops.obj: $(OUTDIR) ops.c $(INCL)
1224
1225$(OUTDIR)/os_mswin.obj: $(OUTDIR) os_mswin.c $(INCL)
1226
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001227$(OUTDIR)/winclip.obj: $(OUTDIR) winclip.c $(INCL)
1228
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229$(OUTDIR)/os_win32.obj: $(OUTDIR) os_win32.c $(INCL) os_win32.h
1230
1231$(OUTDIR)/os_w32exe.obj: $(OUTDIR) os_w32exe.c $(INCL)
1232
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001233$(OUTDIR)/pathdef.obj: $(OUTDIR) $(PATHDEF_SRC) $(INCL)
1234 $(CC) $(CFLAGS) $(PATHDEF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001236$(OUTDIR)/popupmnu.obj: $(OUTDIR) popupmnu.c $(INCL)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001237
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238$(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL)
1239
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001240$(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c regexp_nfa.c $(INCL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241
1242$(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL)
1243
1244$(OUTDIR)/search.obj: $(OUTDIR) search.c $(INCL)
1245
Bram Moolenaaredac1852010-05-18 20:34:20 +02001246$(OUTDIR)/sha256.obj: $(OUTDIR) sha256.c $(INCL)
1247
Bram Moolenaar2e4096b2005-03-20 22:25:45 +00001248$(OUTDIR)/spell.obj: $(OUTDIR) spell.c $(INCL)
1249
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250$(OUTDIR)/syntax.obj: $(OUTDIR) syntax.c $(INCL)
1251
1252$(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL)
1253
1254$(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL)
1255
1256$(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL)
1257
1258$(OUTDIR)/undo.obj: $(OUTDIR) undo.c $(INCL)
1259
1260$(OUTDIR)/window.obj: $(OUTDIR) window.c $(INCL)
1261
1262$(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c
Bram Moolenaarb6356332005-07-18 21:40:44 +00001263 $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001265$(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp \
1266 tearoff.bmp vim.ico vim_error.ico \
1267 vim_alert.ico vim_info.ico vim_quest.ico
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc
1269
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001270iid_ole.c if_ole.h vim.tlb: if_ole.idl
Bram Moolenaarb6356332005-07-18 21:40:44 +00001271 midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \
1272 /header if_ole.h if_ole.idl
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273
1274dimm.h dimm_i.c: dimm.idl
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001275 midl /nologo /error none /proxy nul dimm.idl
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
1277$(OUTDIR)/dimm_i.obj: $(OUTDIR) dimm_i.c $(INCL)
1278
1279$(OUTDIR)/glbl_ime.obj: $(OUTDIR) glbl_ime.cpp dimm.h $(INCL)
1280
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00001281# $CFLAGS may contain backslashes and double quotes, escape them both.
1282E0_CFLAGS = $(CFLAGS:\=\\)
1283E_CFLAGS = $(E0_CFLAGS:"=\")
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001284# ") stop the string
Bram Moolenaarc30846f2011-02-15 18:06:15 +01001285# $LINKARGS2 may contain backslashes and double quotes, escape them both.
1286E0_LINKARGS2 = $(LINKARGS2:\=\\)
1287E_LINKARGS2 = $(E0_LINKARGS2:"=\")
1288# ") stop the string
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00001289
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001290$(PATHDEF_SRC): auto
1291 @echo creating $(PATHDEF_SRC)
1292 @echo /* pathdef.c */ > $(PATHDEF_SRC)
1293 @echo #include "vim.h" >> $(PATHDEF_SRC)
1294 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; >> $(PATHDEF_SRC)
1295 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; >> $(PATHDEF_SRC)
1296 @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> $(PATHDEF_SRC)
Bram Moolenaarc30846f2011-02-15 18:06:15 +01001297 @echo char_u *all_lflags = (char_u *)"$(link:\=\\) $(LINKARGS1:\=\\) $(E_LINKARGS2)"; >> $(PATHDEF_SRC)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001298 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> $(PATHDEF_SRC)
1299 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> $(PATHDEF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300
1301auto:
1302 if not exist auto/nul mkdir auto
1303
1304# End Custom Build
1305proto.h: \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001306 proto/blowfish.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 proto/buffer.pro \
1308 proto/charset.pro \
Bram Moolenaar07cf3822014-08-10 16:31:50 +02001309 proto/crypt.pro \
1310 proto/crypt_zip.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 proto/diff.pro \
1312 proto/digraph.pro \
1313 proto/edit.pro \
1314 proto/eval.pro \
1315 proto/ex_cmds.pro \
1316 proto/ex_cmds2.pro \
1317 proto/ex_docmd.pro \
1318 proto/ex_eval.pro \
1319 proto/ex_getln.pro \
1320 proto/fileio.pro \
1321 proto/getchar.pro \
Bram Moolenaar58d98232005-07-23 22:25:46 +00001322 proto/hardcopy.pro \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001323 proto/hashtab.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 proto/main.pro \
1325 proto/mark.pro \
1326 proto/memfile.pro \
1327 proto/memline.pro \
1328 proto/menu.pro \
1329 proto/message.pro \
1330 proto/misc1.pro \
1331 proto/misc2.pro \
1332 proto/move.pro \
1333 proto/mbyte.pro \
1334 proto/normal.pro \
1335 proto/ops.pro \
1336 proto/option.pro \
1337 proto/os_mswin.pro \
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001338 proto/winclip.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 proto/os_win32.pro \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001340 proto/popupmnu.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 proto/quickfix.pro \
1342 proto/regexp.pro \
1343 proto/screen.pro \
1344 proto/search.pro \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001345 proto/sha256.pro \
Bram Moolenaar2e4096b2005-03-20 22:25:45 +00001346 proto/spell.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 proto/syntax.pro \
1348 proto/tag.pro \
1349 proto/term.pro \
1350 proto/ui.pro \
1351 proto/undo.pro \
1352 proto/window.pro \
1353 $(NETBEANS_PRO)
1354
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001355.SUFFIXES: .cod .i
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001356
1357# Generate foo.cod (mixed source and assembly listing) from foo.c via "nmake
1358# foo.cod"
1359.c.cod:
1360 $(CC) $(CFLAGS) /FAcs $<
1361
1362# Generate foo.i (preprocessor listing) from foo.c via "nmake foo.i"
1363.c.i:
1364 $(CC) $(CFLAGS) /P /C $<
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001365
1366
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367# vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: