blob: 449d537bc8940e68b98d40033a09b2b13033b901 [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 Moolenaar87e25fd2005-07-27 21:13:01 +000091LINK32_FLAGS= 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
92# 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
95RSC_PROJ= /l 0x409 /d "FEAT_GUI_W32"
96# ADD RSC /l 0x409 /d "FEAT_GUI_W32"
97
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 Moolenaar9c96f592005-06-30 21:52:39 +0000108CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_W32" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleRel/ /Fo.\oleRel/
109# ADD CPP /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_W32" /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
127CPP_PROJ=$(CPP_PROJ) /Zi /Od /D "_DEBUG" /D "FEAT_GUI_W32" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleDbg/ /Fo.\oleDbg/
128# ADD CPP /Zi /Od /D "_DEBUG" /D "FEAT_GUI_W32" /D "DYNAMIC_GETTEXT" /D "FEAT_OLE" /Fd.\oleDbg/ /Fo.\oleDbg/
129
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 Moolenaar9c96f592005-06-30 21:52:39 +0000147CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_W32" /Fd.\gRel/ /Fo.\gRel/
148# ADD CPP /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_W32" /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
166CPP_PROJ=$(CPP_PROJ) /Zi /Od /D "_DEBUG" /D "FEAT_GUI_W32" /Fd.\gDbg/ /Fo.\gDbg/
167# ADD CPP /Zi /Od /D "_DEBUG" /D "FEAT_GUI_W32" /Fd.\gDbg/ /Fo.\gDbg/
168
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 Moolenaar40e6a712010-05-16 22:32:54 +0200214 "$(INTDIR)/blowfish.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 "$(INTDIR)/buffer.obj" \
216 "$(INTDIR)/charset.obj" \
Bram Moolenaar07cf3822014-08-10 16:31:50 +0200217 "$(INTDIR)/crypt.obj" \
218 "$(INTDIR)/crypt_zip.obj" \
Bram Moolenaar6583c442016-07-17 18:41:47 +0200219 "$(INTDIR)/dict.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 "$(INTDIR)/diff.obj" \
221 "$(INTDIR)/digraph.obj" \
222 "$(INTDIR)/edit.obj" \
223 "$(INTDIR)/eval.obj" \
Bram Moolenaar73dad1e2016-07-17 22:13:49 +0200224 "$(INTDIR)/evalfunc.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 "$(INTDIR)/ex_cmds.obj" \
226 "$(INTDIR)/ex_cmds2.obj" \
227 "$(INTDIR)/ex_docmd.obj" \
228 "$(INTDIR)/ex_eval.obj" \
229 "$(INTDIR)/ex_getln.obj" \
Bram Moolenaar75464dc2016-07-02 20:27:50 +0200230 "$(INTDIR)/farsi.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 "$(INTDIR)/fileio.obj" \
232 "$(INTDIR)/fold.obj" \
233 "$(INTDIR)/getchar.obj" \
Bram Moolenaar58d98232005-07-23 22:25:46 +0000234 "$(INTDIR)/hardcopy.obj" \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000235 "$(INTDIR)/hashtab.obj" \
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100236 "$(INTDIR)/json.obj" \
Bram Moolenaar6583c442016-07-17 18:41:47 +0200237 "$(INTDIR)/list.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 "$(INTDIR)/main.obj" \
239 "$(INTDIR)/mark.obj" \
240 "$(INTDIR)/mbyte.obj" \
241 "$(INTDIR)/memfile.obj" \
242 "$(INTDIR)/memline.obj" \
243 "$(INTDIR)/menu.obj" \
244 "$(INTDIR)/message.obj" \
245 "$(INTDIR)/misc1.obj" \
246 "$(INTDIR)/misc2.obj" \
247 "$(INTDIR)/move.obj" \
248 "$(INTDIR)/normal.obj" \
249 "$(INTDIR)/ops.obj" \
250 "$(INTDIR)/option.obj" \
251 "$(INTDIR)/os_mswin.obj" \
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100252 "$(INTDIR)/winclip.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 "$(INTDIR)/os_win32.obj" \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000254 "$(INTDIR)/popupmnu.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 "$(INTDIR)/quickfix.obj" \
256 "$(INTDIR)/regexp.obj" \
257 "$(INTDIR)/screen.obj" \
258 "$(INTDIR)/search.obj" \
Bram Moolenaar40e6a712010-05-16 22:32:54 +0200259 "$(INTDIR)/sha256.obj" \
Bram Moolenaar2e4096b2005-03-20 22:25:45 +0000260 "$(INTDIR)/spell.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 "$(INTDIR)/syntax.obj" \
262 "$(INTDIR)/tag.obj" \
263 "$(INTDIR)/term.obj" \
264 "$(INTDIR)/ui.obj" \
265 "$(INTDIR)/undo.obj" \
Bram Moolenaar6583c442016-07-17 18:41:47 +0200266 "$(INTDIR)/userfunc.obj" \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 "$(INTDIR)/version.obj" \
268 "$(INTDIR)/window.obj"
269
270".\$(VIM).exe" : "$(INTDIR)" $(EXTRAS) $(LINK32_OBJS)
271 @if exist $(INTDIR)\$(VIM).pdb del $(INTDIR)\$(VIM).pdb
272 $(LINK32) $(LINK32_FLAGS) $(LINK32_OBJS)
273
274"$(INTDIR)" :
275 if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
276
277CLEAN :
278 -@if exist "$(INTDIR)/$(NULL)" $(DEL_TREE) "$(INTDIR)"
279 -@if exist $(VIM).exe erase $(VIM).exe
280 -@if exist $(VIM).ilk erase $(VIM).ilk
281 -@if exist $(VIM).map erase $(VIM).map
282 -@if exist $(VIM).pdb erase $(VIM).pdb
283 -@if exist DLLDATA.C erase DLLDATA.C
284 -@if exist Make_ivc.bak attrib -r Make_ivc.bak
285 -@if exist Make_ivc.bak erase Make_ivc.bak
286 -@if exist Make_ivc.dsp erase Make_ivc.dsp
287 -@if exist Make_ivc.dsw erase Make_ivc.dsw
288 -@if exist Make_ivc.mdp erase Make_ivc.mdp
289 -@if exist Make_ivc.ncb erase Make_ivc.ncb
290 -@if exist Make_ivc.opt erase Make_ivc.opt
291 -@if exist Make_ivc.plg erase Make_ivc.plg
292 -@if exist dosinst.obj erase dosinst.obj
293 -@if exist install.exe erase install.exe
294 -@if exist uninstal.exe erase uninstal.exe
295 -@if exist uninstal.obj erase uninstal.obj
296 -@if exist vimrun.exe erase vimrun.exe
297 -@if exist vimrun.obj erase vimrun.obj
298
299
300install.exe: dosinst.c
Bram Moolenaarb230bd52010-05-25 21:02:00 +0200301 $(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 +0000302
303uninstal.exe: uninstal.c
304 $(CPP) /nologo /W3 -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib
305
306vimrun.exe: vimrun.c
307 $(CPP) /nologo /W3 -DNDEBUG vimrun.c
308
309xxd/xxd.exe: xxd/xxd.c
310 cd xxd
311 $(MAKE) /NOLOGO -f Make_mvc.mak
312 cd ..
313
314GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
315 cd GvimExt
316 $(MAKE) /NOLOGO -f Makefile
317 cd ..
318
319{.}.c{$(INTDIR)/}.obj:
320 $(CPP) $(CPP_PROJ) $<
321
322{.}.cpp{$(INTDIR)/}.obj:
323 $(CPP) $(CPP_PROJ) /I $(INTDIR) $<
324
325{.}.rc{$(INTDIR)/}.res:
326 $(RSC) $(RSC_PROJ) $<
327
328# Begin Target
329
330# Name "Vim - Win32 Release gvim OLE"
331# Name "Vim - Win32 Debug gvim OLE"
332# Name "Vim - Win32 Release gvim"
333# Name "Vim - Win32 Debug gvim"
334# Name "Vim - Win32 Release vim"
335# Name "Vim - Win32 Debug vim"
336
337# Begin Source File
338
Bram Moolenaar75464dc2016-07-02 20:27:50 +0200339SOURCE=.\arabic.c
340# End Source File
341# Begin Source File
342
Bram Moolenaar6a3c9972010-06-07 22:50:29 +0200343SOURCE=.\blowfish.c
344# End Source File
345# Begin Source File
346
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347SOURCE=.\buffer.c
348# End Source File
349# Begin Source File
350
351SOURCE=.\charset.c
352# End Source File
353# Begin Source File
354
Bram Moolenaar07cf3822014-08-10 16:31:50 +0200355SOURCE=.\crypt.c
356# End Source File
357# Begin Source File
358
359SOURCE=.\crypt_zip.c
360# End Source File
361# Begin Source File
362
Bram Moolenaar6583c442016-07-17 18:41:47 +0200363SOURCE=.\dict.c
364# End Source File
365# Begin Source File
366
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367SOURCE=.\diff.c
368# End Source File
369# Begin Source File
370
371SOURCE=.\digraph.c
372# End Source File
373# Begin Source File
374
375SOURCE=.\edit.c
376# End Source File
377# Begin Source File
378
379SOURCE=.\eval.c
380# End Source File
381# Begin Source File
382
Bram Moolenaar73dad1e2016-07-17 22:13:49 +0200383SOURCE=.\evalfunc.c
384# End Source File
385# Begin Source File
386
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387SOURCE=.\ex_cmds.c
388# End Source File
389# Begin Source File
390
391SOURCE=.\ex_cmds2.c
392# End Source File
393# Begin Source File
394
395SOURCE=.\ex_docmd.c
396# End Source File
397# Begin Source File
398
399SOURCE=.\ex_eval.c
400# End Source File
401# Begin Source File
402
403SOURCE=.\ex_getln.c
404# End Source File
405# Begin Source File
406
Bram Moolenaar75464dc2016-07-02 20:27:50 +0200407SOURCE=.\farsi.c
408# End Source File
409# Begin Source File
410
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411SOURCE=.\fileio.c
412# End Source File
413# Begin Source File
414
415SOURCE=.\fold.c
416# End Source File
417# Begin Source File
418
419SOURCE=.\getchar.c
420# End Source File
421# Begin Source File
422
Bram Moolenaar58d98232005-07-23 22:25:46 +0000423SOURCE=.\hardcopy.c
424# End Source File
425# Begin Source File
426
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000427SOURCE=.\hashtab.c
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000428# End Source File
429# Begin Source File
430
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431SOURCE=.\gui.c
432
433!IF "$(CFG)" == "Vim - Win32 Release vim"
434
435# PROP Exclude_From_Build 1
436
437!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
438
439# PROP Exclude_From_Build 1
440
441!ENDIF
442
443# End Source File
444# Begin Source File
445
446SOURCE=.\gui_w32.c
447
448!IF "$(CFG)" == "Vim - Win32 Release vim"
449
450# PROP Exclude_From_Build 1
451
452!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
453
454# PROP Exclude_From_Build 1
455
456!ENDIF
457
458# End Source File
459# Begin Source File
460
Bram Moolenaar58e7f2b2005-03-16 09:48:18 +0000461SOURCE=.\gui_beval.c
462
463!IF "$(CFG)" == "Vim - Win32 Release vim"
464
465# PROP Exclude_From_Build 1
466
467!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
468
469# PROP Exclude_From_Build 1
470
471!ENDIF
472
473# End Source File
474# Begin Source File
475
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476SOURCE=.\os_w32exe.c
477
478!IF "$(CFG)" == "Vim - Win32 Release vim"
479
480# PROP Exclude_From_Build 1
481
482!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
483
484# PROP Exclude_From_Build 1
485
486!ENDIF
487
488# End Source File
489# Begin Source File
490
491SOURCE=.\if_ole.cpp
492
493!IF "$(CFG)" == "Vim - Win32 Release gvim OLE"
494
495# PROP Ignore_Default_Tool 1
496# Begin Custom Build
497
498"$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
Bram Moolenaar9c96f592005-06-30 21:52:39 +0000499 cl.exe /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c /Zi /O2 /D "NDEBUG" /D "FEAT_GUI_W32" /D "FEAT_OLE" /Fd.\oleRel/ /Fo.\oleRel/ /I ".\oleRel" .\if_ole.cpp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 @rem This is the default rule with /I "$(IntDir)" added
501
502# End Custom Build
503
504!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE"
505
506# PROP Ignore_Default_Tool 1
507# Begin Custom Build
508
509"$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
510 cl.exe /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c /Zi /Od /D "_DEBUG" /D "FEAT_GUI_W32" /D "FEAT_OLE" /Fd.\oleDbg/ /Fo.\oleDbg/ /I ".\oleDbg" .\if_ole.cpp
511 @rem This is the default rule with /I "$(IntDir)" added
512
513# End Custom Build
514
515!ELSEIF "$(CFG)" == "Vim - Win32 Release gvim"
516
517# PROP Exclude_From_Build 1
518
519!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim"
520
521# PROP Exclude_From_Build 1
522
523!ELSEIF "$(CFG)" == "Vim - Win32 Release vim"
524
525# PROP Exclude_From_Build 1
526
527!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
528
529# PROP Exclude_From_Build 1
530
531!ENDIF
532
533# End Source File
534# Begin Source File
535
536SOURCE=.\if_ole.idl
537
538!IF "$(CFG)" == "Vim - Win32 Release gvim OLE"
539
540# PROP Ignore_Default_Tool 1
541# Begin Custom Build
542
543"$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)"
544 if exist .\if_ole.h del .\if_ole.h
545 midl /out .\oleRel /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl
546
547# End Custom Build
548
549!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE"
550
551# PROP Ignore_Default_Tool 1
552# Begin Custom Build
553
554"$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)"
555 if exist .\if_ole.h del .\if_ole.h
556 midl /out .\oleDbg /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl
557
558# End Custom Build
559
560!ELSEIF "$(CFG)" == "Vim - Win32 Release gvim"
561
562# PROP Exclude_From_Build 1
563
564!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim"
565
566# PROP Exclude_From_Build 1
567
568!ELSEIF "$(CFG)" == "Vim - Win32 Release vim"
569
570# PROP Exclude_From_Build 1
571
572!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
573
574# PROP Exclude_From_Build 1
575
576!ENDIF
577
578# End Source File
579# Begin Source File
580
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100581SOURCE=.\json.c
582# End Source File
583# Begin Source File
584
Bram Moolenaar6583c442016-07-17 18:41:47 +0200585SOURCE=.\list.c
586# End Source File
587# Begin Source File
588
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589SOURCE=.\main.c
590# End Source File
591# Begin Source File
592
593SOURCE=.\mark.c
594# End Source File
595# Begin Source File
596
597SOURCE=.\mbyte.c
598# End Source File
599# Begin Source File
600
601SOURCE=.\memfile.c
602# End Source File
603# Begin Source File
604
605SOURCE=.\memline.c
606# End Source File
607# Begin Source File
608
609SOURCE=.\menu.c
610# End Source File
611# Begin Source File
612
613SOURCE=.\message.c
614# End Source File
615# Begin Source File
616
617SOURCE=.\misc1.c
618# End Source File
619# Begin Source File
620
621SOURCE=.\misc2.c
622# End Source File
623# Begin Source File
624
625SOURCE=.\move.c
626# End Source File
627# Begin Source File
628
629SOURCE=.\normal.c
630# End Source File
631# Begin Source File
632
633SOURCE=.\ops.c
634# End Source File
635# Begin Source File
636
637SOURCE=.\option.c
638# End Source File
639# Begin Source File
640
641SOURCE=.\os_mswin.c
642# End Source File
643# Begin Source File
644
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100645SOURCE=.\winclip.c
646# End Source File
647# Begin Source File
648
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649SOURCE=.\os_win32.c
650# End Source File
651# Begin Source File
652
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000653SOURCE=.\popupmnu.c
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000654# End Source File
655# Begin Source File
656
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657SOURCE=.\quickfix.c
658# End Source File
659# Begin Source File
660
661SOURCE=.\regexp.c
662# End Source File
663# Begin Source File
664
665SOURCE=.\screen.c
666# End Source File
667# Begin Source File
668
669SOURCE=.\search.c
670# End Source File
671# Begin Source File
672
Bram Moolenaar6a3c9972010-06-07 22:50:29 +0200673SOURCE=.\sha256.c
674# End Source File
675# Begin Source File
676
Bram Moolenaar2e4096b2005-03-20 22:25:45 +0000677SOURCE=.\spell.c
678# End Source File
679# Begin Source File
680
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681SOURCE=.\syntax.c
682# End Source File
683# Begin Source File
684
685SOURCE=.\tag.c
686# End Source File
687# Begin Source File
688
689SOURCE=.\term.c
690# End Source File
691# Begin Source File
692
693SOURCE=.\ui.c
694# End Source File
695# Begin Source File
696
697SOURCE=.\undo.c
698# End Source File
699# Begin Source File
700
Bram Moolenaar6583c442016-07-17 18:41:47 +0200701SOURCE=.\userfunc.c
702# End Source File
703# Begin Source File
704
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705SOURCE=.\version.c
706# End Source File
707# Begin Source File
708
709SOURCE=.\vim.rc
710
711!IF "$(CFG)" == "Vim - Win32 Release gvim OLE"
712
713"$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
714
715!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE"
716
717"$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h"
718
719!ELSEIF "$(CFG)" == "Vim - Win32 Release gvim"
720
721"$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)"
722
723!ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim"
724
725"$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)"
726
727!ELSEIF "$(CFG)" == "Vim - Win32 Release vim"
728
729# PROP Exclude_From_Build 1
730
731!ELSEIF "$(CFG)" == "Vim - Win32 Debug vim"
732
733# PROP Exclude_From_Build 1
734
735!ENDIF
736
737# End Source File
738# Begin Source File
739
740SOURCE=.\window.c
741# End Source File
742# End Target
743# End Project