blob: 6718e141a378624d1d96ed2fbf04f876c38a47c5 [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 Moolenaar071d4272004-06-13 20:20:40 +000027# OLE interface: OLE=yes (usually with GUI=yes)
Bram Moolenaar7887d882005-07-01 22:33:52 +000028#
Bram Moolenaara83c3e02006-03-17 23:10:44 +000029# Multibyte support: MBYTE=yes (default is no)
Bram Moolenaar7887d882005-07-01 22:33:52 +000030#
Bram Moolenaar071d4272004-06-13 20:20:40 +000031# IME support: IME=yes (requires GUI=yes)
32# DYNAMIC_IME=[yes or no] (to load the imm32.dll dynamically, default
33# is yes)
34# Global IME support: GIME=yes (requires GUI=yes)
Bram Moolenaar7887d882005-07-01 22:33:52 +000035#
Bram Moolenaar0ba04292010-07-14 23:23:17 +020036# Lua interface:
37# LUA=[Path to Lua directory]
38# DYNAMIC_LUA=yes (to load the Lua DLL dynamically)
39# LUA_VER=[Lua version] (default is 51)
40#
Bram Moolenaar65c1b012005-01-31 19:02:28 +000041# MzScheme interface:
42# MZSCHEME=[Path to MzScheme directory]
43# DYNAMIC_MZSCHEME=yes (to load the MzScheme DLLs dynamically)
44# MZSCHEME_VER=[version, 205_000, ...]
Bram Moolenaar9e70cf12009-05-26 20:59:55 +000045# MZSCHEME_DEBUG=no
Bram Moolenaar7887d882005-07-01 22:33:52 +000046#
Bram Moolenaar071d4272004-06-13 20:20:40 +000047# Perl interface:
48# PERL=[Path to Perl directory]
49# DYNAMIC_PERL=yes (to load the Perl DLL dynamically)
Bram Moolenaar7887d882005-07-01 22:33:52 +000050# PERL_VER=[Perl version, in the form 55 (5.005), 56 (5.6.x), etc]
51# (default is 56)
52#
Bram Moolenaar071d4272004-06-13 20:20:40 +000053# Python interface:
54# PYTHON=[Path to Python directory]
55# DYNAMIC_PYTHON=yes (to load the Python DLL dynamically)
56# PYTHON_VER=[Python version, eg 15, 20] (default is 22)
Bram Moolenaar7887d882005-07-01 22:33:52 +000057#
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020058# Python3 interface:
59# PYTHON3=[Path to Python3 directory]
60# DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically)
61# PYTHON3_VER=[Python3 version, eg 30, 31] (default is 31)
62#
Bram Moolenaar071d4272004-06-13 20:20:40 +000063# Ruby interface:
64# RUBY=[Path to Ruby directory]
65# DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically)
66# RUBY_VER=[Ruby version, eg 16, 17] (default is 18)
67# RUBY_VER_LONG=[Ruby version, eg 1.6, 1.7] (default is 1.8)
68# You must set RUBY_VER_LONG when change RUBY_VER.
Bram Moolenaarda3cb832012-08-02 21:21:47 +020069# You must set RUBY_API_VER to RUBY_VER_LONG.
70# Don't set ruby API version to RUBY_VER like 191.
Bram Moolenaar7887d882005-07-01 22:33:52 +000071#
Bram Moolenaar071d4272004-06-13 20:20:40 +000072# Tcl interface:
73# TCL=[Path to Tcl directory]
74# DYNAMIC_TCL=yes (to load the Tcl DLL dynamically)
75# TCL_VER=[Tcl version, e.g. 80, 83] (default is 83)
76# TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.3)
77# You must set TCL_VER_LONG when you set TCL_VER.
Bram Moolenaar7887d882005-07-01 22:33:52 +000078#
79# SNiFF+ interface: SNIFF=yes
80#
81# Cscope support: CSCOPE=yes
82#
83# Iconv library support (always dynamically loaded):
84# ICONV=[yes or no] (default is yes)
85#
86# Intl library support (always dynamically loaded):
87# GETTEXT=[yes or no] (default is yes)
88# See http://sourceforge.net/projects/gettext/
89#
Bram Moolenaar884f6e42013-05-19 21:03:54 +020090# PostScript printing: POSTSCRIPT=yes (default is no)
Bram Moolenaar7887d882005-07-01 22:33:52 +000091#
Bram Moolenaar884f6e42013-05-19 21:03:54 +020092# Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes)
Bram Moolenaar7887d882005-07-01 22:33:52 +000093#
Bram Moolenaar884f6e42013-05-19 21:03:54 +020094# XPM Image Support: XPM=[path to XPM directory]
95# Default is "xpm", using the files included in the distribution.
96# Use "no" to disable this feature.
Bram Moolenaar7887d882005-07-01 22:33:52 +000097#
Bram Moolenaar884f6e42013-05-19 21:03:54 +020098# Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED)
Bram Moolenaar7887d882005-07-01 22:33:52 +000099#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200100# Processor Version: CPUNR=[i386, i486, i586, i686, pentium4] (default is
101# i386)
Bram Moolenaar7887d882005-07-01 22:33:52 +0000102#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200103# Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400)
Bram Moolenaar7887d882005-07-01 22:33:52 +0000104#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105# Debug version: DEBUG=yes
106# Mapfile: MAP=[no, yes or lines] (default is yes)
107# no: Don't write a mapfile.
108# yes: Write a normal mapfile.
109# lines: Write a mapfile with line numbers (only for VC6 and later)
Bram Moolenaar7887d882005-07-01 22:33:52 +0000110#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200111# Netbeans Debugging Support: NBDEBUG=[yes or no] (should be no, yes
112# doesn't work)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200114# Visual C Version: MSVCVER=m.n (default derived from nmake if undefined)
115#
116# Static Code Analysis: ANALYZE=yes (works with VS2012 only)
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000117#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118# You can combine any of these interfaces
119#
120# Example: To build the non-debug, GUI version with Perl interface:
121# nmake -f Make_mvc.mak GUI=yes PERL=C:\Perl
122#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123# DEBUG with Make_mvc.mak and Make_dvc.mak:
124# This makefile gives a fineness of control which is not supported in
125# Visual C++ configuration files. Therefore, debugging requires a bit of
126# extra work.
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000127# Make_dvc.mak is a Visual C++ project to access that support. It may be
128# badly out of date for the Visual C++ you are using...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129# To use Make_dvc.mak:
130# 1) Build Vim with Make_mvc.mak.
131# Use a "DEBUG=yes" argument to build Vim with debug support.
132# E.g. the following builds gvimd.exe:
133# nmake -f Make_mvc.mak debug=yes gui=yes
134# 2) Use MS Devstudio and set it up to allow that file to be debugged:
135# i) Pass Make_dvc.mak to the IDE.
136# Use the "open workspace" menu entry to load Make_dvc.mak.
137# Alternatively, from the command line:
138# msdev /nologo Make_dvc.mak
139# Note: Make_dvc.mak is in VC4.0 format. Later VC versions see
140# this and offer to convert it to their own format. Accept that.
141# It creates a file called Make_dvc.dsw which can then be used
142# for further operations. E.g.
143# msdev /nologo Make_dvc.dsw
144# ii) Set the built executable for debugging:
145# a) Alt+F7/Debug takes you to the Debug dialog.
146# b) Fill "Executable for debug session". e.g. gvimd.exe
147# c) Fill "Program arguments". e.g. -R dosinst.c
148# d) Complete the dialog
149# 3) You can now debug the executable you built with Make_mvc.mak
150#
151# Note: Make_dvc.mak builds vimrun.exe, because it must build something
152# to be a valid makefile..
153
154### See feature.h for a list of optionals.
155# If you want to build some optional features without modifying the source,
156# you can set DEFINES on the command line, e.g.,
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000157# nmake -f Make_mvc.mvc "DEFINES=-DEMACS_TAGS"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000159# Build on both Windows NT/XP and Windows 9x
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160
161TARGETOS = BOTH
162
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000163# Select one of eight object code directories, depends on GUI, OLE, DEBUG and
164# interfaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165# If you change something else, do "make clean" first!
166!if "$(GUI)" == "yes"
167OBJDIR = .\ObjG
168!else
169OBJDIR = .\ObjC
170!endif
171!if "$(OLE)" == "yes"
172OBJDIR = $(OBJDIR)O
173!endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200174!ifdef LUA
175OBJDIR = $(OBJDIR)U
176!endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000177!ifdef PERL
178OBJDIR = $(OBJDIR)L
179!endif
180!ifdef PYTHON
181OBJDIR = $(OBJDIR)Y
182!endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200183!ifdef PYTHON3
184OBJDIR = $(OBJDIR)H
185!endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000186!ifdef TCL
187OBJDIR = $(OBJDIR)T
188!endif
189!ifdef RUBY
190OBJDIR = $(OBJDIR)R
191!endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000192!ifdef MZSCHEME
193OBJDIR = $(OBJDIR)Z
194!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195!if "$(DEBUG)" == "yes"
196OBJDIR = $(OBJDIR)d
197!endif
198
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000199# Win32.mak requires that CPU be set appropriately.
200# To cross-compile for Win64, set CPU=AMD64 or CPU=IA64.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201
202!ifdef PROCESSOR_ARCHITECTURE
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000203# We're on Windows NT or using VC 6+
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000204! ifdef CPU
205ASSEMBLY_ARCHITECTURE=$(CPU)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000206# Using I386 for $ASSEMBLY_ARCHITECTURE doesn't work for VC7.
207! if ("$(ASSEMBLY_ARCHITECTURE)" == "i386") || ("$(ASSEMBLY_ARCHITECTURE)" == "I386")
208ASSEMBLY_ARCHITECTURE = x86
209! endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000210! else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211CPU = $(PROCESSOR_ARCHITECTURE)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000212ASSEMBLY_ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000213! if ("$(CPU)" == "x86") || ("$(CPU)" == "X86")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214CPU = i386
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000215! endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216! endif
217!else # !PROCESSOR_ARCHITECTURE
218# We're on Windows 95
219CPU = i386
220!endif # !PROCESSOR_ARCHITECTURE
Bram Moolenaare2db4362012-09-05 17:57:39 +0200221OBJDIR = $(OBJDIR)$(CPU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223# Build a retail version by default
224
225!if "$(DEBUG)" != "yes"
226NODEBUG = 1
227!else
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000228!undef NODEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229MAKEFLAGS_GVIMEXT = DEBUG=yes
230!endif
231
232
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000233# Get all sorts of useful, standard macros from the Platform SDK.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234
Bram Moolenaar6f586de2012-09-18 22:00:08 +0200235!ifdef SDK_INCLUDE_DIR
236!include $(SDK_INCLUDE_DIR)\Win32.mak
237!else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000238!include <Win32.mak>
Bram Moolenaar6f586de2012-09-18 22:00:08 +0200239!endif
240
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241
Bram Moolenaar8cd213c2010-06-01 21:57:09 +0200242# Flag to turn on Win64 compatibility warnings for VC7.x and VC8.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200243WP64CHECK = /Wp64
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244
245#>>>>> path of the compiler and linker; name of include and lib directories
246# PATH = c:\msvc20\bin;$(PATH)
247# INCLUDE = c:\msvc20\include
248# LIB = c:\msvc20\lib
249
250!ifndef CTAGS
251CTAGS = ctags
252!endif
253
254!if "$(SNIFF)" == "yes"
255# SNIFF - Include support for SNiFF+.
256SNIFF_INCL = if_sniff.h
257SNIFF_OBJ = $(OBJDIR)/if_sniff.obj
Bram Moolenaarb6356332005-07-18 21:40:44 +0000258SNIFF_LIB = shell32.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259SNIFF_DEFS = -DFEAT_SNIFF
260# The SNiFF integration needs multithreaded libraries!
261MULTITHREADED = yes
262!endif
263
264!ifndef CSCOPE
265CSCOPE = yes
266!endif
267
268!if "$(CSCOPE)" == "yes"
269# CSCOPE - Include support for Cscope
270CSCOPE_INCL = if_cscope.h
271CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj
272CSCOPE_DEFS = -DFEAT_CSCOPE
273!endif
274
275!ifndef NETBEANS
276NETBEANS = $(GUI)
277!endif
278
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000279# Only allow NETBEANS and XPM for a GUI build.
280!if "$(GUI)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281!if "$(NETBEANS)" == "yes"
282# NETBEANS - Include support for Netbeans integration
283NETBEANS_PRO = proto/netbeans.pro
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000284NETBEANS_OBJ = $(OBJDIR)/netbeans.obj
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285NETBEANS_DEFS = -DFEAT_NETBEANS_INTG
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000286
287!if "$(NBDEBUG)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288NBDEBUG_DEFS = -DNBDEBUG
289NBDEBUG_INCL = nbdebug.h
290NBDEBUG_SRC = nbdebug.c
291!endif
Bram Moolenaarb6356332005-07-18 21:40:44 +0000292NETBEANS_LIB = WSock32.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293!endif
294
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200295!ifndef XPM
296# XPM is not set, use the included xpm files, depending on the architecture.
Bram Moolenaare2db4362012-09-05 17:57:39 +0200297!if "$(CPU)" == "AMD64"
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200298XPM = xpm\x64
Bram Moolenaare2db4362012-09-05 17:57:39 +0200299!elseif "$(CPU)" == "i386"
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200300XPM = xpm\x86
Bram Moolenaare2db4362012-09-05 17:57:39 +0200301!else
302XPM = no
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200303!endif
304!endif
305!if "$(XPM)" != "no"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306# XPM - Include support for XPM signs
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200307# See the xpm directory for more information.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308XPM_OBJ = $(OBJDIR)/xpm_w32.obj
309XPM_DEFS = -DFEAT_XPM_W32
310XPM_LIB = $(XPM)\lib\libXpm.lib
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200311XPM_INC = -I $(XPM)\include -I $(XPM)\..\include
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312!endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000313!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000315# Set which version of the CRT to use
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316!if defined(USE_MSVCRT)
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000317# CVARS = $(cvarsdll)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000318# !elseif defined(MULTITHREADED)
319# CVARS = $(cvarsmt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320!else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000321# CVARS = $(cvars)
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000322# CVARS = $(cvarsmt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323!endif
324
325# need advapi32.lib for GetUserName()
326# need shell32.lib for ExtractIcon()
327# gdi32.lib and comdlg32.lib for printing support
328# ole32.lib and uuid.lib are needed for FEAT_SHORTCUT
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000329CON_LIB = oldnames.lib kernel32.lib advapi32.lib shell32.lib gdi32.lib \
330 comdlg32.lib ole32.lib uuid.lib /machine:$(CPU) /nodefaultlib
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000331!if "$(DELAYLOAD)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332CON_LIB = $(CON_LIB) /DELAYLOAD:comdlg32.dll /DELAYLOAD:ole32.dll DelayImp.lib
333!endif
334
335### Set the default $(WINVER) to make it work with VC++7.0 (VS.NET)
336# When set to 0x0500 ":browse" stops working.
337!ifndef WINVER
338WINVER = 0x0400
339!endif
340
341# If you have a fixed directory for $VIM or $VIMRUNTIME, other than the normal
342# default, use these lines.
343#VIMRCLOC = somewhere
344#VIMRUNTIMEDIR = somewhere
345
346CFLAGS = -c /W3 /nologo $(CVARS) -I. -Iproto -DHAVE_PATHDEF -DWIN32 \
347 $(SNIFF_DEFS) $(CSCOPE_DEFS) $(NETBEANS_DEFS) \
348 $(NBDEBUG_DEFS) $(XPM_DEFS) \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000349 $(DEFINES) -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \
350 /Fo$(OUTDIR)/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351
352#>>>>> end of choices
353###########################################################################
354
355!ifdef OS
356OS_TYPE = winnt
357DEL_TREE = rmdir /s /q
358!else
359OS_TYPE = win95
360DEL_TREE = deltree /y
361!endif
362
363INTDIR=$(OBJDIR)
364OUTDIR=$(OBJDIR)
365
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000366# Derive version of VC being used from nmake if not specified
367!if "$(MSVCVER)" == ""
368!if "$(_NMAKE_VER)" == ""
369MSVCVER = 4.0
370!endif
371!if "$(_NMAKE_VER)" == "162"
372MSVCVER = 5.0
373!endif
374!if "$(_NMAKE_VER)" == "6.00.8168.0"
375MSVCVER = 6.0
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000376CPU = ix86
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000377!endif
Bram Moolenaar67a4f6c2012-10-21 02:41:08 +0200378!if "$(_NMAKE_VER)" == "6.00.9782.0"
379MSVCVER = 6.0
380CPU = ix86
381!endif
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000382!if "$(_NMAKE_VER)" == "7.00.9466"
383MSVCVER = 7.0
384!endif
385!if "$(_NMAKE_VER)" == "7.10.3077"
386MSVCVER = 7.1
387!endif
388!if "$(_NMAKE_VER)" == "8.00.50727.42"
389MSVCVER = 8.0
390!endif
391!if "$(_NMAKE_VER)" == "8.00.50727.762"
392MSVCVER = 8.0
393!endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000394!if "$(_NMAKE_VER)" == "9.00.20706.01"
395MSVCVER = 9.0
396!endif
Bram Moolenaara7241f52008-06-24 20:39:31 +0000397!if "$(_NMAKE_VER)" == "9.00.21022.08"
398MSVCVER = 9.0
399!endif
Bram Moolenaar13658312009-02-04 17:35:52 +0000400!if "$(_NMAKE_VER)" == "9.00.30729.01"
401MSVCVER = 9.0
402!endif
Bram Moolenaarda2f99a2009-06-16 14:34:38 +0000403!if "$(_NMAKE_VER)" == "10.00.20506.01"
404MSVCVER = 10.0
405!endif
Bram Moolenaar2498b3a2010-03-02 17:59:44 +0100406!if "$(_NMAKE_VER)" == "10.00.30128.01"
407MSVCVER = 10.0
408!endif
Bram Moolenaar218116c2010-05-20 21:46:00 +0200409!if "$(_NMAKE_VER)" == "10.00.30319.01"
410MSVCVER = 10.0
411!endif
Bram Moolenaare3a22462012-10-23 05:35:34 +0200412!if "$(_NMAKE_VER)" == "10.00.40219.01"
413MSVCVER = 10.0
414!endif
Bram Moolenaar2b017fa2012-09-18 18:27:12 +0200415!if "$(_NMAKE_VER)" == "11.00.50727.1"
416MSVCVER = 11.0
417!endif
Bram Moolenaar52cc2662012-12-06 21:30:29 +0100418!if "$(_NMAKE_VER)" == "11.00.51106.1"
419MSVCVER = 11.0
420!endif
Bram Moolenaar29042482013-05-07 05:11:17 +0200421!if "$(_NMAKE_VER)" == "11.00.60315.1"
422MSVCVER = 11.0
423!endif
Bram Moolenaarc64b85a2013-07-09 13:15:46 +0200424!if "$(_NMAKE_VER)" == "11.00.60610.1"
425MSVCVER = 11.0
426!endif
Bram Moolenaare5878f42013-11-08 03:15:47 +0100427!if "$(_NMAKE_VER)" == "12.00.21005.1"
428MSVCVER = 12.0
429!endif
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000430!endif
431
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200432# Abort building VIM if version of VC is unrecognised.
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000433!ifndef MSVCVER
434!message *** ERROR
435!message Cannot determine Visual C version being used. If you are using the
436!message Windows SDK then you must have the environment variable MSVCVER set to
437!message your version of the VC compiler. If you are not using the Express
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000438!message version of Visual C, you can either set MSVCVER or update this makefile
439!message to handle the new value for _NMAKE_VER, "$(_NMAKE_VER)".
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000440!error Make aborted.
441!endif
442
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443# Convert processor ID to MVC-compatible number
Bram Moolenaare5878f42013-11-08 03:15:47 +0100444!if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") && ("$(MSVCVER)" != "11.0") && ("$(MSVCVER)" != "12.0")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445!if "$(CPUNR)" == "i386"
446CPUARG = /G3
447!elseif "$(CPUNR)" == "i486"
448CPUARG = /G4
449!elseif "$(CPUNR)" == "i586"
450CPUARG = /G5
451!elseif "$(CPUNR)" == "i686"
452CPUARG = /G6
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000453!elseif "$(CPUNR)" == "pentium4"
Bram Moolenaar34114692005-01-02 11:28:13 +0000454CPUARG = /G7 /arch:SSE2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455!else
456CPUARG =
457!endif
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000458!else
Bram Moolenaar3ed16dc2011-06-12 20:31:31 +0200459# VC8/9/10 only allows specifying SSE architecture but only for 32bit
460!if "$(ASSEMBLY_ARCHITECTURE)" == "x86" && "$(CPUNR)" == "pentium4"
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000461CPUARG = /arch:SSE2
462!endif
463!endif
464
465LIBC =
466DEBUGINFO = /Zi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467
468!ifdef NODEBUG
469VIM = vim
470!if "$(OPTIMIZE)" == "SPACE"
471OPTFLAG = /O1
472!elseif "$(OPTIMIZE)" == "SPEED"
473OPTFLAG = /O2
474!else # MAXSPEED
475OPTFLAG = /Ox
476!endif
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200477
Bram Moolenaare5878f42013-11-08 03:15:47 +0100478!if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000479# Use link time code generation if not worried about size
480!if "$(OPTIMIZE)" != "SPACE"
481OPTFLAG = $(OPTFLAG) /GL
482!endif
483!endif
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200484
485# (/Wp64 is deprecated in VC9 and generates an obnoxious warning.)
486!if ("$(MSVCVER)" == "7.0") || ("$(MSVCVER)" == "7.1") || ("$(MSVCVER)" == "8.0")
487CFLAGS=$(CFLAGS) $(WP64CHECK)
488!endif
489
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200490# Static code analysis generally available starting with VS2012
Bram Moolenaar815135e2013-11-09 02:32:18 +0100491!if ("$(ANALYZE)" == "yes") && (("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0"))
Bram Moolenaar884f6e42013-05-19 21:03:54 +0200492CFLAGS=$(CFLAGS) /analyze
493!endif
494
Bram Moolenaar34114692005-01-02 11:28:13 +0000495CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497! ifdef USE_MSVCRT
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000498CFLAGS = $(CFLAGS) /MD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499LIBC = msvcrt.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500! else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000501LIBC = libcmt.lib
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000502CFLAGS = $(CFLAGS) /Zl /MT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503! endif
504!else # DEBUG
505VIM = vimd
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000506! if ("$(CPU)" == "i386") || ("$(CPU)" == "ix86")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000507DEBUGINFO = /ZI
508! endif
Bram Moolenaard9d30582005-05-18 22:10:28 +0000509CFLAGS = $(CFLAGS) -D_DEBUG -DDEBUG /Od
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510RCFLAGS = $(rcflags) $(rcvars) -D_DEBUG -DDEBUG
511# The /fixed:no is needed for Quantify. Assume not 4.? as unsupported in VC4.0.
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000512! if "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513LIBC =
514! else
515LIBC = /fixed:no
516! endif
Bram Moolenaar6a9aa372005-07-20 21:54:57 +0000517! ifdef USE_MSVCRT
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000518CFLAGS = $(CFLAGS) /MDd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519LIBC = $(LIBC) msvcrtd.lib
Bram Moolenaar6a9aa372005-07-20 21:54:57 +0000520! else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000521LIBC = $(LIBC) libcmtd.lib
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000522CFLAGS = $(CFLAGS) /Zl /MTd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523! endif
524!endif # DEBUG
525
526INCL = vim.h os_win32.h ascii.h feature.h globals.h keymap.h macros.h \
527 proto.h option.h structs.h term.h $(SNIFF_INCL) $(CSCOPE_INCL) \
528 $(NBDEBUG_INCL)
529
530OBJ = \
Bram Moolenaar40e6a712010-05-16 22:32:54 +0200531 $(OUTDIR)\blowfish.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 $(OUTDIR)\buffer.obj \
533 $(OUTDIR)\charset.obj \
534 $(OUTDIR)\diff.obj \
535 $(OUTDIR)\digraph.obj \
536 $(OUTDIR)\edit.obj \
537 $(OUTDIR)\eval.obj \
538 $(OUTDIR)\ex_cmds.obj \
539 $(OUTDIR)\ex_cmds2.obj \
540 $(OUTDIR)\ex_docmd.obj \
541 $(OUTDIR)\ex_eval.obj \
542 $(OUTDIR)\ex_getln.obj \
543 $(OUTDIR)\fileio.obj \
544 $(OUTDIR)\fold.obj \
545 $(OUTDIR)\getchar.obj \
Bram Moolenaar58d98232005-07-23 22:25:46 +0000546 $(OUTDIR)\hardcopy.obj \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000547 $(OUTDIR)\hashtab.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 $(OUTDIR)\main.obj \
549 $(OUTDIR)\mark.obj \
550 $(OUTDIR)\mbyte.obj \
551 $(OUTDIR)\memfile.obj \
552 $(OUTDIR)\memline.obj \
553 $(OUTDIR)\menu.obj \
554 $(OUTDIR)\message.obj \
555 $(OUTDIR)\misc1.obj \
556 $(OUTDIR)\misc2.obj \
557 $(OUTDIR)\move.obj \
558 $(OUTDIR)\normal.obj \
559 $(OUTDIR)\ops.obj \
560 $(OUTDIR)\option.obj \
561 $(OUTDIR)\os_mswin.obj \
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100562 $(OUTDIR)\winclip.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 $(OUTDIR)\os_win32.obj \
564 $(OUTDIR)\pathdef.obj \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000565 $(OUTDIR)\popupmnu.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 $(OUTDIR)\quickfix.obj \
567 $(OUTDIR)\regexp.obj \
568 $(OUTDIR)\screen.obj \
569 $(OUTDIR)\search.obj \
Bram Moolenaaredac1852010-05-18 20:34:20 +0200570 $(OUTDIR)\sha256.obj \
Bram Moolenaar2e4096b2005-03-20 22:25:45 +0000571 $(OUTDIR)\spell.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 $(OUTDIR)\syntax.obj \
573 $(OUTDIR)\tag.obj \
574 $(OUTDIR)\term.obj \
575 $(OUTDIR)\ui.obj \
576 $(OUTDIR)\undo.obj \
577 $(OUTDIR)\window.obj \
578 $(OUTDIR)\vim.res
579
580!if "$(OLE)" == "yes"
581CFLAGS = $(CFLAGS) -DFEAT_OLE
582RCFLAGS = $(RCFLAGS) -DFEAT_OLE
583OLE_OBJ = $(OUTDIR)\if_ole.obj
584OLE_IDL = if_ole.idl
585OLE_LIB = oleaut32.lib
586!endif
587
588!if "$(IME)" == "yes"
589CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME
590!ifndef DYNAMIC_IME
591DYNAMIC_IME = yes
592!endif
593!if "$(DYNAMIC_IME)" == "yes"
594CFLAGS = $(CFLAGS) -DDYNAMIC_IME
595!else
596IME_LIB = imm32.lib
597!endif
598!endif
599
600!if "$(GIME)" == "yes"
601CFLAGS = $(CFLAGS) -DGLOBAL_IME
602OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj
603MBYTE = yes
604!endif
605
606!if "$(MBYTE)" == "yes"
607CFLAGS = $(CFLAGS) -DFEAT_MBYTE
608!endif
609
610!if "$(GUI)" == "yes"
611SUBSYSTEM = windows
612CFLAGS = $(CFLAGS) -DFEAT_GUI_W32
613RCFLAGS = $(RCFLAGS) -DFEAT_GUI_W32
614VIM = g$(VIM)
615GUI_INCL = \
616 gui.h \
617 regexp.h \
618 ascii.h \
619 ex_cmds.h \
620 farsi.h \
621 feature.h \
622 globals.h \
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000623 gui_beval.h \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 keymap.h \
625 macros.h \
626 option.h \
627 os_dos.h \
628 os_win32.h
629GUI_OBJ = \
630 $(OUTDIR)\gui.obj \
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000631 $(OUTDIR)\gui_beval.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 $(OUTDIR)\gui_w32.obj \
633 $(OUTDIR)\os_w32exe.obj
634GUI_LIB = \
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000635 gdi32.lib version.lib $(IME_LIB) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 winspool.lib comctl32.lib advapi32.lib shell32.lib \
637 /machine:$(CPU) /nodefaultlib
638!else
639SUBSYSTEM = console
640!endif
641
642# iconv.dll library (dynamically loaded)
643!ifndef ICONV
644ICONV = yes
645!endif
646!if "$(ICONV)" == "yes"
647CFLAGS = $(CFLAGS) -DDYNAMIC_ICONV
648!endif
649
650# libintl.dll library
651!ifndef GETTEXT
652GETTEXT = yes
653!endif
654!if "$(GETTEXT)" == "yes"
655CFLAGS = $(CFLAGS) -DDYNAMIC_GETTEXT
656!endif
657
658# TCL interface
659!ifdef TCL
660!ifndef TCL_VER
661TCL_VER = 83
662TCL_VER_LONG = 8.3
663!endif
664!message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)"
665!if "$(DYNAMIC_TCL)" == "yes"
666!message Tcl DLL will be loaded dynamically
667TCL_DLL = tcl$(TCL_VER).dll
Bram Moolenaarb6356332005-07-18 21:40:44 +0000668CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \
669 -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670TCL_OBJ = $(OUTDIR)\if_tcl.obj
671TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
Bram Moolenaar84a4c332012-02-22 16:01:56 +0100672TCL_LIB = "$(TCL)\lib\tclstub$(TCL_VER).lib"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673!else
674CFLAGS = $(CFLAGS) -DFEAT_TCL
675TCL_OBJ = $(OUTDIR)\if_tcl.obj
676TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
677TCL_LIB = $(TCL)\lib\tcl$(TCL_VER)vc.lib
678!endif
679!endif
680
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200681# Lua interface
682!ifdef LUA
683!ifndef LUA_VER
684LUA_VER = 51
685!endif
686!message Lua requested (version $(LUA_VER)) - root dir is "$(LUA)"
687!if "$(DYNAMIC_LUA)" == "yes"
688!message Lua DLL will be loaded dynamically
689!endif
690CFLAGS = $(CFLAGS) -DFEAT_LUA
691LUA_OBJ = $(OUTDIR)\if_lua.obj
692LUA_INC = /I "$(LUA)\include" /I "$(LUA)"
693!if "$(DYNAMIC_LUA)" == "yes"
694CFLAGS = $(CFLAGS) -DDYNAMIC_LUA \
695 -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\"
696LUA_LIB = /nodefaultlib:lua$(LUA_VER).lib
697!else
698LUA_LIB = "$(LUA)\lib\lua$(LUA_VER).lib"
699!endif
700!endif
701
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200702!ifdef PYTHON
703!ifdef PYTHON3
704DYNAMIC_PYTHON=yes
705DYNAMIC_PYTHON3=yes
706!endif
707!endif
708
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709# PYTHON interface
710!ifdef PYTHON
711!ifndef PYTHON_VER
712PYTHON_VER = 22
713!endif
714!message Python requested (version $(PYTHON_VER)) - root dir is "$(PYTHON)"
715!if "$(DYNAMIC_PYTHON)" == "yes"
716!message Python DLL will be loaded dynamically
717!endif
718CFLAGS = $(CFLAGS) -DFEAT_PYTHON
719PYTHON_OBJ = $(OUTDIR)\if_python.obj
720PYTHON_INC = /I "$(PYTHON)\Include" /I "$(PYTHON)\PC"
721!if "$(DYNAMIC_PYTHON)" == "yes"
Bram Moolenaarb6356332005-07-18 21:40:44 +0000722CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON \
723 -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724PYTHON_LIB = /nodefaultlib:python$(PYTHON_VER).lib
725!else
726PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib
727!endif
728!endif
729
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200730# PYTHON3 interface
731!ifdef PYTHON3
732!ifndef PYTHON3_VER
733PYTHON3_VER = 31
734!endif
735!message Python3 requested (version $(PYTHON3_VER)) - root dir is "$(PYTHON3)"
736!if "$(DYNAMIC_PYTHON3)" == "yes"
737!message Python3 DLL will be loaded dynamically
738!endif
739CFLAGS = $(CFLAGS) -DFEAT_PYTHON3
740PYTHON3_OBJ = $(OUTDIR)\if_python3.obj
741PYTHON3_INC = /I "$(PYTHON3)\Include" /I "$(PYTHON3)\PC"
742!if "$(DYNAMIC_PYTHON3)" == "yes"
743CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON3 \
744 -DDYNAMIC_PYTHON3_DLL=\"python$(PYTHON3_VER).dll\"
745PYTHON3_LIB = /nodefaultlib:python$(PYTHON3_VER).lib
746!else
747PYTHON3_LIB = $(PYTHON3)\libs\python$(PYTHON3_VER).lib
748!endif
749!endif
750
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000751# MzScheme interface
752!ifdef MZSCHEME
753!message MzScheme requested - root dir is "$(MZSCHEME)"
754!ifndef MZSCHEME_VER
755MZSCHEME_VER = 205_000
756!endif
757CFLAGS = $(CFLAGS) -DFEAT_MZSCHEME -I $(MZSCHEME)\include
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100758!if EXIST("$(MZSCHEME)\collects\scheme\base.ss") \
759 || EXIST("$(MZSCHEME)\collects\scheme\base.rkt")
760# for MzScheme >= 4 we need to include byte code for basic Scheme stuff
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000761MZSCHEME_EXTRA_DEP = mzscheme_base.c
762CFLAGS = $(CFLAGS) -DINCLUDE_MZSCHEME_BASE
763!endif
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100764!if EXIST("$(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib")
765MZSCHEME_MAIN_LIB=mzsch
766!else
767MZSCHEME_MAIN_LIB=racket
768!endif
769!if EXIST("$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib") \
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000770 && !EXIST("$(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib")
771!message Building with Precise GC
772MZSCHEME_PRECISE_GC = yes
773CFLAGS = $(CFLAGS) -DMZ_PRECISE_GC
774!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000775!if "$(DYNAMIC_MZSCHEME)" == "yes"
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000776!if "$(MZSCHEME_PRECISE_GC)" == "yes"
777!error MzScheme with Precise GC cannot be loaded dynamically
778!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000779!message MzScheme DLLs will be loaded dynamically
Bram Moolenaarb6356332005-07-18 21:40:44 +0000780CFLAGS = $(CFLAGS) -DDYNAMIC_MZSCHEME \
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100781 -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000782 -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\"
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000783!else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000784!if "$(MZSCHEME_DEBUG)" == "yes"
785CFLAGS = $(CFLAGS) -DMZSCHEME_FORCE_GC
786!endif
787!if "$(MZSCHEME_PRECISE_GC)" == "yes"
788# Precise GC does not use separate dll
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100789MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000790!else
Bram Moolenaarb6356332005-07-18 21:40:44 +0000791MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib \
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100792 $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000793!endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000794!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000795MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100796# increase stack size
797MZSCHEME_LIB = $(MZSCHEME_LIB) /STACK:8388608
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000798!endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000799
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800# Perl interface
801!ifdef PERL
802!ifndef PERL_VER
803PERL_VER = 56
804!endif
805!message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)"
806!if "$(DYNAMIC_PERL)" == "yes"
807!if $(PERL_VER) >= 56
808!message Perl DLL will be loaded dynamically
809!else
810!message Dynamic loading is not supported for Perl versions earlier than 5.6.0
811!message Reverting to static loading...
812!undef DYNAMIC_PERL
813!endif
814!endif
815
816# Is Perl installed in architecture-specific directories?
817!if exist($(PERL)\Bin\MSWin32-x86)
818PERL_ARCH = \MSWin32-x86
819!endif
820
821PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core
822
823# Version-dependent stuff
824!if $(PERL_VER) == 55
825PERL_LIB = $(PERL_INCDIR)\perl.lib
826!else
827PERL_DLL = perl$(PERL_VER).dll
Bram Moolenaar207fd752013-12-14 11:50:35 +0100828!if exist($(PERL_INCDIR)\perl$(PERL_VER).lib)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib
Bram Moolenaar207fd752013-12-14 11:50:35 +0100830!else
831# For ActivePerl 5.18 and later
832PERL_LIB = $(PERL_INCDIR)\libperl$(PERL_VER).a
833!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834!endif
835
836CFLAGS = $(CFLAGS) -DFEAT_PERL
837
838# Do we want to load Perl dynamically?
839!if "$(DYNAMIC_PERL)" == "yes"
840CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\"
841!undef PERL_LIB
842!endif
843
844PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl
845PERL_INC = /I $(PERL_INCDIR)
846PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj
847XSUBPP = $(PERL)\lib\ExtUtils\xsubpp
Bram Moolenaar52f83172011-09-14 19:01:42 +0200848!if exist($(XSUBPP))
Bram Moolenaar612af432011-09-14 10:49:46 +0200849XSUBPP = $(PERL_EXE) $(XSUBPP)
850!else
851XSUBPP = xsubpp
852!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853XSUBPP_TYPEMAP = $(PERL)\lib\ExtUtils\typemap
854
855!endif
856
857#
858# Support Ruby interface
859#
860!ifdef RUBY
861# Set default value
862!ifndef RUBY_VER
863RUBY_VER = 18
864!endif
865!ifndef RUBY_VER_LONG
866RUBY_VER_LONG = 1.8
867!endif
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200868!ifndef RUBY_API_VER
869RUBY_API_VER = $(RUBY_VER_LONG:.=)
870!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871
872!if $(RUBY_VER) >= 18
873!ifndef RUBY_PLATFORM
874RUBY_PLATFORM = i386-mswin32
875!endif
876!ifndef RUBY_INSTALL_NAME
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200877RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_API_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878!endif
879!else
880!ifndef RUBY_PLATFORM
881RUBY_PLATFORM = i586-mswin32
882!endif
883!ifndef RUBY_INSTALL_NAME
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200884RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885!endif
886!endif # $(RUBY_VER) >= 18
887
888!message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)"
889CFLAGS = $(CFLAGS) -DFEAT_RUBY
890RUBY_OBJ = $(OUTDIR)\if_ruby.obj
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200891!if $(RUBY_VER) >= 19
892RUBY_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 +0200893!else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)"
Bram Moolenaar69154f22010-07-18 21:42:34 +0200895!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib
897# Do we want to load Ruby dynamically?
898!if "$(DYNAMIC_RUBY)" == "yes"
899!message Ruby DLL will be loaded dynamically
Bram Moolenaarb6356332005-07-18 21:40:44 +0000900CFLAGS = $(CFLAGS) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_VER=$(RUBY_VER) \
901 -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902!undef RUBY_LIB
903!endif
904!endif # RUBY
905
906#
907# Support PostScript printing
908#
909!if "$(POSTSCRIPT)" == "yes"
910CFLAGS = $(CFLAGS) -DMSWINPS
911!endif # POSTSCRIPT
912
913#
914# FEATURES: TINY, SMALL, NORMAL, BIG or HUGE
915#
916!if "$(FEATURES)"==""
917FEATURES = BIG
918!endif
919CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES)
920
921#
Bram Moolenaard9d30582005-05-18 22:10:28 +0000922# Always generate the .pdb file, so that we get debug symbols that can be used
923# on a crash (doesn't add overhead to the executable).
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000924# Generate edit-and-continue debug info when no optimization - allows to
925# debug more conveniently (able to look at variables which are in registers)
Bram Moolenaard9d30582005-05-18 22:10:28 +0000926#
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000927CFLAGS = $(CFLAGS) /Fd$(OUTDIR)/ $(DEBUGINFO)
928LINK_PDB = /PDB:$(VIM).pdb -debug
Bram Moolenaard9d30582005-05-18 22:10:28 +0000929
930#
931# End extra feature include
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932#
933!message
934
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000935conflags = /nologo /subsystem:$(SUBSYSTEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000937PATHDEF_SRC = $(OUTDIR)\pathdef.c
938
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939!IF "$(MAP)" == "yes"
940# "/map" is for debugging
941conflags = $(conflags) /map
942!ELSEIF "$(MAP)" == "lines"
943# "/mapinfo:lines" is for debugging, only works for VC6 and later
944conflags = $(conflags) /map /mapinfo:lines
945!ENDIF
946
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000947LINKARGS1 = $(linkdebug) $(conflags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(LIBC) $(OLE_LIB) user32.lib $(SNIFF_LIB) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200949 $(LUA_LIB) $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(RUBY_LIB) \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000950 $(TCL_LIB) $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000952# Report link time code generation progress if used.
953!ifdef NODEBUG
Bram Moolenaare5878f42013-11-08 03:15:47 +0100954!if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0") || ("$(MSVCVER)" == "12.0")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000955!if "$(OPTIMIZE)" != "SPACE"
956LINKARGS1 = $(LINKARGS1) /LTCG:STATUS
957!endif
958!endif
959!endif
960
Bram Moolenaarb6356332005-07-18 21:40:44 +0000961all: $(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe \
962 GvimExt/gvimext.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963
Bram Moolenaarb6356332005-07-18 21:40:44 +0000964$(VIM).exe: $(OUTDIR) $(OBJ) $(GUI_OBJ) $(OLE_OBJ) $(OLE_IDL) $(MZSCHEME_OBJ) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200965 $(LUA_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) $(TCL_OBJ) \
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200966 $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) \
967 version.c version.h
Bram Moolenaarb6356332005-07-18 21:40:44 +0000968 $(CC) $(CFLAGS) version.c
Bram Moolenaar0dc065e2005-07-04 22:49:24 +0000969 $(link) $(LINKARGS1) -out:$(VIM).exe $(OBJ) $(GUI_OBJ) $(OLE_OBJ) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200970 $(LUA_OBJ) $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000971 $(TCL_OBJ) $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) \
972 $(XPM_OBJ) $(OUTDIR)\version.obj $(LINKARGS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000974$(VIM): $(VIM).exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975
976$(OUTDIR):
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000977 if not exist $(OUTDIR)/nul mkdir $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
979install.exe: dosinst.c
Bram Moolenaarb6356332005-07-18 21:40:44 +0000980 $(CC) /nologo -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib \
Bram Moolenaarb230bd52010-05-25 21:02:00 +0200981 user32.lib ole32.lib advapi32.lib uuid.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 - if exist install.exe del install.exe
983 ren dosinst.exe install.exe
984
985uninstal.exe: uninstal.c
986 $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib
987
988vimrun.exe: vimrun.c
989 $(CC) /nologo -DNDEBUG vimrun.c
990
991xxd/xxd.exe: xxd/xxd.c
992 cd xxd
993 $(MAKE) /NOLOGO -f Make_mvc.mak
994 cd ..
995
996GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
997 cd GvimExt
998 $(MAKE) /NOLOGO -f Makefile $(MAKEFLAGS_GVIMEXT)
999 cd ..
1000
1001
1002tags: notags
1003 $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro
1004
1005notags:
1006 - if exist tags del tags
1007
1008clean:
Bram Moolenaar02743632005-07-25 20:42:36 +00001009 - if exist $(OUTDIR)/nul $(DEL_TREE) $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 - if exist *.obj del *.obj
1011 - if exist $(VIM).exe del $(VIM).exe
1012 - if exist $(VIM).ilk del $(VIM).ilk
1013 - if exist $(VIM).pdb del $(VIM).pdb
1014 - if exist $(VIM).map del $(VIM).map
1015 - if exist $(VIM).ncb del $(VIM).ncb
1016 - if exist vimrun.exe del vimrun.exe
1017 - if exist install.exe del install.exe
1018 - if exist uninstal.exe del uninstal.exe
1019 - if exist if_perl.c del if_perl.c
1020 - if exist dimm.h del dimm.h
1021 - if exist dimm_i.c del dimm_i.c
1022 - if exist dimm.tlb del dimm.tlb
1023 - if exist dosinst.exe del dosinst.exe
Bram Moolenaar2d6db762009-09-11 10:49:58 +00001024 - if exist mzscheme_base.c del mzscheme_base.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 cd xxd
1026 $(MAKE) /NOLOGO -f Make_mvc.mak clean
1027 cd ..
1028 cd GvimExt
1029 $(MAKE) /NOLOGO -f Makefile clean
1030 cd ..
1031 cd GvimExt
1032 $(MAKE) /NOLOGO -f Makefile clean
1033 cd ..
1034 - if exist testdir\*.out del testdir\*.out
1035
1036test:
1037 cd testdir
1038 $(MAKE) /NOLOGO -f Make_dos.mak win32
1039 cd ..
1040
Bram Moolenaar34114692005-01-02 11:28:13 +00001041testclean:
1042 cd testdir
1043 $(MAKE) /NOLOGO -f Make_dos.mak clean
1044 cd ..
1045
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046###########################################################################
1047
1048# Create a default rule for transforming .c files to .obj files in $(OUTDIR)
1049# Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
Bram Moolenaarf22129b2007-10-03 11:29:44 +00001050!IF "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051.c{$(OUTDIR)/}.obj:
1052!ELSE
1053.c{$(OUTDIR)/}.obj::
1054!ENDIF
Bram Moolenaarb6356332005-07-18 21:40:44 +00001055 $(CC) $(CFLAGS) $<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056
1057# Create a default rule for transforming .cpp files to .obj files in $(OUTDIR)
1058# Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
Bram Moolenaarf22129b2007-10-03 11:29:44 +00001059!IF "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060.cpp{$(OUTDIR)/}.obj:
1061!ELSE
1062.cpp{$(OUTDIR)/}.obj::
1063!ENDIF
Bram Moolenaarb6356332005-07-18 21:40:44 +00001064 $(CC) $(CFLAGS) $<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001066$(OUTDIR)/blowfish.obj: $(OUTDIR) blowfish.c $(INCL)
1067
Bram Moolenaaredac1852010-05-18 20:34:20 +02001068$(OUTDIR)/buffer.obj: $(OUTDIR) buffer.c $(INCL)
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001069
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070$(OUTDIR)/charset.obj: $(OUTDIR) charset.c $(INCL)
1071
1072$(OUTDIR)/diff.obj: $(OUTDIR) diff.c $(INCL)
1073
1074$(OUTDIR)/digraph.obj: $(OUTDIR) digraph.c $(INCL)
1075
1076$(OUTDIR)/edit.obj: $(OUTDIR) edit.c $(INCL)
1077
1078$(OUTDIR)/eval.obj: $(OUTDIR) eval.c $(INCL)
1079
1080$(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL)
1081
1082$(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL)
1083
1084$(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmds.h
1085
1086$(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) ex_cmds.h
1087
1088$(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL)
1089
1090$(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL)
1091
1092$(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL)
1093
1094$(OUTDIR)/getchar.obj: $(OUTDIR) getchar.c $(INCL)
1095
Bram Moolenaar58d98232005-07-23 22:25:46 +00001096$(OUTDIR)/hardcopy.obj: $(OUTDIR) hardcopy.c $(INCL)
1097
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001098$(OUTDIR)/hashtab.obj: $(OUTDIR) hashtab.c $(INCL)
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001099
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100$(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL)
1101
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001102$(OUTDIR)/gui_beval.obj: $(OUTDIR) gui_beval.c $(INCL) $(GUI_INCL)
1103
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104$(OUTDIR)/gui_w32.obj: $(OUTDIR) gui_w32.c gui_w48.c $(INCL) $(GUI_INCL)
1105
1106$(OUTDIR)/if_cscope.obj: $(OUTDIR) if_cscope.c $(INCL)
1107
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001108$(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL)
1109 $(CC) $(CFLAGS) $(LUA_INC) if_lua.c
1110
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111if_perl.c : if_perl.xs typemap
Bram Moolenaar612af432011-09-14 10:49:46 +02001112 $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001113 -typemap typemap if_perl.xs > if_perl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114
1115$(OUTDIR)/if_perl.obj: $(OUTDIR) if_perl.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001116 $(CC) $(CFLAGS) $(PERL_INC) if_perl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117
1118$(OUTDIR)/if_perlsfio.obj: $(OUTDIR) if_perlsfio.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001119 $(CC) $(CFLAGS) $(PERL_INC) if_perlsfio.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120
Bram Moolenaar75676462013-01-30 14:55:42 +01001121$(OUTDIR)/if_mzsch.obj: $(OUTDIR) if_mzsch.c if_mzsch.h $(INCL) $(MZSCHEME_EXTRA_DEP)
Bram Moolenaar6a9aa372005-07-20 21:54:57 +00001122 $(CC) $(CFLAGS) if_mzsch.c \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001123 -DMZSCHEME_COLLECTS=\"$(MZSCHEME:\=\\)\\collects\"
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001124mzscheme_base.c:
1125 $(MZSCHEME)\mzc --c-mods mzscheme_base.c ++lib scheme/base
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001126
Bram Moolenaardd9a4a42013-06-03 20:12:51 +02001127$(OUTDIR)/if_python.obj: $(OUTDIR) if_python.c if_py_both.h $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001128 $(CC) $(CFLAGS) $(PYTHON_INC) if_python.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129
Bram Moolenaardd9a4a42013-06-03 20:12:51 +02001130$(OUTDIR)/if_python3.obj: $(OUTDIR) if_python3.c if_py_both.h $(INCL)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001131 $(CC) $(CFLAGS) $(PYTHON3_INC) if_python3.c
1132
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133$(OUTDIR)/if_ole.obj: $(OUTDIR) if_ole.cpp $(INCL) if_ole.h
1134
1135$(OUTDIR)/if_ruby.obj: $(OUTDIR) if_ruby.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001136 $(CC) $(CFLAGS) $(RUBY_INC) if_ruby.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137
1138$(OUTDIR)/if_sniff.obj: $(OUTDIR) if_sniff.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001139 $(CC) $(CFLAGS) if_sniff.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140
1141$(OUTDIR)/if_tcl.obj: $(OUTDIR) if_tcl.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001142 $(CC) $(CFLAGS) $(TCL_INC) if_tcl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143
1144$(OUTDIR)/main.obj: $(OUTDIR) main.c $(INCL)
1145
1146$(OUTDIR)/mark.obj: $(OUTDIR) mark.c $(INCL)
1147
1148$(OUTDIR)/memfile.obj: $(OUTDIR) memfile.c $(INCL)
1149
1150$(OUTDIR)/memline.obj: $(OUTDIR) memline.c $(INCL)
1151
1152$(OUTDIR)/menu.obj: $(OUTDIR) menu.c $(INCL)
1153
1154$(OUTDIR)/message.obj: $(OUTDIR) message.c $(INCL)
1155
1156$(OUTDIR)/misc1.obj: $(OUTDIR) misc1.c $(INCL)
1157
1158$(OUTDIR)/misc2.obj: $(OUTDIR) misc2.c $(INCL)
1159
1160$(OUTDIR)/move.obj: $(OUTDIR) move.c $(INCL)
1161
1162$(OUTDIR)/mbyte.obj: $(OUTDIR) mbyte.c $(INCL)
1163
1164$(OUTDIR)/netbeans.obj: $(OUTDIR) netbeans.c $(NBDEBUG_SRC) $(INCL)
1165
1166$(OUTDIR)/normal.obj: $(OUTDIR) normal.c $(INCL)
1167
1168$(OUTDIR)/option.obj: $(OUTDIR) option.c $(INCL)
1169
1170$(OUTDIR)/ops.obj: $(OUTDIR) ops.c $(INCL)
1171
1172$(OUTDIR)/os_mswin.obj: $(OUTDIR) os_mswin.c $(INCL)
1173
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001174$(OUTDIR)/winclip.obj: $(OUTDIR) winclip.c $(INCL)
1175
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176$(OUTDIR)/os_win32.obj: $(OUTDIR) os_win32.c $(INCL) os_win32.h
1177
1178$(OUTDIR)/os_w32exe.obj: $(OUTDIR) os_w32exe.c $(INCL)
1179
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001180$(OUTDIR)/pathdef.obj: $(OUTDIR) $(PATHDEF_SRC) $(INCL)
1181 $(CC) $(CFLAGS) $(PATHDEF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001183$(OUTDIR)/popupmnu.obj: $(OUTDIR) popupmnu.c $(INCL)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001184
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185$(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL)
1186
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001187$(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c regexp_nfa.c $(INCL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188
1189$(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL)
1190
1191$(OUTDIR)/search.obj: $(OUTDIR) search.c $(INCL)
1192
Bram Moolenaaredac1852010-05-18 20:34:20 +02001193$(OUTDIR)/sha256.obj: $(OUTDIR) sha256.c $(INCL)
1194
Bram Moolenaar2e4096b2005-03-20 22:25:45 +00001195$(OUTDIR)/spell.obj: $(OUTDIR) spell.c $(INCL)
1196
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197$(OUTDIR)/syntax.obj: $(OUTDIR) syntax.c $(INCL)
1198
1199$(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL)
1200
1201$(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL)
1202
1203$(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL)
1204
1205$(OUTDIR)/undo.obj: $(OUTDIR) undo.c $(INCL)
1206
1207$(OUTDIR)/window.obj: $(OUTDIR) window.c $(INCL)
1208
1209$(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c
Bram Moolenaarb6356332005-07-18 21:40:44 +00001210 $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001212$(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp \
1213 tearoff.bmp vim.ico vim_error.ico \
1214 vim_alert.ico vim_info.ico vim_quest.ico
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc
1216
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001217iid_ole.c if_ole.h vim.tlb: if_ole.idl
Bram Moolenaarb6356332005-07-18 21:40:44 +00001218 midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \
1219 /header if_ole.h if_ole.idl
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220
1221dimm.h dimm_i.c: dimm.idl
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001222 midl /nologo /error none /proxy nul dimm.idl
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223
1224$(OUTDIR)/dimm_i.obj: $(OUTDIR) dimm_i.c $(INCL)
1225
1226$(OUTDIR)/glbl_ime.obj: $(OUTDIR) glbl_ime.cpp dimm.h $(INCL)
1227
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00001228# $CFLAGS may contain backslashes and double quotes, escape them both.
1229E0_CFLAGS = $(CFLAGS:\=\\)
1230E_CFLAGS = $(E0_CFLAGS:"=\")
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001231# ") stop the string
Bram Moolenaarc30846f2011-02-15 18:06:15 +01001232# $LINKARGS2 may contain backslashes and double quotes, escape them both.
1233E0_LINKARGS2 = $(LINKARGS2:\=\\)
1234E_LINKARGS2 = $(E0_LINKARGS2:"=\")
1235# ") stop the string
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00001236
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001237$(PATHDEF_SRC): auto
1238 @echo creating $(PATHDEF_SRC)
1239 @echo /* pathdef.c */ > $(PATHDEF_SRC)
1240 @echo #include "vim.h" >> $(PATHDEF_SRC)
1241 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; >> $(PATHDEF_SRC)
1242 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; >> $(PATHDEF_SRC)
1243 @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> $(PATHDEF_SRC)
Bram Moolenaarc30846f2011-02-15 18:06:15 +01001244 @echo char_u *all_lflags = (char_u *)"$(link:\=\\) $(LINKARGS1:\=\\) $(E_LINKARGS2)"; >> $(PATHDEF_SRC)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001245 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> $(PATHDEF_SRC)
1246 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> $(PATHDEF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247
1248auto:
1249 if not exist auto/nul mkdir auto
1250
1251# End Custom Build
1252proto.h: \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001253 proto/blowfish.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 proto/buffer.pro \
1255 proto/charset.pro \
1256 proto/diff.pro \
1257 proto/digraph.pro \
1258 proto/edit.pro \
1259 proto/eval.pro \
1260 proto/ex_cmds.pro \
1261 proto/ex_cmds2.pro \
1262 proto/ex_docmd.pro \
1263 proto/ex_eval.pro \
1264 proto/ex_getln.pro \
1265 proto/fileio.pro \
1266 proto/getchar.pro \
Bram Moolenaar58d98232005-07-23 22:25:46 +00001267 proto/hardcopy.pro \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001268 proto/hashtab.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 proto/main.pro \
1270 proto/mark.pro \
1271 proto/memfile.pro \
1272 proto/memline.pro \
1273 proto/menu.pro \
1274 proto/message.pro \
1275 proto/misc1.pro \
1276 proto/misc2.pro \
1277 proto/move.pro \
1278 proto/mbyte.pro \
1279 proto/normal.pro \
1280 proto/ops.pro \
1281 proto/option.pro \
1282 proto/os_mswin.pro \
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001283 proto/winclip.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 proto/os_win32.pro \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001285 proto/popupmnu.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 proto/quickfix.pro \
1287 proto/regexp.pro \
1288 proto/screen.pro \
1289 proto/search.pro \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001290 proto/sha256.pro \
Bram Moolenaar2e4096b2005-03-20 22:25:45 +00001291 proto/spell.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 proto/syntax.pro \
1293 proto/tag.pro \
1294 proto/term.pro \
1295 proto/ui.pro \
1296 proto/undo.pro \
1297 proto/window.pro \
1298 $(NETBEANS_PRO)
1299
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001300.SUFFIXES: .cod .i
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001301
1302# Generate foo.cod (mixed source and assembly listing) from foo.c via "nmake
1303# foo.cod"
1304.c.cod:
1305 $(CC) $(CFLAGS) /FAcs $<
1306
1307# Generate foo.i (preprocessor listing) from foo.c via "nmake foo.i"
1308.c.i:
1309 $(CC) $(CFLAGS) /P /C $<
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001310
1311
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312# vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: