Mercurial > vim
annotate src/Make_ivc.mak @ 7605:8fc60af6dbf5 v7.4.1102
commit https://github.com/vim/vim/commit/f1f60f859cdbb2638b3662ccf7b1d179865fe7dc
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 16 15:40:53 2016 +0100
patch 7.4.1102
Problem: Debugger has no stack backtrace support.
Solution: Add "backtrace", "frame", "up" and "down" commands. (Alberto
Fanjul, closes https://github.com/vim/vim/issues/433)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 16 Jan 2016 15:45:04 +0100 |
parents | ab71bb81b84e |
children | bce3b5ddb393 |
rev | line source |
---|---|
7 | 1 # 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 | |
20 PreLink_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)" == "" | |
44 CFG=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" | |
73 NULL= | |
74 DEL_TREE = rmdir /s /q | |
75 !ELSE | |
76 NULL=nul | |
77 DEL_TREE = deltree /y | |
78 !ENDIF | |
79 | |
80 # Begin Project | |
81 # PROP Target_Last_Scanned "Vim - Win32 Debug vim" | |
82 # PROP Use_MFC 0 | |
83 | |
84 RSC=rc.exe | |
85 CPP=cl.exe | |
86 LINK32=link.exe | |
87 | |
88 CPP_PROJ= /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c | |
89 # ADD CPP /nologo /MT /W3 /GX /I ".\proto" /D "WIN32" /c | |
90 | |
446 | 91 LINK32_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 | |
7 | 93 # SUBTRACT LINK32 /incremental:yes |
94 | |
95 RSC_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 | |
104 INTDIR=.\oleRel | |
105 VIM=gvim | |
210 | 106 EXTRAS="$(INTDIR)/if_ole.obj" "$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj" |
7 | 107 |
376 | 108 CPP_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/ | |
7 | 110 |
111 RSC_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 | |
376 | 114 LINK32_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 | |
7 | 116 |
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 | |
123 INTDIR=.\oleDbg | |
124 VIM=gvimd | |
210 | 125 EXTRAS="$(INTDIR)/if_ole.obj" "$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj" |
7 | 126 |
127 CPP_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 | |
130 RSC_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 | |
376 | 133 LINK32_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 | |
7 | 135 |
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 | |
143 INTDIR=.\gRel | |
144 VIM=gvim | |
210 | 145 EXTRAS="$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj" |
7 | 146 |
376 | 147 CPP_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/ | |
7 | 149 |
150 RSC_PROJ=$(RSC_PROJ) /d "NDEBUG" /fo.\gRel\vim.res | |
151 # ADD RSC /d "NDEBUG" /fo.\gRel\vim.res | |
152 | |
376 | 153 LINK32_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 | |
7 | 155 |
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 | |
162 INTDIR=.\gDbg | |
163 VIM=gvimd | |
210 | 164 EXTRAS="$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj" |
7 | 165 |
166 CPP_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 | |
169 RSC_PROJ=$(RSC_PROJ) /d "_DEBUG" /fo.\gDbg\vim.res | |
170 # ADD RSC /d "_DEBUG" /fo.\gDbg\vim.res | |
171 | |
376 | 172 LINK32_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 | |
7 | 174 |
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 | |
181 INTDIR=.\Rel | |
182 VIM=vim | |
183 EXTRAS= | |
184 | |
376 | 185 CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /Fd.\Rel/ /Fo.\Rel/ |
186 # ADD CPP /Zi /O2 /D "NDEBUG" /Fd.\Rel/ /Fo.\Rel/ | |
7 | 187 |
376 | 188 LINK32_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 | |
7 | 190 |
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 | |
197 INTDIR=.\Dbg | |
198 VIM=vimd | |
199 EXTRAS= | |
200 | |
201 CPP_PROJ=$(CPP_PROJ) /Zi /Od /D "_DEBUG" /Fd.\Dbg/ /Fo.\Dbg/ | |
202 # ADD CPP /Zi /Od /D "_DEBUG" /Fd.\Dbg/ /Fo.\Dbg/ | |
203 | |
376 | 204 LINK32_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 | |
7 | 206 |
207 !ENDIF | |
208 | |
209 ALL : .\$(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe GvimExt/gvimext.dll | |
210 | |
211 LINK32_OBJS= \ | |
212 $(EXTRAS) \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
213 "$(INTDIR)/blowfish.obj" \ |
7 | 214 "$(INTDIR)/buffer.obj" \ |
215 "$(INTDIR)/charset.obj" \ | |
6126 | 216 "$(INTDIR)/crypt.obj" \ |
217 "$(INTDIR)/crypt_zip.obj" \ | |
7 | 218 "$(INTDIR)/diff.obj" \ |
219 "$(INTDIR)/digraph.obj" \ | |
220 "$(INTDIR)/edit.obj" \ | |
221 "$(INTDIR)/eval.obj" \ | |
222 "$(INTDIR)/ex_cmds.obj" \ | |
223 "$(INTDIR)/ex_cmds2.obj" \ | |
224 "$(INTDIR)/ex_docmd.obj" \ | |
225 "$(INTDIR)/ex_eval.obj" \ | |
226 "$(INTDIR)/ex_getln.obj" \ | |
227 "$(INTDIR)/fileio.obj" \ | |
228 "$(INTDIR)/fold.obj" \ | |
229 "$(INTDIR)/getchar.obj" \ | |
440 | 230 "$(INTDIR)/hardcopy.obj" \ |
799 | 231 "$(INTDIR)/hashtab.obj" \ |
7 | 232 "$(INTDIR)/main.obj" \ |
233 "$(INTDIR)/mark.obj" \ | |
234 "$(INTDIR)/mbyte.obj" \ | |
235 "$(INTDIR)/memfile.obj" \ | |
236 "$(INTDIR)/memline.obj" \ | |
237 "$(INTDIR)/menu.obj" \ | |
238 "$(INTDIR)/message.obj" \ | |
239 "$(INTDIR)/misc1.obj" \ | |
240 "$(INTDIR)/misc2.obj" \ | |
241 "$(INTDIR)/move.obj" \ | |
242 "$(INTDIR)/normal.obj" \ | |
243 "$(INTDIR)/ops.obj" \ | |
244 "$(INTDIR)/option.obj" \ | |
245 "$(INTDIR)/os_mswin.obj" \ | |
4168 | 246 "$(INTDIR)/winclip.obj" \ |
7 | 247 "$(INTDIR)/os_win32.obj" \ |
799 | 248 "$(INTDIR)/popupmnu.obj" \ |
7 | 249 "$(INTDIR)/quickfix.obj" \ |
250 "$(INTDIR)/regexp.obj" \ | |
251 "$(INTDIR)/screen.obj" \ | |
252 "$(INTDIR)/search.obj" \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
253 "$(INTDIR)/sha256.obj" \ |
220 | 254 "$(INTDIR)/spell.obj" \ |
7 | 255 "$(INTDIR)/syntax.obj" \ |
256 "$(INTDIR)/tag.obj" \ | |
257 "$(INTDIR)/term.obj" \ | |
258 "$(INTDIR)/ui.obj" \ | |
259 "$(INTDIR)/undo.obj" \ | |
260 "$(INTDIR)/version.obj" \ | |
261 "$(INTDIR)/window.obj" | |
262 | |
263 ".\$(VIM).exe" : "$(INTDIR)" $(EXTRAS) $(LINK32_OBJS) | |
264 @if exist $(INTDIR)\$(VIM).pdb del $(INTDIR)\$(VIM).pdb | |
265 $(LINK32) $(LINK32_FLAGS) $(LINK32_OBJS) | |
266 | |
267 "$(INTDIR)" : | |
268 if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)" | |
269 | |
270 CLEAN : | |
271 -@if exist "$(INTDIR)/$(NULL)" $(DEL_TREE) "$(INTDIR)" | |
272 -@if exist $(VIM).exe erase $(VIM).exe | |
273 -@if exist $(VIM).ilk erase $(VIM).ilk | |
274 -@if exist $(VIM).map erase $(VIM).map | |
275 -@if exist $(VIM).pdb erase $(VIM).pdb | |
276 -@if exist DLLDATA.C erase DLLDATA.C | |
277 -@if exist Make_ivc.bak attrib -r Make_ivc.bak | |
278 -@if exist Make_ivc.bak erase Make_ivc.bak | |
279 -@if exist Make_ivc.dsp erase Make_ivc.dsp | |
280 -@if exist Make_ivc.dsw erase Make_ivc.dsw | |
281 -@if exist Make_ivc.mdp erase Make_ivc.mdp | |
282 -@if exist Make_ivc.ncb erase Make_ivc.ncb | |
283 -@if exist Make_ivc.opt erase Make_ivc.opt | |
284 -@if exist Make_ivc.plg erase Make_ivc.plg | |
285 -@if exist dosinst.obj erase dosinst.obj | |
286 -@if exist install.exe erase install.exe | |
287 -@if exist uninstal.exe erase uninstal.exe | |
288 -@if exist uninstal.obj erase uninstal.obj | |
289 -@if exist vimrun.exe erase vimrun.exe | |
290 -@if exist vimrun.obj erase vimrun.obj | |
291 | |
292 | |
293 install.exe: dosinst.c | |
2220
b1c70c500de4
Found a way to make the MS-Windows installer wait for the uninstaller to
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
294 $(CPP) /Fe$@ /nologo /W3 -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib user32.lib ole32.lib advapi32.lib uuid.lib |
7 | 295 |
296 uninstal.exe: uninstal.c | |
297 $(CPP) /nologo /W3 -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib | |
298 | |
299 vimrun.exe: vimrun.c | |
300 $(CPP) /nologo /W3 -DNDEBUG vimrun.c | |
301 | |
302 xxd/xxd.exe: xxd/xxd.c | |
303 cd xxd | |
304 $(MAKE) /NOLOGO -f Make_mvc.mak | |
305 cd .. | |
306 | |
307 GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h | |
308 cd GvimExt | |
309 $(MAKE) /NOLOGO -f Makefile | |
310 cd .. | |
311 | |
312 {.}.c{$(INTDIR)/}.obj: | |
313 $(CPP) $(CPP_PROJ) $< | |
314 | |
315 {.}.cpp{$(INTDIR)/}.obj: | |
316 $(CPP) $(CPP_PROJ) /I $(INTDIR) $< | |
317 | |
318 {.}.rc{$(INTDIR)/}.res: | |
319 $(RSC) $(RSC_PROJ) $< | |
320 | |
321 # Begin Target | |
322 | |
323 # Name "Vim - Win32 Release gvim OLE" | |
324 # Name "Vim - Win32 Debug gvim OLE" | |
325 # Name "Vim - Win32 Release gvim" | |
326 # Name "Vim - Win32 Debug gvim" | |
327 # Name "Vim - Win32 Release vim" | |
328 # Name "Vim - Win32 Debug vim" | |
329 | |
330 # Begin Source File | |
331 | |
2257
373ec436a82a
Fix Make_ivc.mak makefile. (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
332 SOURCE=.\blowfish.c |
373ec436a82a
Fix Make_ivc.mak makefile. (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
333 # End Source File |
373ec436a82a
Fix Make_ivc.mak makefile. (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
334 # Begin Source File |
373ec436a82a
Fix Make_ivc.mak makefile. (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
335 |
7 | 336 SOURCE=.\buffer.c |
337 # End Source File | |
338 # Begin Source File | |
339 | |
340 SOURCE=.\charset.c | |
341 # End Source File | |
342 # Begin Source File | |
343 | |
6126 | 344 SOURCE=.\crypt.c |
345 # End Source File | |
346 # Begin Source File | |
347 | |
348 SOURCE=.\crypt_zip.c | |
349 # End Source File | |
350 # Begin Source File | |
351 | |
7 | 352 SOURCE=.\diff.c |
353 # End Source File | |
354 # Begin Source File | |
355 | |
356 SOURCE=.\digraph.c | |
357 # End Source File | |
358 # Begin Source File | |
359 | |
360 SOURCE=.\edit.c | |
361 # End Source File | |
362 # Begin Source File | |
363 | |
364 SOURCE=.\eval.c | |
365 # End Source File | |
366 # Begin Source File | |
367 | |
368 SOURCE=.\ex_cmds.c | |
369 # End Source File | |
370 # Begin Source File | |
371 | |
372 SOURCE=.\ex_cmds2.c | |
373 # End Source File | |
374 # Begin Source File | |
375 | |
376 SOURCE=.\ex_docmd.c | |
377 # End Source File | |
378 # Begin Source File | |
379 | |
380 SOURCE=.\ex_eval.c | |
381 # End Source File | |
382 # Begin Source File | |
383 | |
384 SOURCE=.\ex_getln.c | |
385 # End Source File | |
386 # Begin Source File | |
387 | |
388 SOURCE=.\fileio.c | |
389 # End Source File | |
390 # Begin Source File | |
391 | |
392 SOURCE=.\fold.c | |
393 # End Source File | |
394 # Begin Source File | |
395 | |
396 SOURCE=.\getchar.c | |
397 # End Source File | |
398 # Begin Source File | |
399 | |
440 | 400 SOURCE=.\hardcopy.c |
401 # End Source File | |
402 # Begin Source File | |
403 | |
799 | 404 SOURCE=.\hashtab.c |
119 | 405 # End Source File |
406 # Begin Source File | |
407 | |
7 | 408 SOURCE=.\gui.c |
409 | |
410 !IF "$(CFG)" == "Vim - Win32 Release vim" | |
411 | |
412 # PROP Exclude_From_Build 1 | |
413 | |
414 !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" | |
415 | |
416 # PROP Exclude_From_Build 1 | |
417 | |
418 !ENDIF | |
419 | |
420 # End Source File | |
421 # Begin Source File | |
422 | |
423 SOURCE=.\gui_w32.c | |
424 | |
425 !IF "$(CFG)" == "Vim - Win32 Release vim" | |
426 | |
427 # PROP Exclude_From_Build 1 | |
428 | |
429 !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" | |
430 | |
431 # PROP Exclude_From_Build 1 | |
432 | |
433 !ENDIF | |
434 | |
435 # End Source File | |
436 # Begin Source File | |
437 | |
210 | 438 SOURCE=.\gui_beval.c |
439 | |
440 !IF "$(CFG)" == "Vim - Win32 Release vim" | |
441 | |
442 # PROP Exclude_From_Build 1 | |
443 | |
444 !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" | |
445 | |
446 # PROP Exclude_From_Build 1 | |
447 | |
448 !ENDIF | |
449 | |
450 # End Source File | |
451 # Begin Source File | |
452 | |
7 | 453 SOURCE=.\os_w32exe.c |
454 | |
455 !IF "$(CFG)" == "Vim - Win32 Release vim" | |
456 | |
457 # PROP Exclude_From_Build 1 | |
458 | |
459 !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" | |
460 | |
461 # PROP Exclude_From_Build 1 | |
462 | |
463 !ENDIF | |
464 | |
465 # End Source File | |
466 # Begin Source File | |
467 | |
468 SOURCE=.\if_ole.cpp | |
469 | |
470 !IF "$(CFG)" == "Vim - Win32 Release gvim OLE" | |
471 | |
472 # PROP Ignore_Default_Tool 1 | |
473 # Begin Custom Build | |
474 | |
475 "$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h" | |
376 | 476 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 |
7 | 477 @rem This is the default rule with /I "$(IntDir)" added |
478 | |
479 # End Custom Build | |
480 | |
481 !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE" | |
482 | |
483 # PROP Ignore_Default_Tool 1 | |
484 # Begin Custom Build | |
485 | |
486 "$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h" | |
487 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 | |
488 @rem This is the default rule with /I "$(IntDir)" added | |
489 | |
490 # End Custom Build | |
491 | |
492 !ELSEIF "$(CFG)" == "Vim - Win32 Release gvim" | |
493 | |
494 # PROP Exclude_From_Build 1 | |
495 | |
496 !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim" | |
497 | |
498 # PROP Exclude_From_Build 1 | |
499 | |
500 !ELSEIF "$(CFG)" == "Vim - Win32 Release vim" | |
501 | |
502 # PROP Exclude_From_Build 1 | |
503 | |
504 !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" | |
505 | |
506 # PROP Exclude_From_Build 1 | |
507 | |
508 !ENDIF | |
509 | |
510 # End Source File | |
511 # Begin Source File | |
512 | |
513 SOURCE=.\if_ole.idl | |
514 | |
515 !IF "$(CFG)" == "Vim - Win32 Release gvim OLE" | |
516 | |
517 # PROP Ignore_Default_Tool 1 | |
518 # Begin Custom Build | |
519 | |
520 "$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)" | |
521 if exist .\if_ole.h del .\if_ole.h | |
522 midl /out .\oleRel /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl | |
523 | |
524 # End Custom Build | |
525 | |
526 !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE" | |
527 | |
528 # PROP Ignore_Default_Tool 1 | |
529 # Begin Custom Build | |
530 | |
531 "$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)" | |
532 if exist .\if_ole.h del .\if_ole.h | |
533 midl /out .\oleDbg /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl | |
534 | |
535 # End Custom Build | |
536 | |
537 !ELSEIF "$(CFG)" == "Vim - Win32 Release gvim" | |
538 | |
539 # PROP Exclude_From_Build 1 | |
540 | |
541 !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim" | |
542 | |
543 # PROP Exclude_From_Build 1 | |
544 | |
545 !ELSEIF "$(CFG)" == "Vim - Win32 Release vim" | |
546 | |
547 # PROP Exclude_From_Build 1 | |
548 | |
549 !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" | |
550 | |
551 # PROP Exclude_From_Build 1 | |
552 | |
553 !ENDIF | |
554 | |
555 # End Source File | |
556 # Begin Source File | |
557 | |
558 SOURCE=.\main.c | |
559 # End Source File | |
560 # Begin Source File | |
561 | |
562 SOURCE=.\mark.c | |
563 # End Source File | |
564 # Begin Source File | |
565 | |
566 SOURCE=.\mbyte.c | |
567 # End Source File | |
568 # Begin Source File | |
569 | |
570 SOURCE=.\memfile.c | |
571 # End Source File | |
572 # Begin Source File | |
573 | |
574 SOURCE=.\memline.c | |
575 # End Source File | |
576 # Begin Source File | |
577 | |
578 SOURCE=.\menu.c | |
579 # End Source File | |
580 # Begin Source File | |
581 | |
582 SOURCE=.\message.c | |
583 # End Source File | |
584 # Begin Source File | |
585 | |
586 SOURCE=.\misc1.c | |
587 # End Source File | |
588 # Begin Source File | |
589 | |
590 SOURCE=.\misc2.c | |
591 # End Source File | |
592 # Begin Source File | |
593 | |
594 SOURCE=.\move.c | |
595 # End Source File | |
596 # Begin Source File | |
597 | |
598 SOURCE=.\normal.c | |
599 # End Source File | |
600 # Begin Source File | |
601 | |
602 SOURCE=.\ops.c | |
603 # End Source File | |
604 # Begin Source File | |
605 | |
606 SOURCE=.\option.c | |
607 # End Source File | |
608 # Begin Source File | |
609 | |
610 SOURCE=.\os_mswin.c | |
611 # End Source File | |
612 # Begin Source File | |
613 | |
4168 | 614 SOURCE=.\winclip.c |
615 # End Source File | |
616 # Begin Source File | |
617 | |
7 | 618 SOURCE=.\os_win32.c |
619 # End Source File | |
620 # Begin Source File | |
621 | |
799 | 622 SOURCE=.\popupmnu.c |
539 | 623 # End Source File |
624 # Begin Source File | |
625 | |
7 | 626 SOURCE=.\quickfix.c |
627 # End Source File | |
628 # Begin Source File | |
629 | |
630 SOURCE=.\regexp.c | |
631 # End Source File | |
632 # Begin Source File | |
633 | |
634 SOURCE=.\screen.c | |
635 # End Source File | |
636 # Begin Source File | |
637 | |
638 SOURCE=.\search.c | |
639 # End Source File | |
640 # Begin Source File | |
641 | |
2257
373ec436a82a
Fix Make_ivc.mak makefile. (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
642 SOURCE=.\sha256.c |
373ec436a82a
Fix Make_ivc.mak makefile. (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
643 # End Source File |
373ec436a82a
Fix Make_ivc.mak makefile. (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
644 # Begin Source File |
373ec436a82a
Fix Make_ivc.mak makefile. (Vince Negri)
Bram Moolenaar <bram@vim.org>
parents:
2220
diff
changeset
|
645 |
220 | 646 SOURCE=.\spell.c |
647 # End Source File | |
648 # Begin Source File | |
649 | |
7 | 650 SOURCE=.\syntax.c |
651 # End Source File | |
652 # Begin Source File | |
653 | |
654 SOURCE=.\tag.c | |
655 # End Source File | |
656 # Begin Source File | |
657 | |
658 SOURCE=.\term.c | |
659 # End Source File | |
660 # Begin Source File | |
661 | |
662 SOURCE=.\ui.c | |
663 # End Source File | |
664 # Begin Source File | |
665 | |
666 SOURCE=.\undo.c | |
667 # End Source File | |
668 # Begin Source File | |
669 | |
670 SOURCE=.\version.c | |
671 # End Source File | |
672 # Begin Source File | |
673 | |
674 SOURCE=.\vim.rc | |
675 | |
676 !IF "$(CFG)" == "Vim - Win32 Release gvim OLE" | |
677 | |
678 "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h" | |
679 | |
680 !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE" | |
681 | |
682 "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h" | |
683 | |
684 !ELSEIF "$(CFG)" == "Vim - Win32 Release gvim" | |
685 | |
686 "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" | |
687 | |
688 !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim" | |
689 | |
690 "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" | |
691 | |
692 !ELSEIF "$(CFG)" == "Vim - Win32 Release vim" | |
693 | |
694 # PROP Exclude_From_Build 1 | |
695 | |
696 !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" | |
697 | |
698 # PROP Exclude_From_Build 1 | |
699 | |
700 !ENDIF | |
701 | |
702 # End Source File | |
703 # Begin Source File | |
704 | |
705 SOURCE=.\window.c | |
706 # End Source File | |
707 # End Target | |
708 # End Project |