blob: 2a4a3e8c458c4433563b2447949a5d3fe1240bca [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#
23# Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG)
24#
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#
90# PostScript printing: POSTSCRIPT=yes (default is no)
91#
92# Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes)
93#
94# XPM Image Support: XPM=[path to XPM directory]
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +020095# 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#
98# Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED)
99#
100# Processor Version: CPUNR=[i386, i486, i586, i686, pentium4] (default is
101# i386)
102#
103# Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400)
104#
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#
111# Netbeans Debugging Support: NBDEBUG=[yes or no] (should be no, yes
112# doesn't work)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113#
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000114# Visual C Version: MSVCVER=m.n (default derived from nmake if undefined)
115#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116# You can combine any of these interfaces
117#
118# Example: To build the non-debug, GUI version with Perl interface:
119# nmake -f Make_mvc.mak GUI=yes PERL=C:\Perl
120#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121# DEBUG with Make_mvc.mak and Make_dvc.mak:
122# This makefile gives a fineness of control which is not supported in
123# Visual C++ configuration files. Therefore, debugging requires a bit of
124# extra work.
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000125# Make_dvc.mak is a Visual C++ project to access that support. It may be
126# badly out of date for the Visual C++ you are using...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127# To use Make_dvc.mak:
128# 1) Build Vim with Make_mvc.mak.
129# Use a "DEBUG=yes" argument to build Vim with debug support.
130# E.g. the following builds gvimd.exe:
131# nmake -f Make_mvc.mak debug=yes gui=yes
132# 2) Use MS Devstudio and set it up to allow that file to be debugged:
133# i) Pass Make_dvc.mak to the IDE.
134# Use the "open workspace" menu entry to load Make_dvc.mak.
135# Alternatively, from the command line:
136# msdev /nologo Make_dvc.mak
137# Note: Make_dvc.mak is in VC4.0 format. Later VC versions see
138# this and offer to convert it to their own format. Accept that.
139# It creates a file called Make_dvc.dsw which can then be used
140# for further operations. E.g.
141# msdev /nologo Make_dvc.dsw
142# ii) Set the built executable for debugging:
143# a) Alt+F7/Debug takes you to the Debug dialog.
144# b) Fill "Executable for debug session". e.g. gvimd.exe
145# c) Fill "Program arguments". e.g. -R dosinst.c
146# d) Complete the dialog
147# 3) You can now debug the executable you built with Make_mvc.mak
148#
149# Note: Make_dvc.mak builds vimrun.exe, because it must build something
150# to be a valid makefile..
151
152### See feature.h for a list of optionals.
153# If you want to build some optional features without modifying the source,
154# you can set DEFINES on the command line, e.g.,
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000155# nmake -f Make_mvc.mvc "DEFINES=-DEMACS_TAGS"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000157# Build on both Windows NT/XP and Windows 9x
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158
159TARGETOS = BOTH
160
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000161# Select one of eight object code directories, depends on GUI, OLE, DEBUG and
162# interfaces.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163# If you change something else, do "make clean" first!
164!if "$(GUI)" == "yes"
165OBJDIR = .\ObjG
166!else
167OBJDIR = .\ObjC
168!endif
169!if "$(OLE)" == "yes"
170OBJDIR = $(OBJDIR)O
171!endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200172!ifdef LUA
173OBJDIR = $(OBJDIR)U
174!endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000175!ifdef PERL
176OBJDIR = $(OBJDIR)L
177!endif
178!ifdef PYTHON
179OBJDIR = $(OBJDIR)Y
180!endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200181!ifdef PYTHON3
182OBJDIR = $(OBJDIR)H
183!endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000184!ifdef TCL
185OBJDIR = $(OBJDIR)T
186!endif
187!ifdef RUBY
188OBJDIR = $(OBJDIR)R
189!endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000190!ifdef MZSCHEME
191OBJDIR = $(OBJDIR)Z
192!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193!if "$(DEBUG)" == "yes"
194OBJDIR = $(OBJDIR)d
195!endif
196
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000197# Win32.mak requires that CPU be set appropriately.
198# To cross-compile for Win64, set CPU=AMD64 or CPU=IA64.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199
200!ifdef PROCESSOR_ARCHITECTURE
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000201# We're on Windows NT or using VC 6+
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000202! ifdef CPU
203ASSEMBLY_ARCHITECTURE=$(CPU)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000204# Using I386 for $ASSEMBLY_ARCHITECTURE doesn't work for VC7.
205! if ("$(ASSEMBLY_ARCHITECTURE)" == "i386") || ("$(ASSEMBLY_ARCHITECTURE)" == "I386")
206ASSEMBLY_ARCHITECTURE = x86
207! endif
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000208! else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209CPU = $(PROCESSOR_ARCHITECTURE)
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000210ASSEMBLY_ARCHITECTURE = $(PROCESSOR_ARCHITECTURE)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000211! if ("$(CPU)" == "x86") || ("$(CPU)" == "X86")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212CPU = i386
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000213! endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214! endif
215!else # !PROCESSOR_ARCHITECTURE
216# We're on Windows 95
217CPU = i386
218!endif # !PROCESSOR_ARCHITECTURE
Bram Moolenaare2db4362012-09-05 17:57:39 +0200219OBJDIR = $(OBJDIR)$(CPU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221# Build a retail version by default
222
223!if "$(DEBUG)" != "yes"
224NODEBUG = 1
225!else
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000226!undef NODEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227MAKEFLAGS_GVIMEXT = DEBUG=yes
228!endif
229
230
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000231# Get all sorts of useful, standard macros from the Platform SDK.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232
Bram Moolenaar6f586de2012-09-18 22:00:08 +0200233!ifdef SDK_INCLUDE_DIR
234!include $(SDK_INCLUDE_DIR)\Win32.mak
235!else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000236!include <Win32.mak>
Bram Moolenaar6f586de2012-09-18 22:00:08 +0200237!endif
238
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239
Bram Moolenaar8cd213c2010-06-01 21:57:09 +0200240# Flag to turn on Win64 compatibility warnings for VC7.x and VC8.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200241WP64CHECK = /Wp64
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242
243#>>>>> path of the compiler and linker; name of include and lib directories
244# PATH = c:\msvc20\bin;$(PATH)
245# INCLUDE = c:\msvc20\include
246# LIB = c:\msvc20\lib
247
248!ifndef CTAGS
249CTAGS = ctags
250!endif
251
252!if "$(SNIFF)" == "yes"
253# SNIFF - Include support for SNiFF+.
254SNIFF_INCL = if_sniff.h
255SNIFF_OBJ = $(OBJDIR)/if_sniff.obj
Bram Moolenaarb6356332005-07-18 21:40:44 +0000256SNIFF_LIB = shell32.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257SNIFF_DEFS = -DFEAT_SNIFF
258# The SNiFF integration needs multithreaded libraries!
259MULTITHREADED = yes
260!endif
261
262!ifndef CSCOPE
263CSCOPE = yes
264!endif
265
266!if "$(CSCOPE)" == "yes"
267# CSCOPE - Include support for Cscope
268CSCOPE_INCL = if_cscope.h
269CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj
270CSCOPE_DEFS = -DFEAT_CSCOPE
271!endif
272
273!ifndef NETBEANS
274NETBEANS = $(GUI)
275!endif
276
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000277# Only allow NETBEANS and XPM for a GUI build.
278!if "$(GUI)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279!if "$(NETBEANS)" == "yes"
280# NETBEANS - Include support for Netbeans integration
281NETBEANS_PRO = proto/netbeans.pro
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000282NETBEANS_OBJ = $(OBJDIR)/netbeans.obj
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283NETBEANS_DEFS = -DFEAT_NETBEANS_INTG
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000284
285!if "$(NBDEBUG)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286NBDEBUG_DEFS = -DNBDEBUG
287NBDEBUG_INCL = nbdebug.h
288NBDEBUG_SRC = nbdebug.c
289!endif
Bram Moolenaarb6356332005-07-18 21:40:44 +0000290NETBEANS_LIB = WSock32.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291!endif
292
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200293!ifndef XPM
294# XPM is not set, use the included xpm files, depending on the architecture.
Bram Moolenaare2db4362012-09-05 17:57:39 +0200295!if "$(CPU)" == "AMD64"
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200296XPM = xpm\x64
Bram Moolenaare2db4362012-09-05 17:57:39 +0200297!elseif "$(CPU)" == "i386"
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200298XPM = xpm\x86
Bram Moolenaare2db4362012-09-05 17:57:39 +0200299!else
300XPM = no
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200301!endif
302!endif
303!if "$(XPM)" != "no"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304# XPM - Include support for XPM signs
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200305# See the xpm directory for more information.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306XPM_OBJ = $(OBJDIR)/xpm_w32.obj
307XPM_DEFS = -DFEAT_XPM_W32
308XPM_LIB = $(XPM)\lib\libXpm.lib
Bram Moolenaarc6c1d8b2012-08-29 14:18:33 +0200309XPM_INC = -I $(XPM)\include -I $(XPM)\..\include
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310!endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000311!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000313# Set which version of the CRT to use
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314!if defined(USE_MSVCRT)
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000315# CVARS = $(cvarsdll)
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000316# !elseif defined(MULTITHREADED)
317# CVARS = $(cvarsmt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318!else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000319# CVARS = $(cvars)
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000320# CVARS = $(cvarsmt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321!endif
322
323# need advapi32.lib for GetUserName()
324# need shell32.lib for ExtractIcon()
325# gdi32.lib and comdlg32.lib for printing support
326# ole32.lib and uuid.lib are needed for FEAT_SHORTCUT
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000327CON_LIB = oldnames.lib kernel32.lib advapi32.lib shell32.lib gdi32.lib \
328 comdlg32.lib ole32.lib uuid.lib /machine:$(CPU) /nodefaultlib
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000329!if "$(DELAYLOAD)" == "yes"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330CON_LIB = $(CON_LIB) /DELAYLOAD:comdlg32.dll /DELAYLOAD:ole32.dll DelayImp.lib
331!endif
332
333### Set the default $(WINVER) to make it work with VC++7.0 (VS.NET)
334# When set to 0x0500 ":browse" stops working.
335!ifndef WINVER
336WINVER = 0x0400
337!endif
338
339# If you have a fixed directory for $VIM or $VIMRUNTIME, other than the normal
340# default, use these lines.
341#VIMRCLOC = somewhere
342#VIMRUNTIMEDIR = somewhere
343
344CFLAGS = -c /W3 /nologo $(CVARS) -I. -Iproto -DHAVE_PATHDEF -DWIN32 \
345 $(SNIFF_DEFS) $(CSCOPE_DEFS) $(NETBEANS_DEFS) \
346 $(NBDEBUG_DEFS) $(XPM_DEFS) \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000347 $(DEFINES) -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \
348 /Fo$(OUTDIR)/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349
350#>>>>> end of choices
351###########################################################################
352
353!ifdef OS
354OS_TYPE = winnt
355DEL_TREE = rmdir /s /q
356!else
357OS_TYPE = win95
358DEL_TREE = deltree /y
359!endif
360
361INTDIR=$(OBJDIR)
362OUTDIR=$(OBJDIR)
363
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000364# Derive version of VC being used from nmake if not specified
365!if "$(MSVCVER)" == ""
366!if "$(_NMAKE_VER)" == ""
367MSVCVER = 4.0
368!endif
369!if "$(_NMAKE_VER)" == "162"
370MSVCVER = 5.0
371!endif
372!if "$(_NMAKE_VER)" == "6.00.8168.0"
373MSVCVER = 6.0
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000374CPU = ix86
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000375!endif
Bram Moolenaar67a4f6c2012-10-21 02:41:08 +0200376!if "$(_NMAKE_VER)" == "6.00.9782.0"
377MSVCVER = 6.0
378CPU = ix86
379!endif
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000380!if "$(_NMAKE_VER)" == "7.00.9466"
381MSVCVER = 7.0
382!endif
383!if "$(_NMAKE_VER)" == "7.10.3077"
384MSVCVER = 7.1
385!endif
386!if "$(_NMAKE_VER)" == "8.00.50727.42"
387MSVCVER = 8.0
388!endif
389!if "$(_NMAKE_VER)" == "8.00.50727.762"
390MSVCVER = 8.0
391!endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000392!if "$(_NMAKE_VER)" == "9.00.20706.01"
393MSVCVER = 9.0
394!endif
Bram Moolenaara7241f52008-06-24 20:39:31 +0000395!if "$(_NMAKE_VER)" == "9.00.21022.08"
396MSVCVER = 9.0
397!endif
Bram Moolenaar13658312009-02-04 17:35:52 +0000398!if "$(_NMAKE_VER)" == "9.00.30729.01"
399MSVCVER = 9.0
400!endif
Bram Moolenaarda2f99a2009-06-16 14:34:38 +0000401!if "$(_NMAKE_VER)" == "10.00.20506.01"
402MSVCVER = 10.0
403!endif
Bram Moolenaar2498b3a2010-03-02 17:59:44 +0100404!if "$(_NMAKE_VER)" == "10.00.30128.01"
405MSVCVER = 10.0
406!endif
Bram Moolenaar218116c2010-05-20 21:46:00 +0200407!if "$(_NMAKE_VER)" == "10.00.30319.01"
408MSVCVER = 10.0
409!endif
Bram Moolenaare3a22462012-10-23 05:35:34 +0200410!if "$(_NMAKE_VER)" == "10.00.40219.01"
411MSVCVER = 10.0
412!endif
Bram Moolenaar2b017fa2012-09-18 18:27:12 +0200413!if "$(_NMAKE_VER)" == "11.00.50727.1"
414MSVCVER = 11.0
415!endif
Bram Moolenaar52cc2662012-12-06 21:30:29 +0100416!if "$(_NMAKE_VER)" == "11.00.51106.1"
417MSVCVER = 11.0
418!endif
Bram Moolenaar29042482013-05-07 05:11:17 +0200419!if "$(_NMAKE_VER)" == "11.00.60315.1"
420MSVCVER = 11.0
421!endif
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000422!endif
423
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200424# Abort building VIM if version of VC is unrecognised.
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000425!ifndef MSVCVER
426!message *** ERROR
427!message Cannot determine Visual C version being used. If you are using the
428!message Windows SDK then you must have the environment variable MSVCVER set to
429!message your version of the VC compiler. If you are not using the Express
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000430!message version of Visual C, you can either set MSVCVER or update this makefile
431!message to handle the new value for _NMAKE_VER, "$(_NMAKE_VER)".
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000432!error Make aborted.
433!endif
434
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435# Convert processor ID to MVC-compatible number
Bram Moolenaar2b017fa2012-09-18 18:27:12 +0200436!if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") && ("$(MSVCVER)" != "11.0")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437!if "$(CPUNR)" == "i386"
438CPUARG = /G3
439!elseif "$(CPUNR)" == "i486"
440CPUARG = /G4
441!elseif "$(CPUNR)" == "i586"
442CPUARG = /G5
443!elseif "$(CPUNR)" == "i686"
444CPUARG = /G6
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000445!elseif "$(CPUNR)" == "pentium4"
Bram Moolenaar34114692005-01-02 11:28:13 +0000446CPUARG = /G7 /arch:SSE2
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447!else
448CPUARG =
449!endif
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000450!else
Bram Moolenaar3ed16dc2011-06-12 20:31:31 +0200451# VC8/9/10 only allows specifying SSE architecture but only for 32bit
452!if "$(ASSEMBLY_ARCHITECTURE)" == "x86" && "$(CPUNR)" == "pentium4"
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000453CPUARG = /arch:SSE2
454!endif
455!endif
456
457LIBC =
458DEBUGINFO = /Zi
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459
460!ifdef NODEBUG
461VIM = vim
462!if "$(OPTIMIZE)" == "SPACE"
463OPTFLAG = /O1
464!elseif "$(OPTIMIZE)" == "SPEED"
465OPTFLAG = /O2
466!else # MAXSPEED
467OPTFLAG = /Ox
468!endif
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200469
Bram Moolenaar2b017fa2012-09-18 18:27:12 +0200470!if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000471# Use link time code generation if not worried about size
472!if "$(OPTIMIZE)" != "SPACE"
473OPTFLAG = $(OPTFLAG) /GL
474!endif
475!endif
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200476
477# (/Wp64 is deprecated in VC9 and generates an obnoxious warning.)
478!if ("$(MSVCVER)" == "7.0") || ("$(MSVCVER)" == "7.1") || ("$(MSVCVER)" == "8.0")
479CFLAGS=$(CFLAGS) $(WP64CHECK)
480!endif
481
Bram Moolenaar34114692005-01-02 11:28:13 +0000482CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484! ifdef USE_MSVCRT
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000485CFLAGS = $(CFLAGS) /MD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486LIBC = msvcrt.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487! else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000488LIBC = libcmt.lib
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000489CFLAGS = $(CFLAGS) /Zl /MT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490! endif
491!else # DEBUG
492VIM = vimd
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000493! if ("$(CPU)" == "i386") || ("$(CPU)" == "ix86")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000494DEBUGINFO = /ZI
495! endif
Bram Moolenaard9d30582005-05-18 22:10:28 +0000496CFLAGS = $(CFLAGS) -D_DEBUG -DDEBUG /Od
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497RCFLAGS = $(rcflags) $(rcvars) -D_DEBUG -DDEBUG
498# The /fixed:no is needed for Quantify. Assume not 4.? as unsupported in VC4.0.
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000499! if "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500LIBC =
501! else
502LIBC = /fixed:no
503! endif
Bram Moolenaar6a9aa372005-07-20 21:54:57 +0000504! ifdef USE_MSVCRT
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000505CFLAGS = $(CFLAGS) /MDd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506LIBC = $(LIBC) msvcrtd.lib
Bram Moolenaar6a9aa372005-07-20 21:54:57 +0000507! else
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000508LIBC = $(LIBC) libcmtd.lib
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000509CFLAGS = $(CFLAGS) /Zl /MTd
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510! endif
511!endif # DEBUG
512
513INCL = vim.h os_win32.h ascii.h feature.h globals.h keymap.h macros.h \
514 proto.h option.h structs.h term.h $(SNIFF_INCL) $(CSCOPE_INCL) \
515 $(NBDEBUG_INCL)
516
517OBJ = \
Bram Moolenaar40e6a712010-05-16 22:32:54 +0200518 $(OUTDIR)\blowfish.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 $(OUTDIR)\buffer.obj \
520 $(OUTDIR)\charset.obj \
521 $(OUTDIR)\diff.obj \
522 $(OUTDIR)\digraph.obj \
523 $(OUTDIR)\edit.obj \
524 $(OUTDIR)\eval.obj \
525 $(OUTDIR)\ex_cmds.obj \
526 $(OUTDIR)\ex_cmds2.obj \
527 $(OUTDIR)\ex_docmd.obj \
528 $(OUTDIR)\ex_eval.obj \
529 $(OUTDIR)\ex_getln.obj \
530 $(OUTDIR)\fileio.obj \
531 $(OUTDIR)\fold.obj \
532 $(OUTDIR)\getchar.obj \
Bram Moolenaar58d98232005-07-23 22:25:46 +0000533 $(OUTDIR)\hardcopy.obj \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000534 $(OUTDIR)\hashtab.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 $(OUTDIR)\main.obj \
536 $(OUTDIR)\mark.obj \
537 $(OUTDIR)\mbyte.obj \
538 $(OUTDIR)\memfile.obj \
539 $(OUTDIR)\memline.obj \
540 $(OUTDIR)\menu.obj \
541 $(OUTDIR)\message.obj \
542 $(OUTDIR)\misc1.obj \
543 $(OUTDIR)\misc2.obj \
544 $(OUTDIR)\move.obj \
545 $(OUTDIR)\normal.obj \
546 $(OUTDIR)\ops.obj \
547 $(OUTDIR)\option.obj \
548 $(OUTDIR)\os_mswin.obj \
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100549 $(OUTDIR)\winclip.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 $(OUTDIR)\os_win32.obj \
551 $(OUTDIR)\pathdef.obj \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000552 $(OUTDIR)\popupmnu.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 $(OUTDIR)\quickfix.obj \
554 $(OUTDIR)\regexp.obj \
555 $(OUTDIR)\screen.obj \
556 $(OUTDIR)\search.obj \
Bram Moolenaaredac1852010-05-18 20:34:20 +0200557 $(OUTDIR)\sha256.obj \
Bram Moolenaar2e4096b2005-03-20 22:25:45 +0000558 $(OUTDIR)\spell.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 $(OUTDIR)\syntax.obj \
560 $(OUTDIR)\tag.obj \
561 $(OUTDIR)\term.obj \
562 $(OUTDIR)\ui.obj \
563 $(OUTDIR)\undo.obj \
564 $(OUTDIR)\window.obj \
565 $(OUTDIR)\vim.res
566
567!if "$(OLE)" == "yes"
568CFLAGS = $(CFLAGS) -DFEAT_OLE
569RCFLAGS = $(RCFLAGS) -DFEAT_OLE
570OLE_OBJ = $(OUTDIR)\if_ole.obj
571OLE_IDL = if_ole.idl
572OLE_LIB = oleaut32.lib
573!endif
574
575!if "$(IME)" == "yes"
576CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME
577!ifndef DYNAMIC_IME
578DYNAMIC_IME = yes
579!endif
580!if "$(DYNAMIC_IME)" == "yes"
581CFLAGS = $(CFLAGS) -DDYNAMIC_IME
582!else
583IME_LIB = imm32.lib
584!endif
585!endif
586
587!if "$(GIME)" == "yes"
588CFLAGS = $(CFLAGS) -DGLOBAL_IME
589OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj
590MBYTE = yes
591!endif
592
593!if "$(MBYTE)" == "yes"
594CFLAGS = $(CFLAGS) -DFEAT_MBYTE
595!endif
596
597!if "$(GUI)" == "yes"
598SUBSYSTEM = windows
599CFLAGS = $(CFLAGS) -DFEAT_GUI_W32
600RCFLAGS = $(RCFLAGS) -DFEAT_GUI_W32
601VIM = g$(VIM)
602GUI_INCL = \
603 gui.h \
604 regexp.h \
605 ascii.h \
606 ex_cmds.h \
607 farsi.h \
608 feature.h \
609 globals.h \
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000610 gui_beval.h \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 keymap.h \
612 macros.h \
613 option.h \
614 os_dos.h \
615 os_win32.h
616GUI_OBJ = \
617 $(OUTDIR)\gui.obj \
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000618 $(OUTDIR)\gui_beval.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 $(OUTDIR)\gui_w32.obj \
620 $(OUTDIR)\os_w32exe.obj
621GUI_LIB = \
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000622 gdi32.lib version.lib $(IME_LIB) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623 winspool.lib comctl32.lib advapi32.lib shell32.lib \
624 /machine:$(CPU) /nodefaultlib
625!else
626SUBSYSTEM = console
627!endif
628
629# iconv.dll library (dynamically loaded)
630!ifndef ICONV
631ICONV = yes
632!endif
633!if "$(ICONV)" == "yes"
634CFLAGS = $(CFLAGS) -DDYNAMIC_ICONV
635!endif
636
637# libintl.dll library
638!ifndef GETTEXT
639GETTEXT = yes
640!endif
641!if "$(GETTEXT)" == "yes"
642CFLAGS = $(CFLAGS) -DDYNAMIC_GETTEXT
643!endif
644
645# TCL interface
646!ifdef TCL
647!ifndef TCL_VER
648TCL_VER = 83
649TCL_VER_LONG = 8.3
650!endif
651!message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)"
652!if "$(DYNAMIC_TCL)" == "yes"
653!message Tcl DLL will be loaded dynamically
654TCL_DLL = tcl$(TCL_VER).dll
Bram Moolenaarb6356332005-07-18 21:40:44 +0000655CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \
656 -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657TCL_OBJ = $(OUTDIR)\if_tcl.obj
658TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
Bram Moolenaar84a4c332012-02-22 16:01:56 +0100659TCL_LIB = "$(TCL)\lib\tclstub$(TCL_VER).lib"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660!else
661CFLAGS = $(CFLAGS) -DFEAT_TCL
662TCL_OBJ = $(OUTDIR)\if_tcl.obj
663TCL_INC = /I "$(TCL)\Include" /I "$(TCL)"
664TCL_LIB = $(TCL)\lib\tcl$(TCL_VER)vc.lib
665!endif
666!endif
667
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200668# Lua interface
669!ifdef LUA
670!ifndef LUA_VER
671LUA_VER = 51
672!endif
673!message Lua requested (version $(LUA_VER)) - root dir is "$(LUA)"
674!if "$(DYNAMIC_LUA)" == "yes"
675!message Lua DLL will be loaded dynamically
676!endif
677CFLAGS = $(CFLAGS) -DFEAT_LUA
678LUA_OBJ = $(OUTDIR)\if_lua.obj
679LUA_INC = /I "$(LUA)\include" /I "$(LUA)"
680!if "$(DYNAMIC_LUA)" == "yes"
681CFLAGS = $(CFLAGS) -DDYNAMIC_LUA \
682 -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\"
683LUA_LIB = /nodefaultlib:lua$(LUA_VER).lib
684!else
685LUA_LIB = "$(LUA)\lib\lua$(LUA_VER).lib"
686!endif
687!endif
688
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200689!ifdef PYTHON
690!ifdef PYTHON3
691DYNAMIC_PYTHON=yes
692DYNAMIC_PYTHON3=yes
693!endif
694!endif
695
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696# PYTHON interface
697!ifdef PYTHON
698!ifndef PYTHON_VER
699PYTHON_VER = 22
700!endif
701!message Python requested (version $(PYTHON_VER)) - root dir is "$(PYTHON)"
702!if "$(DYNAMIC_PYTHON)" == "yes"
703!message Python DLL will be loaded dynamically
704!endif
705CFLAGS = $(CFLAGS) -DFEAT_PYTHON
706PYTHON_OBJ = $(OUTDIR)\if_python.obj
707PYTHON_INC = /I "$(PYTHON)\Include" /I "$(PYTHON)\PC"
708!if "$(DYNAMIC_PYTHON)" == "yes"
Bram Moolenaarb6356332005-07-18 21:40:44 +0000709CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON \
710 -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711PYTHON_LIB = /nodefaultlib:python$(PYTHON_VER).lib
712!else
713PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib
714!endif
715!endif
716
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200717# PYTHON3 interface
718!ifdef PYTHON3
719!ifndef PYTHON3_VER
720PYTHON3_VER = 31
721!endif
722!message Python3 requested (version $(PYTHON3_VER)) - root dir is "$(PYTHON3)"
723!if "$(DYNAMIC_PYTHON3)" == "yes"
724!message Python3 DLL will be loaded dynamically
725!endif
726CFLAGS = $(CFLAGS) -DFEAT_PYTHON3
727PYTHON3_OBJ = $(OUTDIR)\if_python3.obj
728PYTHON3_INC = /I "$(PYTHON3)\Include" /I "$(PYTHON3)\PC"
729!if "$(DYNAMIC_PYTHON3)" == "yes"
730CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON3 \
731 -DDYNAMIC_PYTHON3_DLL=\"python$(PYTHON3_VER).dll\"
732PYTHON3_LIB = /nodefaultlib:python$(PYTHON3_VER).lib
733!else
734PYTHON3_LIB = $(PYTHON3)\libs\python$(PYTHON3_VER).lib
735!endif
736!endif
737
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000738# MzScheme interface
739!ifdef MZSCHEME
740!message MzScheme requested - root dir is "$(MZSCHEME)"
741!ifndef MZSCHEME_VER
742MZSCHEME_VER = 205_000
743!endif
744CFLAGS = $(CFLAGS) -DFEAT_MZSCHEME -I $(MZSCHEME)\include
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100745!if EXIST("$(MZSCHEME)\collects\scheme\base.ss") \
746 || EXIST("$(MZSCHEME)\collects\scheme\base.rkt")
747# for MzScheme >= 4 we need to include byte code for basic Scheme stuff
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000748MZSCHEME_EXTRA_DEP = mzscheme_base.c
749CFLAGS = $(CFLAGS) -DINCLUDE_MZSCHEME_BASE
750!endif
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100751!if EXIST("$(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib")
752MZSCHEME_MAIN_LIB=mzsch
753!else
754MZSCHEME_MAIN_LIB=racket
755!endif
756!if EXIST("$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib") \
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000757 && !EXIST("$(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib")
758!message Building with Precise GC
759MZSCHEME_PRECISE_GC = yes
760CFLAGS = $(CFLAGS) -DMZ_PRECISE_GC
761!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000762!if "$(DYNAMIC_MZSCHEME)" == "yes"
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000763!if "$(MZSCHEME_PRECISE_GC)" == "yes"
764!error MzScheme with Precise GC cannot be loaded dynamically
765!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000766!message MzScheme DLLs will be loaded dynamically
Bram Moolenaarb6356332005-07-18 21:40:44 +0000767CFLAGS = $(CFLAGS) -DDYNAMIC_MZSCHEME \
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100768 -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000769 -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\"
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000770!else
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000771!if "$(MZSCHEME_DEBUG)" == "yes"
772CFLAGS = $(CFLAGS) -DMZSCHEME_FORCE_GC
773!endif
774!if "$(MZSCHEME_PRECISE_GC)" == "yes"
775# Precise GC does not use separate dll
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100776MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000777!else
Bram Moolenaarb6356332005-07-18 21:40:44 +0000778MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib \
Bram Moolenaar2d0860d2010-11-03 21:59:30 +0100779 $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000780!endif
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000781!endif
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000782MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj
Bram Moolenaarbbc98db2012-02-12 01:55:55 +0100783# increase stack size
784MZSCHEME_LIB = $(MZSCHEME_LIB) /STACK:8388608
Bram Moolenaaraab21c32005-01-25 21:46:35 +0000785!endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000786
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787# Perl interface
788!ifdef PERL
789!ifndef PERL_VER
790PERL_VER = 56
791!endif
792!message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)"
793!if "$(DYNAMIC_PERL)" == "yes"
794!if $(PERL_VER) >= 56
795!message Perl DLL will be loaded dynamically
796!else
797!message Dynamic loading is not supported for Perl versions earlier than 5.6.0
798!message Reverting to static loading...
799!undef DYNAMIC_PERL
800!endif
801!endif
802
803# Is Perl installed in architecture-specific directories?
804!if exist($(PERL)\Bin\MSWin32-x86)
805PERL_ARCH = \MSWin32-x86
806!endif
807
808PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core
809
810# Version-dependent stuff
811!if $(PERL_VER) == 55
812PERL_LIB = $(PERL_INCDIR)\perl.lib
813!else
814PERL_DLL = perl$(PERL_VER).dll
815PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib
816!endif
817
818CFLAGS = $(CFLAGS) -DFEAT_PERL
819
820# Do we want to load Perl dynamically?
821!if "$(DYNAMIC_PERL)" == "yes"
822CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\"
823!undef PERL_LIB
824!endif
825
826PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl
827PERL_INC = /I $(PERL_INCDIR)
828PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj
829XSUBPP = $(PERL)\lib\ExtUtils\xsubpp
Bram Moolenaar52f83172011-09-14 19:01:42 +0200830!if exist($(XSUBPP))
Bram Moolenaar612af432011-09-14 10:49:46 +0200831XSUBPP = $(PERL_EXE) $(XSUBPP)
832!else
833XSUBPP = xsubpp
834!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835XSUBPP_TYPEMAP = $(PERL)\lib\ExtUtils\typemap
836
837!endif
838
839#
840# Support Ruby interface
841#
842!ifdef RUBY
843# Set default value
844!ifndef RUBY_VER
845RUBY_VER = 18
846!endif
847!ifndef RUBY_VER_LONG
848RUBY_VER_LONG = 1.8
849!endif
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200850!ifndef RUBY_API_VER
851RUBY_API_VER = $(RUBY_VER_LONG:.=)
852!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853
854!if $(RUBY_VER) >= 18
855!ifndef RUBY_PLATFORM
856RUBY_PLATFORM = i386-mswin32
857!endif
858!ifndef RUBY_INSTALL_NAME
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200859RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_API_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860!endif
861!else
862!ifndef RUBY_PLATFORM
863RUBY_PLATFORM = i586-mswin32
864!endif
865!ifndef RUBY_INSTALL_NAME
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200866RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867!endif
868!endif # $(RUBY_VER) >= 18
869
870!message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)"
871CFLAGS = $(CFLAGS) -DFEAT_RUBY
872RUBY_OBJ = $(OUTDIR)\if_ruby.obj
Bram Moolenaarda3cb832012-08-02 21:21:47 +0200873!if $(RUBY_VER) >= 19
874RUBY_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 +0200875!else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)"
Bram Moolenaar69154f22010-07-18 21:42:34 +0200877!endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib
879# Do we want to load Ruby dynamically?
880!if "$(DYNAMIC_RUBY)" == "yes"
881!message Ruby DLL will be loaded dynamically
Bram Moolenaarb6356332005-07-18 21:40:44 +0000882CFLAGS = $(CFLAGS) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_VER=$(RUBY_VER) \
883 -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884!undef RUBY_LIB
885!endif
886!endif # RUBY
887
888#
889# Support PostScript printing
890#
891!if "$(POSTSCRIPT)" == "yes"
892CFLAGS = $(CFLAGS) -DMSWINPS
893!endif # POSTSCRIPT
894
895#
896# FEATURES: TINY, SMALL, NORMAL, BIG or HUGE
897#
898!if "$(FEATURES)"==""
899FEATURES = BIG
900!endif
901CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES)
902
903#
Bram Moolenaard9d30582005-05-18 22:10:28 +0000904# Always generate the .pdb file, so that we get debug symbols that can be used
905# on a crash (doesn't add overhead to the executable).
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000906# Generate edit-and-continue debug info when no optimization - allows to
907# debug more conveniently (able to look at variables which are in registers)
Bram Moolenaard9d30582005-05-18 22:10:28 +0000908#
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000909CFLAGS = $(CFLAGS) /Fd$(OUTDIR)/ $(DEBUGINFO)
910LINK_PDB = /PDB:$(VIM).pdb -debug
Bram Moolenaard9d30582005-05-18 22:10:28 +0000911
912#
913# End extra feature include
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914#
915!message
916
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000917conflags = /nologo /subsystem:$(SUBSYSTEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000919PATHDEF_SRC = $(OUTDIR)\pathdef.c
920
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921!IF "$(MAP)" == "yes"
922# "/map" is for debugging
923conflags = $(conflags) /map
924!ELSEIF "$(MAP)" == "lines"
925# "/mapinfo:lines" is for debugging, only works for VC6 and later
926conflags = $(conflags) /map /mapinfo:lines
927!ENDIF
928
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000929LINKARGS1 = $(linkdebug) $(conflags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(LIBC) $(OLE_LIB) user32.lib $(SNIFF_LIB) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200931 $(LUA_LIB) $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(RUBY_LIB) \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000932 $(TCL_LIB) $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000934# Report link time code generation progress if used.
935!ifdef NODEBUG
Bram Moolenaar6f586de2012-09-18 22:00:08 +0200936!if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") || ("$(MSVCVER)" == "11.0")
Bram Moolenaarf22129b2007-10-03 11:29:44 +0000937!if "$(OPTIMIZE)" != "SPACE"
938LINKARGS1 = $(LINKARGS1) /LTCG:STATUS
939!endif
940!endif
941!endif
942
Bram Moolenaarb6356332005-07-18 21:40:44 +0000943all: $(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe \
944 GvimExt/gvimext.dll
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945
Bram Moolenaarb6356332005-07-18 21:40:44 +0000946$(VIM).exe: $(OUTDIR) $(OBJ) $(GUI_OBJ) $(OLE_OBJ) $(OLE_IDL) $(MZSCHEME_OBJ) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200947 $(LUA_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) $(TCL_OBJ) \
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200948 $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) \
949 version.c version.h
Bram Moolenaarb6356332005-07-18 21:40:44 +0000950 $(CC) $(CFLAGS) version.c
Bram Moolenaar0dc065e2005-07-04 22:49:24 +0000951 $(link) $(LINKARGS1) -out:$(VIM).exe $(OBJ) $(GUI_OBJ) $(OLE_OBJ) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200952 $(LUA_OBJ) $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) \
Bram Moolenaarb6356332005-07-18 21:40:44 +0000953 $(TCL_OBJ) $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) \
954 $(XPM_OBJ) $(OUTDIR)\version.obj $(LINKARGS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000956$(VIM): $(VIM).exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957
958$(OUTDIR):
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000959 if not exist $(OUTDIR)/nul mkdir $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960
961install.exe: dosinst.c
Bram Moolenaarb6356332005-07-18 21:40:44 +0000962 $(CC) /nologo -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib \
Bram Moolenaarb230bd52010-05-25 21:02:00 +0200963 user32.lib ole32.lib advapi32.lib uuid.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 - if exist install.exe del install.exe
965 ren dosinst.exe install.exe
966
967uninstal.exe: uninstal.c
968 $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib
969
970vimrun.exe: vimrun.c
971 $(CC) /nologo -DNDEBUG vimrun.c
972
973xxd/xxd.exe: xxd/xxd.c
974 cd xxd
975 $(MAKE) /NOLOGO -f Make_mvc.mak
976 cd ..
977
978GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
979 cd GvimExt
980 $(MAKE) /NOLOGO -f Makefile $(MAKEFLAGS_GVIMEXT)
981 cd ..
982
983
984tags: notags
985 $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro
986
987notags:
988 - if exist tags del tags
989
990clean:
Bram Moolenaar02743632005-07-25 20:42:36 +0000991 - if exist $(OUTDIR)/nul $(DEL_TREE) $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 - if exist *.obj del *.obj
993 - if exist $(VIM).exe del $(VIM).exe
994 - if exist $(VIM).ilk del $(VIM).ilk
995 - if exist $(VIM).pdb del $(VIM).pdb
996 - if exist $(VIM).map del $(VIM).map
997 - if exist $(VIM).ncb del $(VIM).ncb
998 - if exist vimrun.exe del vimrun.exe
999 - if exist install.exe del install.exe
1000 - if exist uninstal.exe del uninstal.exe
1001 - if exist if_perl.c del if_perl.c
1002 - if exist dimm.h del dimm.h
1003 - if exist dimm_i.c del dimm_i.c
1004 - if exist dimm.tlb del dimm.tlb
1005 - if exist dosinst.exe del dosinst.exe
Bram Moolenaar2d6db762009-09-11 10:49:58 +00001006 - if exist mzscheme_base.c del mzscheme_base.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 cd xxd
1008 $(MAKE) /NOLOGO -f Make_mvc.mak clean
1009 cd ..
1010 cd GvimExt
1011 $(MAKE) /NOLOGO -f Makefile clean
1012 cd ..
1013 cd GvimExt
1014 $(MAKE) /NOLOGO -f Makefile clean
1015 cd ..
1016 - if exist testdir\*.out del testdir\*.out
1017
1018test:
1019 cd testdir
1020 $(MAKE) /NOLOGO -f Make_dos.mak win32
1021 cd ..
1022
Bram Moolenaar34114692005-01-02 11:28:13 +00001023testclean:
1024 cd testdir
1025 $(MAKE) /NOLOGO -f Make_dos.mak clean
1026 cd ..
1027
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028###########################################################################
1029
1030# Create a default rule for transforming .c files to .obj files in $(OUTDIR)
1031# Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
Bram Moolenaarf22129b2007-10-03 11:29:44 +00001032!IF "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033.c{$(OUTDIR)/}.obj:
1034!ELSE
1035.c{$(OUTDIR)/}.obj::
1036!ENDIF
Bram Moolenaarb6356332005-07-18 21:40:44 +00001037 $(CC) $(CFLAGS) $<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038
1039# Create a default rule for transforming .cpp files to .obj files in $(OUTDIR)
1040# Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later)
Bram Moolenaarf22129b2007-10-03 11:29:44 +00001041!IF "$(MSVCVER)" == "4.0"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042.cpp{$(OUTDIR)/}.obj:
1043!ELSE
1044.cpp{$(OUTDIR)/}.obj::
1045!ENDIF
Bram Moolenaarb6356332005-07-18 21:40:44 +00001046 $(CC) $(CFLAGS) $<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001048$(OUTDIR)/blowfish.obj: $(OUTDIR) blowfish.c $(INCL)
1049
Bram Moolenaaredac1852010-05-18 20:34:20 +02001050$(OUTDIR)/buffer.obj: $(OUTDIR) buffer.c $(INCL)
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001051
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052$(OUTDIR)/charset.obj: $(OUTDIR) charset.c $(INCL)
1053
1054$(OUTDIR)/diff.obj: $(OUTDIR) diff.c $(INCL)
1055
1056$(OUTDIR)/digraph.obj: $(OUTDIR) digraph.c $(INCL)
1057
1058$(OUTDIR)/edit.obj: $(OUTDIR) edit.c $(INCL)
1059
1060$(OUTDIR)/eval.obj: $(OUTDIR) eval.c $(INCL)
1061
1062$(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL)
1063
1064$(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL)
1065
1066$(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmds.h
1067
1068$(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) ex_cmds.h
1069
1070$(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL)
1071
1072$(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL)
1073
1074$(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL)
1075
1076$(OUTDIR)/getchar.obj: $(OUTDIR) getchar.c $(INCL)
1077
Bram Moolenaar58d98232005-07-23 22:25:46 +00001078$(OUTDIR)/hardcopy.obj: $(OUTDIR) hardcopy.c $(INCL)
1079
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001080$(OUTDIR)/hashtab.obj: $(OUTDIR) hashtab.c $(INCL)
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001081
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082$(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL)
1083
Bram Moolenaar52b4b552005-03-07 23:00:57 +00001084$(OUTDIR)/gui_beval.obj: $(OUTDIR) gui_beval.c $(INCL) $(GUI_INCL)
1085
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086$(OUTDIR)/gui_w32.obj: $(OUTDIR) gui_w32.c gui_w48.c $(INCL) $(GUI_INCL)
1087
1088$(OUTDIR)/if_cscope.obj: $(OUTDIR) if_cscope.c $(INCL)
1089
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001090$(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL)
1091 $(CC) $(CFLAGS) $(LUA_INC) if_lua.c
1092
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093if_perl.c : if_perl.xs typemap
Bram Moolenaar612af432011-09-14 10:49:46 +02001094 $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001095 -typemap typemap if_perl.xs > if_perl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096
1097$(OUTDIR)/if_perl.obj: $(OUTDIR) if_perl.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001098 $(CC) $(CFLAGS) $(PERL_INC) if_perl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099
1100$(OUTDIR)/if_perlsfio.obj: $(OUTDIR) if_perlsfio.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001101 $(CC) $(CFLAGS) $(PERL_INC) if_perlsfio.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102
Bram Moolenaar75676462013-01-30 14:55:42 +01001103$(OUTDIR)/if_mzsch.obj: $(OUTDIR) if_mzsch.c if_mzsch.h $(INCL) $(MZSCHEME_EXTRA_DEP)
Bram Moolenaar6a9aa372005-07-20 21:54:57 +00001104 $(CC) $(CFLAGS) if_mzsch.c \
Bram Moolenaarb6356332005-07-18 21:40:44 +00001105 -DMZSCHEME_COLLECTS=\"$(MZSCHEME:\=\\)\\collects\"
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00001106mzscheme_base.c:
1107 $(MZSCHEME)\mzc --c-mods mzscheme_base.c ++lib scheme/base
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001108
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109$(OUTDIR)/if_python.obj: $(OUTDIR) if_python.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001110 $(CC) $(CFLAGS) $(PYTHON_INC) if_python.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001112$(OUTDIR)/if_python3.obj: $(OUTDIR) if_python3.c $(INCL)
1113 $(CC) $(CFLAGS) $(PYTHON3_INC) if_python3.c
1114
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115$(OUTDIR)/if_ole.obj: $(OUTDIR) if_ole.cpp $(INCL) if_ole.h
1116
1117$(OUTDIR)/if_ruby.obj: $(OUTDIR) if_ruby.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001118 $(CC) $(CFLAGS) $(RUBY_INC) if_ruby.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119
1120$(OUTDIR)/if_sniff.obj: $(OUTDIR) if_sniff.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001121 $(CC) $(CFLAGS) if_sniff.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122
1123$(OUTDIR)/if_tcl.obj: $(OUTDIR) if_tcl.c $(INCL)
Bram Moolenaarb6356332005-07-18 21:40:44 +00001124 $(CC) $(CFLAGS) $(TCL_INC) if_tcl.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125
1126$(OUTDIR)/main.obj: $(OUTDIR) main.c $(INCL)
1127
1128$(OUTDIR)/mark.obj: $(OUTDIR) mark.c $(INCL)
1129
1130$(OUTDIR)/memfile.obj: $(OUTDIR) memfile.c $(INCL)
1131
1132$(OUTDIR)/memline.obj: $(OUTDIR) memline.c $(INCL)
1133
1134$(OUTDIR)/menu.obj: $(OUTDIR) menu.c $(INCL)
1135
1136$(OUTDIR)/message.obj: $(OUTDIR) message.c $(INCL)
1137
1138$(OUTDIR)/misc1.obj: $(OUTDIR) misc1.c $(INCL)
1139
1140$(OUTDIR)/misc2.obj: $(OUTDIR) misc2.c $(INCL)
1141
1142$(OUTDIR)/move.obj: $(OUTDIR) move.c $(INCL)
1143
1144$(OUTDIR)/mbyte.obj: $(OUTDIR) mbyte.c $(INCL)
1145
1146$(OUTDIR)/netbeans.obj: $(OUTDIR) netbeans.c $(NBDEBUG_SRC) $(INCL)
1147
1148$(OUTDIR)/normal.obj: $(OUTDIR) normal.c $(INCL)
1149
1150$(OUTDIR)/option.obj: $(OUTDIR) option.c $(INCL)
1151
1152$(OUTDIR)/ops.obj: $(OUTDIR) ops.c $(INCL)
1153
1154$(OUTDIR)/os_mswin.obj: $(OUTDIR) os_mswin.c $(INCL)
1155
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001156$(OUTDIR)/winclip.obj: $(OUTDIR) winclip.c $(INCL)
1157
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158$(OUTDIR)/os_win32.obj: $(OUTDIR) os_win32.c $(INCL) os_win32.h
1159
1160$(OUTDIR)/os_w32exe.obj: $(OUTDIR) os_w32exe.c $(INCL)
1161
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001162$(OUTDIR)/pathdef.obj: $(OUTDIR) $(PATHDEF_SRC) $(INCL)
1163 $(CC) $(CFLAGS) $(PATHDEF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001165$(OUTDIR)/popupmnu.obj: $(OUTDIR) popupmnu.c $(INCL)
Bram Moolenaarbb15b652005-10-03 21:52:09 +00001166
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167$(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL)
1168
1169$(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c $(INCL)
1170
1171$(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL)
1172
1173$(OUTDIR)/search.obj: $(OUTDIR) search.c $(INCL)
1174
Bram Moolenaaredac1852010-05-18 20:34:20 +02001175$(OUTDIR)/sha256.obj: $(OUTDIR) sha256.c $(INCL)
1176
Bram Moolenaar2e4096b2005-03-20 22:25:45 +00001177$(OUTDIR)/spell.obj: $(OUTDIR) spell.c $(INCL)
1178
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179$(OUTDIR)/syntax.obj: $(OUTDIR) syntax.c $(INCL)
1180
1181$(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL)
1182
1183$(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL)
1184
1185$(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL)
1186
1187$(OUTDIR)/undo.obj: $(OUTDIR) undo.c $(INCL)
1188
1189$(OUTDIR)/window.obj: $(OUTDIR) window.c $(INCL)
1190
1191$(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c
Bram Moolenaarb6356332005-07-18 21:40:44 +00001192 $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001194$(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp \
1195 tearoff.bmp vim.ico vim_error.ico \
1196 vim_alert.ico vim_info.ico vim_quest.ico
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc
1198
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001199iid_ole.c if_ole.h vim.tlb: if_ole.idl
Bram Moolenaarb6356332005-07-18 21:40:44 +00001200 midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \
1201 /header if_ole.h if_ole.idl
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202
1203dimm.h dimm_i.c: dimm.idl
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001204 midl /nologo /error none /proxy nul dimm.idl
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205
1206$(OUTDIR)/dimm_i.obj: $(OUTDIR) dimm_i.c $(INCL)
1207
1208$(OUTDIR)/glbl_ime.obj: $(OUTDIR) glbl_ime.cpp dimm.h $(INCL)
1209
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00001210# $CFLAGS may contain backslashes and double quotes, escape them both.
1211E0_CFLAGS = $(CFLAGS:\=\\)
1212E_CFLAGS = $(E0_CFLAGS:"=\")
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001213# ") stop the string
Bram Moolenaarc30846f2011-02-15 18:06:15 +01001214# $LINKARGS2 may contain backslashes and double quotes, escape them both.
1215E0_LINKARGS2 = $(LINKARGS2:\=\\)
1216E_LINKARGS2 = $(E0_LINKARGS2:"=\")
1217# ") stop the string
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00001218
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001219$(PATHDEF_SRC): auto
1220 @echo creating $(PATHDEF_SRC)
1221 @echo /* pathdef.c */ > $(PATHDEF_SRC)
1222 @echo #include "vim.h" >> $(PATHDEF_SRC)
1223 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; >> $(PATHDEF_SRC)
1224 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; >> $(PATHDEF_SRC)
1225 @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> $(PATHDEF_SRC)
Bram Moolenaarc30846f2011-02-15 18:06:15 +01001226 @echo char_u *all_lflags = (char_u *)"$(link:\=\\) $(LINKARGS1:\=\\) $(E_LINKARGS2)"; >> $(PATHDEF_SRC)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00001227 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> $(PATHDEF_SRC)
1228 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> $(PATHDEF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229
1230auto:
1231 if not exist auto/nul mkdir auto
1232
1233# End Custom Build
1234proto.h: \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001235 proto/blowfish.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 proto/buffer.pro \
1237 proto/charset.pro \
1238 proto/diff.pro \
1239 proto/digraph.pro \
1240 proto/edit.pro \
1241 proto/eval.pro \
1242 proto/ex_cmds.pro \
1243 proto/ex_cmds2.pro \
1244 proto/ex_docmd.pro \
1245 proto/ex_eval.pro \
1246 proto/ex_getln.pro \
1247 proto/fileio.pro \
1248 proto/getchar.pro \
Bram Moolenaar58d98232005-07-23 22:25:46 +00001249 proto/hardcopy.pro \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001250 proto/hashtab.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 proto/main.pro \
1252 proto/mark.pro \
1253 proto/memfile.pro \
1254 proto/memline.pro \
1255 proto/menu.pro \
1256 proto/message.pro \
1257 proto/misc1.pro \
1258 proto/misc2.pro \
1259 proto/move.pro \
1260 proto/mbyte.pro \
1261 proto/normal.pro \
1262 proto/ops.pro \
1263 proto/option.pro \
1264 proto/os_mswin.pro \
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001265 proto/winclip.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 proto/os_win32.pro \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001267 proto/popupmnu.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 proto/quickfix.pro \
1269 proto/regexp.pro \
1270 proto/screen.pro \
1271 proto/search.pro \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001272 proto/sha256.pro \
Bram Moolenaar2e4096b2005-03-20 22:25:45 +00001273 proto/spell.pro \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 proto/syntax.pro \
1275 proto/tag.pro \
1276 proto/term.pro \
1277 proto/ui.pro \
1278 proto/undo.pro \
1279 proto/window.pro \
1280 $(NETBEANS_PRO)
1281
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001282.SUFFIXES: .cod .i
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001283
1284# Generate foo.cod (mixed source and assembly listing) from foo.c via "nmake
1285# foo.cod"
1286.c.cod:
1287 $(CC) $(CFLAGS) /FAcs $<
1288
1289# Generate foo.i (preprocessor listing) from foo.c via "nmake foo.i"
1290.c.i:
1291 $(CC) $(CFLAGS) /P /C $<
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001292
1293
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294# vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: