Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | 87e25fd | 2005-07-27 21:13:01 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 58e7f2b | 2005-03-16 09:48:18 +0000 | [diff] [blame] | 106 | EXTRAS="$(INTDIR)/if_ole.obj" "$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 107 | |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 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/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 58e7f2b | 2005-03-16 09:48:18 +0000 | [diff] [blame] | 125 | EXTRAS="$(INTDIR)/if_ole.obj" "$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 58e7f2b | 2005-03-16 09:48:18 +0000 | [diff] [blame] | 145 | EXTRAS="$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 146 | |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 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/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 149 | |
| 150 | RSC_PROJ=$(RSC_PROJ) /d "NDEBUG" /fo.\gRel\vim.res |
| 151 | # ADD RSC /d "NDEBUG" /fo.\gRel\vim.res |
| 152 | |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 58e7f2b | 2005-03-16 09:48:18 +0000 | [diff] [blame] | 164 | EXTRAS="$(INTDIR)/vim.res" "$(INTDIR)/gui.obj" "$(INTDIR)/gui_w32.obj" "$(INTDIR)/gui_beval.obj" "$(INTDIR)/os_w32exe.obj" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 185 | CPP_PROJ=$(CPP_PROJ) /Zi /O2 /D "NDEBUG" /Fd.\Rel/ /Fo.\Rel/ |
| 186 | # ADD CPP /Zi /O2 /D "NDEBUG" /Fd.\Rel/ /Fo.\Rel/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 187 | |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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) \ |
Bram Moolenaar | 75464dc | 2016-07-02 20:27:50 +0200 | [diff] [blame] | 213 | "$(INTDIR)/arabic.obj" \ |
Bram Moolenaar | 40e6a71 | 2010-05-16 22:32:54 +0200 | [diff] [blame] | 214 | "$(INTDIR)/blowfish.obj" \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 215 | "$(INTDIR)/buffer.obj" \ |
| 216 | "$(INTDIR)/charset.obj" \ |
Bram Moolenaar | 07cf382 | 2014-08-10 16:31:50 +0200 | [diff] [blame] | 217 | "$(INTDIR)/crypt.obj" \ |
| 218 | "$(INTDIR)/crypt_zip.obj" \ |
Bram Moolenaar | 6583c44 | 2016-07-17 18:41:47 +0200 | [diff] [blame] | 219 | "$(INTDIR)/dict.obj" \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 220 | "$(INTDIR)/diff.obj" \ |
| 221 | "$(INTDIR)/digraph.obj" \ |
| 222 | "$(INTDIR)/edit.obj" \ |
| 223 | "$(INTDIR)/eval.obj" \ |
Bram Moolenaar | 73dad1e | 2016-07-17 22:13:49 +0200 | [diff] [blame] | 224 | "$(INTDIR)/evalfunc.obj" \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 225 | "$(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 Moolenaar | 75464dc | 2016-07-02 20:27:50 +0200 | [diff] [blame] | 230 | "$(INTDIR)/farsi.obj" \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 231 | "$(INTDIR)/fileio.obj" \ |
| 232 | "$(INTDIR)/fold.obj" \ |
| 233 | "$(INTDIR)/getchar.obj" \ |
Bram Moolenaar | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 234 | "$(INTDIR)/hardcopy.obj" \ |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 235 | "$(INTDIR)/hashtab.obj" \ |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 236 | "$(INTDIR)/json.obj" \ |
Bram Moolenaar | 6583c44 | 2016-07-17 18:41:47 +0200 | [diff] [blame] | 237 | "$(INTDIR)/list.obj" \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 238 | "$(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 Moolenaar | 693e40c | 2013-02-26 14:56:42 +0100 | [diff] [blame] | 252 | "$(INTDIR)/winclip.obj" \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 253 | "$(INTDIR)/os_win32.obj" \ |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 254 | "$(INTDIR)/popupmnu.obj" \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 255 | "$(INTDIR)/quickfix.obj" \ |
| 256 | "$(INTDIR)/regexp.obj" \ |
| 257 | "$(INTDIR)/screen.obj" \ |
| 258 | "$(INTDIR)/search.obj" \ |
Bram Moolenaar | 40e6a71 | 2010-05-16 22:32:54 +0200 | [diff] [blame] | 259 | "$(INTDIR)/sha256.obj" \ |
Bram Moolenaar | 2e4096b | 2005-03-20 22:25:45 +0000 | [diff] [blame] | 260 | "$(INTDIR)/spell.obj" \ |
Bram Moolenaar | 9ccfebd | 2016-07-19 16:39:08 +0200 | [diff] [blame] | 261 | "$(INTDIR)/spellfile.obj" \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 262 | "$(INTDIR)/syntax.obj" \ |
| 263 | "$(INTDIR)/tag.obj" \ |
| 264 | "$(INTDIR)/term.obj" \ |
| 265 | "$(INTDIR)/ui.obj" \ |
| 266 | "$(INTDIR)/undo.obj" \ |
Bram Moolenaar | 6583c44 | 2016-07-17 18:41:47 +0200 | [diff] [blame] | 267 | "$(INTDIR)/userfunc.obj" \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 268 | "$(INTDIR)/version.obj" \ |
| 269 | "$(INTDIR)/window.obj" |
| 270 | |
| 271 | ".\$(VIM).exe" : "$(INTDIR)" $(EXTRAS) $(LINK32_OBJS) |
| 272 | @if exist $(INTDIR)\$(VIM).pdb del $(INTDIR)\$(VIM).pdb |
| 273 | $(LINK32) $(LINK32_FLAGS) $(LINK32_OBJS) |
| 274 | |
| 275 | "$(INTDIR)" : |
| 276 | if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)" |
| 277 | |
| 278 | CLEAN : |
| 279 | -@if exist "$(INTDIR)/$(NULL)" $(DEL_TREE) "$(INTDIR)" |
| 280 | -@if exist $(VIM).exe erase $(VIM).exe |
| 281 | -@if exist $(VIM).ilk erase $(VIM).ilk |
| 282 | -@if exist $(VIM).map erase $(VIM).map |
| 283 | -@if exist $(VIM).pdb erase $(VIM).pdb |
| 284 | -@if exist DLLDATA.C erase DLLDATA.C |
| 285 | -@if exist Make_ivc.bak attrib -r Make_ivc.bak |
| 286 | -@if exist Make_ivc.bak erase Make_ivc.bak |
| 287 | -@if exist Make_ivc.dsp erase Make_ivc.dsp |
| 288 | -@if exist Make_ivc.dsw erase Make_ivc.dsw |
| 289 | -@if exist Make_ivc.mdp erase Make_ivc.mdp |
| 290 | -@if exist Make_ivc.ncb erase Make_ivc.ncb |
| 291 | -@if exist Make_ivc.opt erase Make_ivc.opt |
| 292 | -@if exist Make_ivc.plg erase Make_ivc.plg |
| 293 | -@if exist dosinst.obj erase dosinst.obj |
| 294 | -@if exist install.exe erase install.exe |
| 295 | -@if exist uninstal.exe erase uninstal.exe |
| 296 | -@if exist uninstal.obj erase uninstal.obj |
| 297 | -@if exist vimrun.exe erase vimrun.exe |
| 298 | -@if exist vimrun.obj erase vimrun.obj |
| 299 | |
| 300 | |
| 301 | install.exe: dosinst.c |
Bram Moolenaar | b230bd5 | 2010-05-25 21:02:00 +0200 | [diff] [blame] | 302 | $(CPP) /Fe$@ /nologo /W3 -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib user32.lib ole32.lib advapi32.lib uuid.lib |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 303 | |
| 304 | uninstal.exe: uninstal.c |
| 305 | $(CPP) /nologo /W3 -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib |
| 306 | |
| 307 | vimrun.exe: vimrun.c |
| 308 | $(CPP) /nologo /W3 -DNDEBUG vimrun.c |
| 309 | |
| 310 | xxd/xxd.exe: xxd/xxd.c |
| 311 | cd xxd |
| 312 | $(MAKE) /NOLOGO -f Make_mvc.mak |
| 313 | cd .. |
| 314 | |
| 315 | GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h |
| 316 | cd GvimExt |
| 317 | $(MAKE) /NOLOGO -f Makefile |
| 318 | cd .. |
| 319 | |
| 320 | {.}.c{$(INTDIR)/}.obj: |
| 321 | $(CPP) $(CPP_PROJ) $< |
| 322 | |
| 323 | {.}.cpp{$(INTDIR)/}.obj: |
| 324 | $(CPP) $(CPP_PROJ) /I $(INTDIR) $< |
| 325 | |
| 326 | {.}.rc{$(INTDIR)/}.res: |
| 327 | $(RSC) $(RSC_PROJ) $< |
| 328 | |
| 329 | # Begin Target |
| 330 | |
| 331 | # Name "Vim - Win32 Release gvim OLE" |
| 332 | # Name "Vim - Win32 Debug gvim OLE" |
| 333 | # Name "Vim - Win32 Release gvim" |
| 334 | # Name "Vim - Win32 Debug gvim" |
| 335 | # Name "Vim - Win32 Release vim" |
| 336 | # Name "Vim - Win32 Debug vim" |
| 337 | |
| 338 | # Begin Source File |
| 339 | |
Bram Moolenaar | 75464dc | 2016-07-02 20:27:50 +0200 | [diff] [blame] | 340 | SOURCE=.\arabic.c |
| 341 | # End Source File |
| 342 | # Begin Source File |
| 343 | |
Bram Moolenaar | 6a3c997 | 2010-06-07 22:50:29 +0200 | [diff] [blame] | 344 | SOURCE=.\blowfish.c |
| 345 | # End Source File |
| 346 | # Begin Source File |
| 347 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 348 | SOURCE=.\buffer.c |
| 349 | # End Source File |
| 350 | # Begin Source File |
| 351 | |
| 352 | SOURCE=.\charset.c |
| 353 | # End Source File |
| 354 | # Begin Source File |
| 355 | |
Bram Moolenaar | 07cf382 | 2014-08-10 16:31:50 +0200 | [diff] [blame] | 356 | SOURCE=.\crypt.c |
| 357 | # End Source File |
| 358 | # Begin Source File |
| 359 | |
| 360 | SOURCE=.\crypt_zip.c |
| 361 | # End Source File |
| 362 | # Begin Source File |
| 363 | |
Bram Moolenaar | 6583c44 | 2016-07-17 18:41:47 +0200 | [diff] [blame] | 364 | SOURCE=.\dict.c |
| 365 | # End Source File |
| 366 | # Begin Source File |
| 367 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 368 | SOURCE=.\diff.c |
| 369 | # End Source File |
| 370 | # Begin Source File |
| 371 | |
| 372 | SOURCE=.\digraph.c |
| 373 | # End Source File |
| 374 | # Begin Source File |
| 375 | |
| 376 | SOURCE=.\edit.c |
| 377 | # End Source File |
| 378 | # Begin Source File |
| 379 | |
| 380 | SOURCE=.\eval.c |
| 381 | # End Source File |
| 382 | # Begin Source File |
| 383 | |
Bram Moolenaar | 73dad1e | 2016-07-17 22:13:49 +0200 | [diff] [blame] | 384 | SOURCE=.\evalfunc.c |
| 385 | # End Source File |
| 386 | # Begin Source File |
| 387 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 388 | SOURCE=.\ex_cmds.c |
| 389 | # End Source File |
| 390 | # Begin Source File |
| 391 | |
| 392 | SOURCE=.\ex_cmds2.c |
| 393 | # End Source File |
| 394 | # Begin Source File |
| 395 | |
| 396 | SOURCE=.\ex_docmd.c |
| 397 | # End Source File |
| 398 | # Begin Source File |
| 399 | |
| 400 | SOURCE=.\ex_eval.c |
| 401 | # End Source File |
| 402 | # Begin Source File |
| 403 | |
| 404 | SOURCE=.\ex_getln.c |
| 405 | # End Source File |
| 406 | # Begin Source File |
| 407 | |
Bram Moolenaar | 75464dc | 2016-07-02 20:27:50 +0200 | [diff] [blame] | 408 | SOURCE=.\farsi.c |
| 409 | # End Source File |
| 410 | # Begin Source File |
| 411 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 412 | SOURCE=.\fileio.c |
| 413 | # End Source File |
| 414 | # Begin Source File |
| 415 | |
| 416 | SOURCE=.\fold.c |
| 417 | # End Source File |
| 418 | # Begin Source File |
| 419 | |
| 420 | SOURCE=.\getchar.c |
| 421 | # End Source File |
| 422 | # Begin Source File |
| 423 | |
Bram Moolenaar | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 424 | SOURCE=.\hardcopy.c |
| 425 | # End Source File |
| 426 | # Begin Source File |
| 427 | |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 428 | SOURCE=.\hashtab.c |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 429 | # End Source File |
| 430 | # Begin Source File |
| 431 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 432 | SOURCE=.\gui.c |
| 433 | |
| 434 | !IF "$(CFG)" == "Vim - Win32 Release vim" |
| 435 | |
| 436 | # PROP Exclude_From_Build 1 |
| 437 | |
| 438 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" |
| 439 | |
| 440 | # PROP Exclude_From_Build 1 |
| 441 | |
| 442 | !ENDIF |
| 443 | |
| 444 | # End Source File |
| 445 | # Begin Source File |
| 446 | |
| 447 | SOURCE=.\gui_w32.c |
| 448 | |
| 449 | !IF "$(CFG)" == "Vim - Win32 Release vim" |
| 450 | |
| 451 | # PROP Exclude_From_Build 1 |
| 452 | |
| 453 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" |
| 454 | |
| 455 | # PROP Exclude_From_Build 1 |
| 456 | |
| 457 | !ENDIF |
| 458 | |
| 459 | # End Source File |
| 460 | # Begin Source File |
| 461 | |
Bram Moolenaar | 58e7f2b | 2005-03-16 09:48:18 +0000 | [diff] [blame] | 462 | SOURCE=.\gui_beval.c |
| 463 | |
| 464 | !IF "$(CFG)" == "Vim - Win32 Release vim" |
| 465 | |
| 466 | # PROP Exclude_From_Build 1 |
| 467 | |
| 468 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" |
| 469 | |
| 470 | # PROP Exclude_From_Build 1 |
| 471 | |
| 472 | !ENDIF |
| 473 | |
| 474 | # End Source File |
| 475 | # Begin Source File |
| 476 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 477 | SOURCE=.\os_w32exe.c |
| 478 | |
| 479 | !IF "$(CFG)" == "Vim - Win32 Release vim" |
| 480 | |
| 481 | # PROP Exclude_From_Build 1 |
| 482 | |
| 483 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" |
| 484 | |
| 485 | # PROP Exclude_From_Build 1 |
| 486 | |
| 487 | !ENDIF |
| 488 | |
| 489 | # End Source File |
| 490 | # Begin Source File |
| 491 | |
| 492 | SOURCE=.\if_ole.cpp |
| 493 | |
| 494 | !IF "$(CFG)" == "Vim - Win32 Release gvim OLE" |
| 495 | |
| 496 | # PROP Ignore_Default_Tool 1 |
| 497 | # Begin Custom Build |
| 498 | |
| 499 | "$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h" |
Bram Moolenaar | 9c96f59 | 2005-06-30 21:52:39 +0000 | [diff] [blame] | 500 | 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 501 | @rem This is the default rule with /I "$(IntDir)" added |
| 502 | |
| 503 | # End Custom Build |
| 504 | |
| 505 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE" |
| 506 | |
| 507 | # PROP Ignore_Default_Tool 1 |
| 508 | # Begin Custom Build |
| 509 | |
| 510 | "$(INTDIR)\if_ole.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h" |
| 511 | 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 |
| 512 | @rem This is the default rule with /I "$(IntDir)" added |
| 513 | |
| 514 | # End Custom Build |
| 515 | |
| 516 | !ELSEIF "$(CFG)" == "Vim - Win32 Release gvim" |
| 517 | |
| 518 | # PROP Exclude_From_Build 1 |
| 519 | |
| 520 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim" |
| 521 | |
| 522 | # PROP Exclude_From_Build 1 |
| 523 | |
| 524 | !ELSEIF "$(CFG)" == "Vim - Win32 Release vim" |
| 525 | |
| 526 | # PROP Exclude_From_Build 1 |
| 527 | |
| 528 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" |
| 529 | |
| 530 | # PROP Exclude_From_Build 1 |
| 531 | |
| 532 | !ENDIF |
| 533 | |
| 534 | # End Source File |
| 535 | # Begin Source File |
| 536 | |
| 537 | SOURCE=.\if_ole.idl |
| 538 | |
| 539 | !IF "$(CFG)" == "Vim - Win32 Release gvim OLE" |
| 540 | |
| 541 | # PROP Ignore_Default_Tool 1 |
| 542 | # Begin Custom Build |
| 543 | |
| 544 | "$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)" |
| 545 | if exist .\if_ole.h del .\if_ole.h |
| 546 | midl /out .\oleRel /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl |
| 547 | |
| 548 | # End Custom Build |
| 549 | |
| 550 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE" |
| 551 | |
| 552 | # PROP Ignore_Default_Tool 1 |
| 553 | # Begin Custom Build |
| 554 | |
| 555 | "$(INTDIR)\if_ole.h" : $(SOURCE) "$(INTDIR)" |
| 556 | if exist .\if_ole.h del .\if_ole.h |
| 557 | midl /out .\oleDbg /iid iid_ole.c /tlb vim.tlb /proxy nul /header if_ole.h .\if_ole.idl |
| 558 | |
| 559 | # End Custom Build |
| 560 | |
| 561 | !ELSEIF "$(CFG)" == "Vim - Win32 Release gvim" |
| 562 | |
| 563 | # PROP Exclude_From_Build 1 |
| 564 | |
| 565 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim" |
| 566 | |
| 567 | # PROP Exclude_From_Build 1 |
| 568 | |
| 569 | !ELSEIF "$(CFG)" == "Vim - Win32 Release vim" |
| 570 | |
| 571 | # PROP Exclude_From_Build 1 |
| 572 | |
| 573 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" |
| 574 | |
| 575 | # PROP Exclude_From_Build 1 |
| 576 | |
| 577 | !ENDIF |
| 578 | |
| 579 | # End Source File |
| 580 | # Begin Source File |
| 581 | |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 582 | SOURCE=.\json.c |
| 583 | # End Source File |
| 584 | # Begin Source File |
| 585 | |
Bram Moolenaar | 6583c44 | 2016-07-17 18:41:47 +0200 | [diff] [blame] | 586 | SOURCE=.\list.c |
| 587 | # End Source File |
| 588 | # Begin Source File |
| 589 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 590 | SOURCE=.\main.c |
| 591 | # End Source File |
| 592 | # Begin Source File |
| 593 | |
| 594 | SOURCE=.\mark.c |
| 595 | # End Source File |
| 596 | # Begin Source File |
| 597 | |
| 598 | SOURCE=.\mbyte.c |
| 599 | # End Source File |
| 600 | # Begin Source File |
| 601 | |
| 602 | SOURCE=.\memfile.c |
| 603 | # End Source File |
| 604 | # Begin Source File |
| 605 | |
| 606 | SOURCE=.\memline.c |
| 607 | # End Source File |
| 608 | # Begin Source File |
| 609 | |
| 610 | SOURCE=.\menu.c |
| 611 | # End Source File |
| 612 | # Begin Source File |
| 613 | |
| 614 | SOURCE=.\message.c |
| 615 | # End Source File |
| 616 | # Begin Source File |
| 617 | |
| 618 | SOURCE=.\misc1.c |
| 619 | # End Source File |
| 620 | # Begin Source File |
| 621 | |
| 622 | SOURCE=.\misc2.c |
| 623 | # End Source File |
| 624 | # Begin Source File |
| 625 | |
| 626 | SOURCE=.\move.c |
| 627 | # End Source File |
| 628 | # Begin Source File |
| 629 | |
| 630 | SOURCE=.\normal.c |
| 631 | # End Source File |
| 632 | # Begin Source File |
| 633 | |
| 634 | SOURCE=.\ops.c |
| 635 | # End Source File |
| 636 | # Begin Source File |
| 637 | |
| 638 | SOURCE=.\option.c |
| 639 | # End Source File |
| 640 | # Begin Source File |
| 641 | |
| 642 | SOURCE=.\os_mswin.c |
| 643 | # End Source File |
| 644 | # Begin Source File |
| 645 | |
Bram Moolenaar | 693e40c | 2013-02-26 14:56:42 +0100 | [diff] [blame] | 646 | SOURCE=.\winclip.c |
| 647 | # End Source File |
| 648 | # Begin Source File |
| 649 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 650 | SOURCE=.\os_win32.c |
| 651 | # End Source File |
| 652 | # Begin Source File |
| 653 | |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 654 | SOURCE=.\popupmnu.c |
Bram Moolenaar | bb15b65 | 2005-10-03 21:52:09 +0000 | [diff] [blame] | 655 | # End Source File |
| 656 | # Begin Source File |
| 657 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 658 | SOURCE=.\quickfix.c |
| 659 | # End Source File |
| 660 | # Begin Source File |
| 661 | |
| 662 | SOURCE=.\regexp.c |
| 663 | # End Source File |
| 664 | # Begin Source File |
| 665 | |
| 666 | SOURCE=.\screen.c |
| 667 | # End Source File |
| 668 | # Begin Source File |
| 669 | |
| 670 | SOURCE=.\search.c |
| 671 | # End Source File |
| 672 | # Begin Source File |
| 673 | |
Bram Moolenaar | 6a3c997 | 2010-06-07 22:50:29 +0200 | [diff] [blame] | 674 | SOURCE=.\sha256.c |
| 675 | # End Source File |
| 676 | # Begin Source File |
| 677 | |
Bram Moolenaar | 2e4096b | 2005-03-20 22:25:45 +0000 | [diff] [blame] | 678 | SOURCE=.\spell.c |
| 679 | # End Source File |
| 680 | # Begin Source File |
| 681 | |
Bram Moolenaar | 9ccfebd | 2016-07-19 16:39:08 +0200 | [diff] [blame] | 682 | SOURCE=.\spellfile.c |
| 683 | # End Source File |
| 684 | # Begin Source File |
| 685 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 686 | SOURCE=.\syntax.c |
| 687 | # End Source File |
| 688 | # Begin Source File |
| 689 | |
| 690 | SOURCE=.\tag.c |
| 691 | # End Source File |
| 692 | # Begin Source File |
| 693 | |
| 694 | SOURCE=.\term.c |
| 695 | # End Source File |
| 696 | # Begin Source File |
| 697 | |
| 698 | SOURCE=.\ui.c |
| 699 | # End Source File |
| 700 | # Begin Source File |
| 701 | |
| 702 | SOURCE=.\undo.c |
| 703 | # End Source File |
| 704 | # Begin Source File |
| 705 | |
Bram Moolenaar | 6583c44 | 2016-07-17 18:41:47 +0200 | [diff] [blame] | 706 | SOURCE=.\userfunc.c |
| 707 | # End Source File |
| 708 | # Begin Source File |
| 709 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 710 | SOURCE=.\version.c |
| 711 | # End Source File |
| 712 | # Begin Source File |
| 713 | |
| 714 | SOURCE=.\vim.rc |
| 715 | |
| 716 | !IF "$(CFG)" == "Vim - Win32 Release gvim OLE" |
| 717 | |
| 718 | "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h" |
| 719 | |
| 720 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim OLE" |
| 721 | |
| 722 | "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\if_ole.h" |
| 723 | |
| 724 | !ELSEIF "$(CFG)" == "Vim - Win32 Release gvim" |
| 725 | |
| 726 | "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" |
| 727 | |
| 728 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug gvim" |
| 729 | |
| 730 | "$(INTDIR)\vim.res" : $(SOURCE) "$(INTDIR)" |
| 731 | |
| 732 | !ELSEIF "$(CFG)" == "Vim - Win32 Release vim" |
| 733 | |
| 734 | # PROP Exclude_From_Build 1 |
| 735 | |
| 736 | !ELSEIF "$(CFG)" == "Vim - Win32 Debug vim" |
| 737 | |
| 738 | # PROP Exclude_From_Build 1 |
| 739 | |
| 740 | !ENDIF |
| 741 | |
| 742 | # End Source File |
| 743 | # Begin Source File |
| 744 | |
| 745 | SOURCE=.\window.c |
| 746 | # End Source File |
| 747 | # End Target |
| 748 | # End Project |