blob: a8b9dffd7b9cd35e3a16c0b827c544c7f4337cd3 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001# Microsoft Developer Studio Generated NMAKE File, Format Version 4.00
2# ** DO NOT EDIT **
3#
4# Make_ivc.mak Makefile to build vim in both IDE and nmake.
5# This file can be imported as a workspace into Visual Studio. It must be in
6# DOS fileformat then!
7#
8# It is worth making the file read-only as the VC4 IDE will try to overwrite
9# it with a HUGELY expanded clone of itself.
10#
11# The following points are worth noting:
12# 1) Comments here are ignored by VC[456].0 IDEs
13# 2) # ADD LINK32 /pdb:.\Dbg/vimd.pdb is written so rather than
14# # ADD LINK32 /pdb:".\Dbg/vimd.pdb" to avoid VC4 -> VC5 conversion failure
15# 3) It is good to delete .pdb file before linking to cope with switch among
16# VC[456] as IDE clean action does not remove that file and link clashes
17# with it. The following works in VC5 but not in VC4 which does not support
18# pre-link actions. The nmake action does such deletions.
19# Begin Special Build Tool
20PreLink_Cmds=@if exist .\oleDbg\gvimd.pdb del .\oleDbg\gvimd.pdb
21# End Special Build Tool
22# 4) I was unable to make !IFDEF OLE, etc. work in the VC4 IDE.
23# I was aiming for 4 configurations with sub-configurations selected by
24# environment variables.
25# 5) Optimisation is not supported by disabled versions of VC. This results in
26# messages for Release builds like:
27# Command line warning D4025 : overriding '/O2' with '/Od'
28# 6) nmake 1.62 and later support batch compilation. I was unable to use this
29# in a manner acceptable to earlier IDEs.
30#
31# History
32#
33# When Who What
34# 2001-07-06 W.Briscoe Original derived from Make_[go]vc.mak with less noise
35# 2001-07-08 W.Briscoe Further noise reduction; consistent .map and .pdb logic
36# Added install.exe rule, etc.; Removed unused libraries.
37# 2001-08-09 W.Briscoe Restored VC4.0-required trailing space in !MESSAGE afore
38# Enhanced if_ole.idl rule to use /out argument.
39# Default rules now relative to . to reduce IDE/nmake difs
40
41# TARGTYPE "Win32 (x86) Console Application" 0x0103
42
43!IF "$(CFG)" == ""
44CFG=Vim - Win32 Release gvim OLE
45!MESSAGE No configuration specified. Defaulting to Vim - Win32 Release gvim OLE.
46!ENDIF
47
48!IF "$(CFG)" != "Vim - Win32 Release gvim OLE"\
49 && "$(CFG)" != "Vim - Win32 Debug gvim OLE"\
50 && "$(CFG)" != "Vim - Win32 Release gvim"\
51 && "$(CFG)" != "Vim - Win32 Debug gvim"\
52 && "$(CFG)" != "Vim - Win32 Release vim"\
53 && "$(CFG)" != "Vim - Win32 Debug vim"
54!MESSAGE Invalid configuration "$(CFG)" specified.
55!MESSAGE You can specify a configuration when running NMAKE on this makefile
56!MESSAGE by defining the macro CFG on the command line. For example:
57!MESSAGE
58!MESSAGE NMAKE /f "Make_ivc.mak" CFG="Vim - Win32 Debug vim"
59!MESSAGE
60!MESSAGE Possible choices for configuration are:
61!MESSAGE
62!MESSAGE "Vim - Win32 Release gvim OLE" (based on "Win32 (x86) Console Application")
63!MESSAGE "Vim - Win32 Debug gvim OLE" (based on "Win32 (x86) Console Application")
64!MESSAGE "Vim - Win32 Release gvim" (based on "Win32 (x86) Console Application")
65!MESSAGE "Vim - Win32 Debug gvim" (based on "Win32 (x86) Console Application")
66!MESSAGE "Vim - Win32 Release vim" (based on "Win32 (x86) Console Application")
67!MESSAGE "Vim - Win32 Debug vim" (based on "Win32 (x86) Console Application")
68!MESSAGE
69!ERROR An invalid configuration is specified.
70!ENDIF
71
72!IF "$(OS)" == "Windows_NT"
73NULL=
74DEL_TREE = rmdir /s /q
75!ELSE
76NULL=nul
77DEL_TREE = deltree /y
78!ENDIF
79
80# Begin Project
81# PROP Target_Last_Scanned "Vim - Win32 Debug vim"
82# PROP Use_MFC 0
83
84RSC=rc.exe
85CPP=cl.exe
86LINK32=link.exe
87
88CPP_PROJ= /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c
89# ADD CPP /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c
90
Bram Moolenaar828c3d72018-06-19 18:58:07 +020091LINK32_FLAGS= oldnames.lib kernel32.lib user32.lib gdi32.lib version.lib comdlg32.lib comctl32.lib advapi32.lib shell32.lib ole32.lib netapi32.lib uuid.lib /nologo /machine:I386 /nodefaultlib
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000092# ADD LINK32 oldnames.lib kernel32.lib user32.lib gdi32.lib version.lib comdlg32.lib comctl32.lib advapi32.lib shell32.lib ole32.lib uuid.lib /nologo /machine:I386 /nodefaultlib
Bram Moolenaar071d4272004-06-13 20:20:40 +000093# SUBTRACT LINK32 /incremental:yes
94
Bram Moolenaar0472b6d2019-02-18 21:41:37 +010095RSC_PROJ= /l 0x409 /d "FEAT_GUI_MSWIN"
96# ADD RSC /l 0x409 /d "FEAT_GUI_MSWIN"
Bram Moolenaar071d4272004-06-13 20:20:40 +000097
98!IF "$(CFG)" == "Vim - Win32 Release gvim OLE"
99
100# PROP Use_Debug_Libraries 0
101# PROP Output_Dir .\oleRel
102# PROP Intermediate_Dir .\oleRel
103
104INTDIR=.\oleRel
105VIM=gvim
Bram Moolenaar58e7f2b2005-03-16 09:48:18 +0000106EXTRAS="$(INTDIR)/if_ole.obj" "$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
Bram Moolenaar0472b6d2019-02-18 21:41:37 +0100108CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleRel/ /Fo.\oleRel/
109# ADD CPP /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleRel/ /Fo.\oleRel/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110
111RSC_PROJ=$(RSC_PROJ) /I ".\oleRel" /d "NDEBUG" /d "FEAT_OLE" /fo.\oleRel\vim.res
112# ADD RSC /I ".\oleRel" /d "NDEBUG" /d "FEAT_OLE" /fo.\oleRel\vim.res
113
Bram Moolenaar9c96f592005-06-30 21:52:39 +0000114LINK32_FLAGS=$(LINK32_FLAGS) /pdb:.\oleRel/gvim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvim.map libc.lib oleaut32.lib /subsystem:windows /out:.\gvim.exe
115# ADD LINK32 /pdb:.\oleRel/gvim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvim.map libc.lib oleaut32.lib /subsystem:windows /out:.\gvim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116
117!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE"
118
119# PROP Use_Debug_Libraries 1
120# PROP Output_Dir .\oleDbg
121# PROP Intermediate_Dir .\oleDbg
122
123INTDIR=.\oleDbg
124VIM=gvimd
Bram Moolenaar58e7f2b2005-03-16 09:48:18 +0000125EXTRAS="$(INTDIR)/if_ole.obj" "$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126
Bram Moolenaar0472b6d2019-02-18 21:41:37 +0100127CPP_PROJ=$(CPP_PROJ) /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleDbg/ /Fo.\oleDbg/
128# ADD CPP /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleDbg/ /Fo.\oleDbg/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129
130RSC_PROJ=$(RSC_PROJ) /I .\oleDbg /d "_DEBUG" /d "FEAT_OLE" /fo.\oleDbg\vim.res
131# ADD RSC /I .\oleDbg /d "_DEBUG" /d "FEAT_OLE" /fo.\oleDbg\vim.res
132
Bram Moolenaar9c96f592005-06-30 21:52:39 +0000133LINK32_FLAGS=$(LINK32_FLAGS) libcd.lib oleaut32.lib /subsystem:windows /debug /profile /pdb:.\oleDbg/gvimd.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvimd.map /out:.\gvimd.exe
134# ADD LINK32 libcd.lib oleaut32.lib /subsystem:windows /debug /profile /pdb:.\oleDbg/gvimd.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvimd.map /out:.\gvimd.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
136
137!ELSEIF "$(CFG)" == "Vim - Win32 Release gvim"
138
139# PROP Use_Debug_Libraries 0
140# PROP Output_Dir .\gRel
141# PROP Intermediate_Dir .\gRel
142
143INTDIR=.\gRel
144VIM=gvim
Bram Moolenaar58e7f2b2005-03-16 09:48:18 +0000145EXTRAS="$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146
Bram Moolenaar0472b6d2019-02-18 21:41:37 +0100147CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /Fd.\gRel/ /Fo.\gRel/
148# ADD CPP /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /Fd.\gRel/ /Fo.\gRel/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149
150RSC_PROJ=$(RSC_PROJ) /d "NDEBUG" /fo.\gRel\vim.res
151# ADD RSC /d "NDEBUG" /fo.\gRel\vim.res
152
Bram Moolenaar9c96f592005-06-30 21:52:39 +0000153LINK32_FLAGS=$(LINK32_FLAGS) /pdb:.\gRel/gvim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvim.map libc.lib /subsystem:windows /out:.\gvim.exe
154# ADD LINK32 /pdb:.\gRel/gvim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\gvim.map libc.lib /subsystem:windows /out:.\gvim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155
156!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim"
157
158# PROP Use_Debug_Libraries 1
159# PROP Output_Dir .\gDbg
160# PROP Intermediate_Dir .\gDbg
161
162INTDIR=.\gDbg
163VIM=gvimd
Bram Moolenaar58e7f2b2005-03-16 09:48:18 +0000164EXTRAS="$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165
Bram Moolenaar0472b6d2019-02-18 21:41:37 +0100166CPP_PROJ=$(CPP_PROJ) /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /Fd.\gDbg/ /Fo.\gDbg/
167# ADD CPP /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /Fd.\gDbg/ /Fo.\gDbg/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168
169RSC_PROJ=$(RSC_PROJ) /d "_DEBUG" /fo.\gDbg\vim.res
170# ADD RSC /d "_DEBUG" /fo.\gDbg\vim.res
171
Bram Moolenaar9c96f592005-06-30 21:52:39 +0000172LINK32_FLAGS=$(LINK32_FLAGS) libcd.lib /subsystem:windows /debug /profile /pdb:.\gDbg/gvimd.pdb -debug:full -debugtype:cv,fixup /map:.\gDbg\gvimd.map /out:.\gvimd.exe
173# ADD LINK32 libcd.lib /subsystem:windows /debug /profile /pdb:.\gDbg/gvimd.pdb -debug:full -debugtype:cv,fixup /map:.\gDbg\gvimd.map /out:.\gvimd.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174
175!ELSEIF "$(CFG)" == "Vim - Win32 Release vim"
176
177# PROP Use_Debug_Libraries 0
178# PROP Output_Dir .\Rel
179# PROP Intermediate_Dir .\Rel
180
181INTDIR=.\Rel
182VIM=vim
183EXTRAS=
184
Bram Moolenaar9c96f592005-06-30 21:52:39 +0000185CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /Fd.\Rel/ /Fo.\Rel/
186# ADD CPP /Zi /O2 /D "NDEBUG" /Fd.\Rel/ /Fo.\Rel/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187
Bram Moolenaar9c96f592005-06-30 21:52:39 +0000188LINK32_FLAGS=$(LINK32_FLAGS) /pdb:.\Rel/vim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\vim.map libc.lib /subsystem:console /out:.\vim.exe
189# ADD LINK32 /pdb:.\Rel/vim.pdb -debug:full -debugtype:cv,fixup /map:.\oleDbg\vim.map libc.lib /subsystem:console /out:.\vim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190
191!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
192
193# PROP Use_Debug_Libraries 1
194# PROP Output_Dir .\Dbg
195# PROP Intermediate_Dir .\Dbg
196
197INTDIR=.\Dbg
198VIM=vimd
199EXTRAS=
200
201CPP_PROJ=$(CPP_PROJ) /Zi /Od /D "_DEBUG" /Fd.\Dbg/ /Fo.\Dbg/
202# ADD CPP /Zi /Od /D "_DEBUG" /Fd.\Dbg/ /Fo.\Dbg/
203
Bram Moolenaar9c96f592005-06-30 21:52:39 +0000204LINK32_FLAGS=$(LINK32_FLAGS) libcd.lib /subsystem:console /debug /profile /pdb:.\Dbg/vimd.pdb -debug:full -debugtype:cv,fixup /map:.\Dbg/vimd.map /out:.\vimd.exe
205# ADD LINK32 libcd.lib /subsystem:console /debug /profile /pdb:.\Dbg/vimd.pdb -debug:full -debugtype:cv,fixup /map:.\Dbg/vimd.map /out:.\vimd.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206
207!ENDIF
208
209ALL : .\$(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe GvimExt/gvimext.dll
210
211LINK32_OBJS= \
212 $(EXTRAS) \
Bram Moolenaar75464dc2016-07-02 20:27:50 +0200213 "$(INTDIR)/arabic.obj" \
Bram Moolenaar3e460fd2019-01-26 16:21:07 +0100214 "$(INTDIR)/autocmd.obj" \
Bram Moolenaar40e6a712010-05-16 22:32:54 +0200215 "$(INTDIR)/blowfish.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 "$(INTDIR)/buffer.obj" \
217 "$(INTDIR)/charset.obj" \
Bram Moolenaar07cf3822014-08-10 16:31:50 +0200218 "$(INTDIR)/crypt.obj" \
219 "$(INTDIR)/crypt_zip.obj" \
Bram Moolenaareead75c2019-04-21 11:35:00 +0200220 "$(INTDIR)/debugger.obj" \
Bram Moolenaar6583c442016-07-17 18:41:47 +0200221 "$(INTDIR)/dict.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222 "$(INTDIR)/diff.obj" \
223 "$(INTDIR)/digraph.obj" \
224 "$(INTDIR)/edit.obj" \
225 "$(INTDIR)/eval.obj" \
Bram Moolenaar73dad1e2016-07-17 22:13:49 +0200226 "$(INTDIR)/evalfunc.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227 "$(INTDIR)/ex_cmds.obj" \
228 "$(INTDIR)/ex_cmds2.obj" \
229 "$(INTDIR)/ex_docmd.obj" \
230 "$(INTDIR)/ex_eval.obj" \
231 "$(INTDIR)/ex_getln.obj" \
232 "$(INTDIR)/fileio.obj" \
Bram Moolenaar5fd0f502019-02-13 23:13:28 +0100233 "$(INTDIR)/findfile.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 "$(INTDIR)/fold.obj" \
235 "$(INTDIR)/getchar.obj" \
Bram Moolenaar58d98232005-07-23 22:25:46 +0000236 "$(INTDIR)/hardcopy.obj" \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000237 "$(INTDIR)/hashtab.obj" \
Bram Moolenaar4b471622019-01-31 13:48:09 +0100238 "$(INTDIR)/indent.obj" \
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100239 "$(INTDIR)/insexpand.obj" \
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100240 "$(INTDIR)/json.obj" \
Bram Moolenaar6583c442016-07-17 18:41:47 +0200241 "$(INTDIR)/list.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 "$(INTDIR)/main.obj" \
243 "$(INTDIR)/mark.obj" \
244 "$(INTDIR)/mbyte.obj" \
245 "$(INTDIR)/memfile.obj" \
246 "$(INTDIR)/memline.obj" \
247 "$(INTDIR)/menu.obj" \
248 "$(INTDIR)/message.obj" \
249 "$(INTDIR)/misc1.obj" \
250 "$(INTDIR)/misc2.obj" \
251 "$(INTDIR)/move.obj" \
252 "$(INTDIR)/normal.obj" \
253 "$(INTDIR)/ops.obj" \
254 "$(INTDIR)/option.obj" \
255 "$(INTDIR)/os_mswin.obj" \
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100256 "$(INTDIR)/winclip.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 "$(INTDIR)/os_win32.obj" \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000258 "$(INTDIR)/popupmnu.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 "$(INTDIR)/quickfix.obj" \
260 "$(INTDIR)/regexp.obj" \
261 "$(INTDIR)/screen.obj" \
262 "$(INTDIR)/search.obj" \
Bram Moolenaar40e6a712010-05-16 22:32:54 +0200263 "$(INTDIR)/sha256.obj" \
Bram Moolenaarbbea4702019-01-01 13:20:31 +0100264 "$(INTDIR)/sign.obj" \
Bram Moolenaar2e4096b2005-03-20 22:25:45 +0000265 "$(INTDIR)/spell.obj" \
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200266 "$(INTDIR)/spellfile.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 "$(INTDIR)/syntax.obj" \
268 "$(INTDIR)/tag.obj" \
269 "$(INTDIR)/term.obj" \
270 "$(INTDIR)/ui.obj" \
271 "$(INTDIR)/undo.obj" \
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200272 "$(INTDIR)/usercmd.obj" \
Bram Moolenaar6583c442016-07-17 18:41:47 +0200273 "$(INTDIR)/userfunc.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 "$(INTDIR)/version.obj" \
275 "$(INTDIR)/window.obj"
276
277".\$(VIM).exe" : "$(INTDIR)" $(EXTRAS) $(LINK32_OBJS)
278 @if exist $(INTDIR)\$(VIM).pdb del $(INTDIR)\$(VIM).pdb
279 $(LINK32) $(LINK32_FLAGS) $(LINK32_OBJS)
280
281"$(INTDIR)" :
282 if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
283
284CLEAN :
285 -@if exist "$(INTDIR)/$(NULL)" $(DEL_TREE) "$(INTDIR)"
286 -@if exist $(VIM).exe erase $(VIM).exe
287 -@if exist $(VIM).ilk erase $(VIM).ilk
288 -@if exist $(VIM).map erase $(VIM).map
289 -@if exist $(VIM).pdb erase $(VIM).pdb
290 -@if exist DLLDATA.C erase DLLDATA.C
291 -@if exist Make_ivc.bak attrib -r Make_ivc.bak
292 -@if exist Make_ivc.bak erase Make_ivc.bak
293 -@if exist Make_ivc.dsp erase Make_ivc.dsp
294 -@if exist Make_ivc.dsw erase Make_ivc.dsw
295 -@if exist Make_ivc.mdp erase Make_ivc.mdp
296 -@if exist Make_ivc.ncb erase Make_ivc.ncb
297 -@if exist Make_ivc.opt erase Make_ivc.opt
298 -@if exist Make_ivc.plg erase Make_ivc.plg
299 -@if exist dosinst.obj erase dosinst.obj
300 -@if exist install.exe erase install.exe
301 -@if exist uninstal.exe erase uninstal.exe
302 -@if exist uninstal.obj erase uninstal.obj
303 -@if exist vimrun.exe erase vimrun.exe
304 -@if exist vimrun.obj erase vimrun.obj
305
306
307install.exe: dosinst.c
Bram Moolenaarb230bd52010-05-25 21:02:00 +0200308 $(CPP) /Fe$@ /nologo /W3 -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib user32.lib ole32.lib advapi32.lib uuid.lib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
310uninstal.exe: uninstal.c
311 $(CPP) /nologo /W3 -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib
312
313vimrun.exe: vimrun.c
314 $(CPP) /nologo /W3 -DNDEBUG vimrun.c
315
316xxd/xxd.exe: xxd/xxd.c
317 cd xxd
318 $(MAKE) /NOLOGO -f Make_mvc.mak
319 cd ..
320
321GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
322 cd GvimExt
323 $(MAKE) /NOLOGO -f Makefile
324 cd ..
325
326{.}.c{$(INTDIR)/}.obj:
327 $(CPP) $(CPP_PROJ) $<
328
329{.}.cpp{$(INTDIR)/}.obj:
330 $(CPP) $(CPP_PROJ) /I $(INTDIR) $<
331
332{.}.rc{$(INTDIR)/}.res:
333 $(RSC) $(RSC_PROJ) $<
334
335# Begin Target
336
337# Name "Vim - Win32 Release gvim OLE"
338# Name "Vim - Win32 Debug gvim OLE"
339# Name "Vim - Win32 Release gvim"
340# Name "Vim - Win32 Debug gvim"
341# Name "Vim - Win32 Release vim"
342# Name "Vim - Win32 Debug vim"
343
344# Begin Source File
345
Bram Moolenaar75464dc2016-07-02 20:27:50 +0200346SOURCE=.\arabic.c
347# End Source File
348# Begin Source File
Bram Moolenaar3e460fd2019-01-26 16:21:07 +0100349#
350SOURCE=.\autocmd.c
351# End Source File
352# Begin Source File
Bram Moolenaar75464dc2016-07-02 20:27:50 +0200353
Bram Moolenaar6a3c9972010-06-07 22:50:29 +0200354SOURCE=.\blowfish.c
355# End Source File
356# Begin Source File
357
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358SOURCE=.\buffer.c
359# End Source File
360# Begin Source File
361
362SOURCE=.\charset.c
363# End Source File
364# Begin Source File
365
Bram Moolenaar07cf3822014-08-10 16:31:50 +0200366SOURCE=.\crypt.c
367# End Source File
368# Begin Source File
369
370SOURCE=.\crypt_zip.c
371# End Source File
372# Begin Source File
373
Bram Moolenaareead75c2019-04-21 11:35:00 +0200374SOURCE=.\debugger.c
375# End Source File
376# Begin Source File
377
Bram Moolenaar6583c442016-07-17 18:41:47 +0200378SOURCE=.\dict.c
379# End Source File
380# Begin Source File
381
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382SOURCE=.\diff.c
383# End Source File
384# Begin Source File
385
386SOURCE=.\digraph.c
387# End Source File
388# Begin Source File
389
390SOURCE=.\edit.c
391# End Source File
392# Begin Source File
393
394SOURCE=.\eval.c
395# End Source File
396# Begin Source File
397
Bram Moolenaar73dad1e2016-07-17 22:13:49 +0200398SOURCE=.\evalfunc.c
399# End Source File
400# Begin Source File
401
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402SOURCE=.\ex_cmds.c
403# End Source File
404# Begin Source File
405
406SOURCE=.\ex_cmds2.c
407# End Source File
408# Begin Source File
409
410SOURCE=.\ex_docmd.c
411# End Source File
412# Begin Source File
413
414SOURCE=.\ex_eval.c
415# End Source File
416# Begin Source File
417
418SOURCE=.\ex_getln.c
419# End Source File
420# Begin Source File
421
422SOURCE=.\fileio.c
423# End Source File
424# Begin Source File
Bram Moolenaar5fd0f502019-02-13 23:13:28 +0100425#
426SOURCE=.\findfile.c
427# End Source File
428# Begin Source File
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429
430SOURCE=.\fold.c
431# End Source File
432# Begin Source File
433
434SOURCE=.\getchar.c
435# End Source File
436# Begin Source File
437
Bram Moolenaar58d98232005-07-23 22:25:46 +0000438SOURCE=.\hardcopy.c
439# End Source File
440# Begin Source File
441
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000442SOURCE=.\hashtab.c
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000443# End Source File
444# Begin Source File
Bram Moolenaar4b471622019-01-31 13:48:09 +0100445#
446SOURCE=.\indent.c
447# End Source File
448# Begin Source File
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100449#
450SOURCE=.\insexpand.c
451# End Source File
452# Begin Source File
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000453
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454SOURCE=.\gui.c
455
456!IF "$(CFG)" == "Vim - Win32 Release vim"
457
458# PROP Exclude_From_Build 1
459
460!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
461
462# PROP Exclude_From_Build 1
463
464!ENDIF
465
466# End Source File
467# Begin Source File
468
469SOURCE=.\gui_w32.c
470
471!IF "$(CFG)" == "Vim - Win32 Release vim"
472
473# PROP Exclude_From_Build 1
474
475!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
476
477# PROP Exclude_From_Build 1
478
479!ENDIF
480
481# End Source File
482# Begin Source File
483
Bram Moolenaar58e7f2b2005-03-16 09:48:18 +0000484SOURCE=.\gui_beval.c
485
486!IF "$(CFG)" == "Vim - Win32 Release vim"
487
488# PROP Exclude_From_Build 1
489
490!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
491
492# PROP Exclude_From_Build 1
493
494!ENDIF
495
496# End Source File
497# Begin Source File
498
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499SOURCE=.\os_w32exe.c
500
501!IF "$(CFG)" == "Vim - Win32 Release vim"
502
503# PROP Exclude_From_Build 1
504
505!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
506
507# PROP Exclude_From_Build 1
508
509!ENDIF
510
511# End Source File
512# Begin Source File
513
514SOURCE=.\if_ole.cpp
515
516!IF "$(CFG)" == "Vim - Win32 Release gvim OLE"
517
518# PROP Ignore_Default_Tool 1
519# Begin Custom Build
520
521"$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
Bram Moolenaar0472b6d2019-02-18 21:41:37 +0100522 cl.exe /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_MSWIN" /D "FEAT_OLE" /Fd.\oleRel/ /Fo.\oleRel/ /I ".\oleRel" .\if_ole.cpp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 @rem This is the default rule with /I "$(IntDir)" added
524
525# End Custom Build
526
527!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE"
528
529# PROP Ignore_Default_Tool 1
530# Begin Custom Build
531
532"$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
Bram Moolenaar0472b6d2019-02-18 21:41:37 +0100533 cl.exe /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c /Zi /Od /D "_DEBUG" /D "FEAT_GUI_MSWIN" /D "FEAT_OLE" /Fd.\oleDbg/ /Fo.\oleDbg/ /I ".\oleDbg" .\if_ole.cpp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 @rem This is the default rule with /I "$(IntDir)" added
535
536# End Custom Build
537
538!ELSEIF "$(CFG)" == "Vim - Win32 Release gvim"
539
540# PROP Exclude_From_Build 1
541
542!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim"
543
544# PROP Exclude_From_Build 1
545
546!ELSEIF "$(CFG)" == "Vim - Win32 Release vim"
547
548# PROP Exclude_From_Build 1
549
550!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
551
552# PROP Exclude_From_Build 1
553
554!ENDIF
555
556# End Source File
557# Begin Source File
558
559SOURCE=.\if_ole.idl
560
561!IF "$(CFG)" == "Vim - Win32 Release gvim OLE"
562
563# PROP Ignore_Default_Tool 1
564# Begin Custom Build
565
566"$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)"
567 if exist .\if_ole.h del .\if_ole.h
568 midl /out .\oleRel /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl
569
570# End Custom Build
571
572!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE"
573
574# PROP Ignore_Default_Tool 1
575# Begin Custom Build
576
577"$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)"
578 if exist .\if_ole.h del .\if_ole.h
579 midl /out .\oleDbg /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl
580
581# End Custom Build
582
583!ELSEIF "$(CFG)" == "Vim - Win32 Release gvim"
584
585# PROP Exclude_From_Build 1
586
587!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim"
588
589# PROP Exclude_From_Build 1
590
591!ELSEIF "$(CFG)" == "Vim - Win32 Release vim"
592
593# PROP Exclude_From_Build 1
594
595!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
596
597# PROP Exclude_From_Build 1
598
599!ENDIF
600
601# End Source File
602# Begin Source File
603
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100604SOURCE=.\json.c
605# End Source File
606# Begin Source File
607
Bram Moolenaar6583c442016-07-17 18:41:47 +0200608SOURCE=.\list.c
609# End Source File
610# Begin Source File
611
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612SOURCE=.\main.c
613# End Source File
614# Begin Source File
615
616SOURCE=.\mark.c
617# End Source File
618# Begin Source File
619
620SOURCE=.\mbyte.c
621# End Source File
622# Begin Source File
623
624SOURCE=.\memfile.c
625# End Source File
626# Begin Source File
627
628SOURCE=.\memline.c
629# End Source File
630# Begin Source File
631
632SOURCE=.\menu.c
633# End Source File
634# Begin Source File
635
636SOURCE=.\message.c
637# End Source File
638# Begin Source File
639
640SOURCE=.\misc1.c
641# End Source File
642# Begin Source File
643
644SOURCE=.\misc2.c
645# End Source File
646# Begin Source File
647
648SOURCE=.\move.c
649# End Source File
650# Begin Source File
651
652SOURCE=.\normal.c
653# End Source File
654# Begin Source File
655
656SOURCE=.\ops.c
657# End Source File
658# Begin Source File
659
660SOURCE=.\option.c
661# End Source File
662# Begin Source File
663
664SOURCE=.\os_mswin.c
665# End Source File
666# Begin Source File
667
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100668SOURCE=.\winclip.c
669# End Source File
670# Begin Source File
671
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672SOURCE=.\os_win32.c
673# End Source File
674# Begin Source File
675
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000676SOURCE=.\popupmnu.c
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000677# End Source File
678# Begin Source File
679
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680SOURCE=.\quickfix.c
681# End Source File
682# Begin Source File
683
684SOURCE=.\regexp.c
685# End Source File
686# Begin Source File
687
688SOURCE=.\screen.c
689# End Source File
690# Begin Source File
691
692SOURCE=.\search.c
693# End Source File
694# Begin Source File
695
Bram Moolenaar6a3c9972010-06-07 22:50:29 +0200696SOURCE=.\sha256.c
697# End Source File
698# Begin Source File
699
Bram Moolenaarbbea4702019-01-01 13:20:31 +0100700SOURCE=.\sign.c
701# End Source File
702# Begin Source File
703
Bram Moolenaar2e4096b2005-03-20 22:25:45 +0000704SOURCE=.\spell.c
705# End Source File
706# Begin Source File
707
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200708SOURCE=.\spellfile.c
709# End Source File
710# Begin Source File
711
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712SOURCE=.\syntax.c
713# End Source File
714# Begin Source File
715
716SOURCE=.\tag.c
717# End Source File
718# Begin Source File
719
720SOURCE=.\term.c
721# End Source File
722# Begin Source File
723
724SOURCE=.\ui.c
725# End Source File
726# Begin Source File
727
728SOURCE=.\undo.c
729# End Source File
730# Begin Source File
731
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200732SOURCE=.\usercmd.c
733# End Source File
734# Begin Source File
735
Bram Moolenaar6583c442016-07-17 18:41:47 +0200736SOURCE=.\userfunc.c
737# End Source File
738# Begin Source File
739
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740SOURCE=.\version.c
741# End Source File
742# Begin Source File
743
744SOURCE=.\vim.rc
745
746!IF "$(CFG)" == "Vim - Win32 Release gvim OLE"
747
748"$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
749
750!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE"
751
752"$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
753
754!ELSEIF "$(CFG)" == "Vim - Win32 Release gvim"
755
756"$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)"
757
758!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim"
759
760"$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)"
761
762!ELSEIF "$(CFG)" == "Vim - Win32 Release vim"
763
764# PROP Exclude_From_Build 1
765
766!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
767
768# PROP Exclude_From_Build 1
769
770!ENDIF
771
772# End Source File
773# Begin Source File
774
775SOURCE=.\window.c
776# End Source File
777# End Target
778# End Project