Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 1 | # Makefile for Vim on Win32 (Windows NT/2000/XP/2003 and Windows 95/98/Me) |
| 2 | # and Win64, using the Microsoft Visual C++ compilers. Known to work with |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 3 | # VC5, VC6 (VS98), VC7.0 (VS2002), VC7.1 (VS2003), VC8 (VS2005), |
Bram Moolenaar | da2f99a | 2009-06-16 14:34:38 +0000 | [diff] [blame] | 4 | # VC9 (VS2008), and VC10 (VS2010). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5 | # |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 6 | # To build using other Windows compilers, see INSTALLpc.txt |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 7 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 8 | # This makefile can build the console, GUI, OLE-enable, Perl-enabled and |
Bram Moolenaar | da2f99a | 2009-06-16 14:34:38 +0000 | [diff] [blame] | 9 | # Python-enabled versions of Vim for Win32 platforms. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 10 | # |
Bram Moolenaar | da2f99a | 2009-06-16 14:34:38 +0000 | [diff] [blame] | 11 | # The basic command line to build Vim is: |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 12 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 13 | # nmake -f Make_mvc.mak |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 14 | # |
Bram Moolenaar | da2f99a | 2009-06-16 14:34:38 +0000 | [diff] [blame] | 15 | # This will build the console version of Vim with no additional interfaces. |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 16 | # To add features, define any of the following: |
| 17 | # |
| 18 | # !!!! After changing features do "nmake clean" first !!!! |
| 19 | # |
| 20 | # Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG) |
| 21 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 22 | # GUI interface: GUI=yes (default is no) |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 23 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 24 | # OLE interface: OLE=yes (usually with GUI=yes) |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 25 | # |
Bram Moolenaar | a83c3e0 | 2006-03-17 23:10:44 +0000 | [diff] [blame] | 26 | # Multibyte support: MBYTE=yes (default is no) |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 27 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 28 | # IME support: IME=yes (requires GUI=yes) |
| 29 | # DYNAMIC_IME=[yes or no] (to load the imm32.dll dynamically, default |
| 30 | # is yes) |
| 31 | # Global IME support: GIME=yes (requires GUI=yes) |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 32 | # |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 33 | # Lua interface: |
| 34 | # LUA=[Path to Lua directory] |
| 35 | # DYNAMIC_LUA=yes (to load the Lua DLL dynamically) |
| 36 | # LUA_VER=[Lua version] (default is 51) |
| 37 | # |
Bram Moolenaar | 65c1b01 | 2005-01-31 19:02:28 +0000 | [diff] [blame] | 38 | # MzScheme interface: |
| 39 | # MZSCHEME=[Path to MzScheme directory] |
| 40 | # DYNAMIC_MZSCHEME=yes (to load the MzScheme DLLs dynamically) |
| 41 | # MZSCHEME_VER=[version, 205_000, ...] |
Bram Moolenaar | 9e70cf1 | 2009-05-26 20:59:55 +0000 | [diff] [blame] | 42 | # MZSCHEME_DEBUG=no |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 43 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 44 | # Perl interface: |
| 45 | # PERL=[Path to Perl directory] |
| 46 | # DYNAMIC_PERL=yes (to load the Perl DLL dynamically) |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 47 | # PERL_VER=[Perl version, in the form 55 (5.005), 56 (5.6.x), etc] |
| 48 | # (default is 56) |
| 49 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 50 | # Python interface: |
| 51 | # PYTHON=[Path to Python directory] |
| 52 | # DYNAMIC_PYTHON=yes (to load the Python DLL dynamically) |
| 53 | # PYTHON_VER=[Python version, eg 15, 20] (default is 22) |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 54 | # |
Bram Moolenaar | bd5e15f | 2010-07-17 21:19:38 +0200 | [diff] [blame] | 55 | # Python3 interface: |
| 56 | # PYTHON3=[Path to Python3 directory] |
| 57 | # DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically) |
| 58 | # PYTHON3_VER=[Python3 version, eg 30, 31] (default is 31) |
| 59 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 60 | # Ruby interface: |
| 61 | # RUBY=[Path to Ruby directory] |
| 62 | # DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically) |
| 63 | # RUBY_VER=[Ruby version, eg 16, 17] (default is 18) |
| 64 | # RUBY_VER_LONG=[Ruby version, eg 1.6, 1.7] (default is 1.8) |
| 65 | # You must set RUBY_VER_LONG when change RUBY_VER. |
Bram Moolenaar | da3cb83 | 2012-08-02 21:21:47 +0200 | [diff] [blame] | 66 | # You must set RUBY_API_VER to RUBY_VER_LONG. |
| 67 | # Don't set ruby API version to RUBY_VER like 191. |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 68 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 69 | # Tcl interface: |
| 70 | # TCL=[Path to Tcl directory] |
| 71 | # DYNAMIC_TCL=yes (to load the Tcl DLL dynamically) |
| 72 | # TCL_VER=[Tcl version, e.g. 80, 83] (default is 83) |
| 73 | # TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.3) |
| 74 | # You must set TCL_VER_LONG when you set TCL_VER. |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 75 | # |
| 76 | # SNiFF+ interface: SNIFF=yes |
| 77 | # |
| 78 | # Cscope support: CSCOPE=yes |
| 79 | # |
| 80 | # Iconv library support (always dynamically loaded): |
| 81 | # ICONV=[yes or no] (default is yes) |
| 82 | # |
| 83 | # Intl library support (always dynamically loaded): |
| 84 | # GETTEXT=[yes or no] (default is yes) |
| 85 | # See http://sourceforge.net/projects/gettext/ |
| 86 | # |
| 87 | # PostScript printing: POSTSCRIPT=yes (default is no) |
| 88 | # |
| 89 | # Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes) |
| 90 | # |
| 91 | # XPM Image Support: XPM=[path to XPM directory] |
Bram Moolenaar | c6c1d8b | 2012-08-29 14:18:33 +0200 | [diff] [blame] | 92 | # Default is "xpm", using the files included in the distribution. |
| 93 | # Use "no" to disable this feature. |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 94 | # |
| 95 | # Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED) |
| 96 | # |
| 97 | # Processor Version: CPUNR=[i386, i486, i586, i686, pentium4] (default is |
| 98 | # i386) |
| 99 | # |
| 100 | # Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400) |
| 101 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 102 | # Debug version: DEBUG=yes |
| 103 | # Mapfile: MAP=[no, yes or lines] (default is yes) |
| 104 | # no: Don't write a mapfile. |
| 105 | # yes: Write a normal mapfile. |
| 106 | # lines: Write a mapfile with line numbers (only for VC6 and later) |
Bram Moolenaar | 7887d88 | 2005-07-01 22:33:52 +0000 | [diff] [blame] | 107 | # |
| 108 | # Netbeans Debugging Support: NBDEBUG=[yes or no] (should be no, yes |
| 109 | # doesn't work) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 110 | # |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 111 | # Visual C Version: MSVCVER=m.n (default derived from nmake if undefined) |
| 112 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 113 | # You can combine any of these interfaces |
| 114 | # |
| 115 | # Example: To build the non-debug, GUI version with Perl interface: |
| 116 | # nmake -f Make_mvc.mak GUI=yes PERL=C:\Perl |
| 117 | # |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 118 | # DEBUG with Make_mvc.mak and Make_dvc.mak: |
| 119 | # This makefile gives a fineness of control which is not supported in |
| 120 | # Visual C++ configuration files. Therefore, debugging requires a bit of |
| 121 | # extra work. |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 122 | # Make_dvc.mak is a Visual C++ project to access that support. It may be |
| 123 | # badly out of date for the Visual C++ you are using... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 124 | # To use Make_dvc.mak: |
| 125 | # 1) Build Vim with Make_mvc.mak. |
| 126 | # Use a "DEBUG=yes" argument to build Vim with debug support. |
| 127 | # E.g. the following builds gvimd.exe: |
| 128 | # nmake -f Make_mvc.mak debug=yes gui=yes |
| 129 | # 2) Use MS Devstudio and set it up to allow that file to be debugged: |
| 130 | # i) Pass Make_dvc.mak to the IDE. |
| 131 | # Use the "open workspace" menu entry to load Make_dvc.mak. |
| 132 | # Alternatively, from the command line: |
| 133 | # msdev /nologo Make_dvc.mak |
| 134 | # Note: Make_dvc.mak is in VC4.0 format. Later VC versions see |
| 135 | # this and offer to convert it to their own format. Accept that. |
| 136 | # It creates a file called Make_dvc.dsw which can then be used |
| 137 | # for further operations. E.g. |
| 138 | # msdev /nologo Make_dvc.dsw |
| 139 | # ii) Set the built executable for debugging: |
| 140 | # a) Alt+F7/Debug takes you to the Debug dialog. |
| 141 | # b) Fill "Executable for debug session". e.g. gvimd.exe |
| 142 | # c) Fill "Program arguments". e.g. -R dosinst.c |
| 143 | # d) Complete the dialog |
| 144 | # 3) You can now debug the executable you built with Make_mvc.mak |
| 145 | # |
| 146 | # Note: Make_dvc.mak builds vimrun.exe, because it must build something |
| 147 | # to be a valid makefile.. |
| 148 | |
| 149 | ### See feature.h for a list of optionals. |
| 150 | # If you want to build some optional features without modifying the source, |
| 151 | # you can set DEFINES on the command line, e.g., |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 152 | # nmake -f Make_mvc.mvc "DEFINES=-DEMACS_TAGS" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 153 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 154 | # Build on both Windows NT/XP and Windows 9x |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 155 | |
| 156 | TARGETOS = BOTH |
| 157 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 158 | # Select one of eight object code directories, depends on GUI, OLE, DEBUG and |
| 159 | # interfaces. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 160 | # If you change something else, do "make clean" first! |
| 161 | !if "$(GUI)" == "yes" |
| 162 | OBJDIR = .\ObjG |
| 163 | !else |
| 164 | OBJDIR = .\ObjC |
| 165 | !endif |
| 166 | !if "$(OLE)" == "yes" |
| 167 | OBJDIR = $(OBJDIR)O |
| 168 | !endif |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 169 | !ifdef LUA |
| 170 | OBJDIR = $(OBJDIR)U |
| 171 | !endif |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 172 | !ifdef PERL |
| 173 | OBJDIR = $(OBJDIR)L |
| 174 | !endif |
| 175 | !ifdef PYTHON |
| 176 | OBJDIR = $(OBJDIR)Y |
| 177 | !endif |
Bram Moolenaar | bd5e15f | 2010-07-17 21:19:38 +0200 | [diff] [blame] | 178 | !ifdef PYTHON3 |
| 179 | OBJDIR = $(OBJDIR)H |
| 180 | !endif |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 181 | !ifdef TCL |
| 182 | OBJDIR = $(OBJDIR)T |
| 183 | !endif |
| 184 | !ifdef RUBY |
| 185 | OBJDIR = $(OBJDIR)R |
| 186 | !endif |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 187 | !ifdef MZSCHEME |
| 188 | OBJDIR = $(OBJDIR)Z |
| 189 | !endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 190 | !if "$(DEBUG)" == "yes" |
| 191 | OBJDIR = $(OBJDIR)d |
| 192 | !endif |
| 193 | |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 194 | # Win32.mak requires that CPU be set appropriately. |
| 195 | # To cross-compile for Win64, set CPU=AMD64 or CPU=IA64. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 196 | |
| 197 | !ifdef PROCESSOR_ARCHITECTURE |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 198 | # We're on Windows NT or using VC 6+ |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 199 | ! ifdef CPU |
| 200 | ASSEMBLY_ARCHITECTURE=$(CPU) |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 201 | # Using I386 for $ASSEMBLY_ARCHITECTURE doesn't work for VC7. |
| 202 | ! if ("$(ASSEMBLY_ARCHITECTURE)" == "i386") || ("$(ASSEMBLY_ARCHITECTURE)" == "I386") |
| 203 | ASSEMBLY_ARCHITECTURE = x86 |
| 204 | ! endif |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 205 | ! else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 206 | CPU = $(PROCESSOR_ARCHITECTURE) |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 207 | ASSEMBLY_ARCHITECTURE = $(PROCESSOR_ARCHITECTURE) |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 208 | ! if ("$(CPU)" == "x86") || ("$(CPU)" == "X86") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 209 | CPU = i386 |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 210 | ! endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 211 | ! endif |
| 212 | !else # !PROCESSOR_ARCHITECTURE |
| 213 | # We're on Windows 95 |
| 214 | CPU = i386 |
| 215 | !endif # !PROCESSOR_ARCHITECTURE |
Bram Moolenaar | e2db436 | 2012-09-05 17:57:39 +0200 | [diff] [blame] | 216 | OBJDIR = $(OBJDIR)$(CPU) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 217 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 218 | # Build a retail version by default |
| 219 | |
| 220 | !if "$(DEBUG)" != "yes" |
| 221 | NODEBUG = 1 |
| 222 | !else |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 223 | !undef NODEBUG |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 224 | MAKEFLAGS_GVIMEXT = DEBUG=yes |
| 225 | !endif |
| 226 | |
| 227 | |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 228 | # Get all sorts of useful, standard macros from the Platform SDK. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 229 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 230 | !include <Win32.mak> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 231 | |
Bram Moolenaar | 8cd213c | 2010-06-01 21:57:09 +0200 | [diff] [blame] | 232 | # Flag to turn on Win64 compatibility warnings for VC7.x and VC8. |
Bram Moolenaar | 83d09bb | 2010-06-01 19:58:08 +0200 | [diff] [blame] | 233 | WP64CHECK = /Wp64 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 234 | |
| 235 | #>>>>> path of the compiler and linker; name of include and lib directories |
| 236 | # PATH = c:\msvc20\bin;$(PATH) |
| 237 | # INCLUDE = c:\msvc20\include |
| 238 | # LIB = c:\msvc20\lib |
| 239 | |
| 240 | !ifndef CTAGS |
| 241 | CTAGS = ctags |
| 242 | !endif |
| 243 | |
| 244 | !if "$(SNIFF)" == "yes" |
| 245 | # SNIFF - Include support for SNiFF+. |
| 246 | SNIFF_INCL = if_sniff.h |
| 247 | SNIFF_OBJ = $(OBJDIR)/if_sniff.obj |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 248 | SNIFF_LIB = shell32.lib |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 249 | SNIFF_DEFS = -DFEAT_SNIFF |
| 250 | # The SNiFF integration needs multithreaded libraries! |
| 251 | MULTITHREADED = yes |
| 252 | !endif |
| 253 | |
| 254 | !ifndef CSCOPE |
| 255 | CSCOPE = yes |
| 256 | !endif |
| 257 | |
| 258 | !if "$(CSCOPE)" == "yes" |
| 259 | # CSCOPE - Include support for Cscope |
| 260 | CSCOPE_INCL = if_cscope.h |
| 261 | CSCOPE_OBJ = $(OBJDIR)/if_cscope.obj |
| 262 | CSCOPE_DEFS = -DFEAT_CSCOPE |
| 263 | !endif |
| 264 | |
| 265 | !ifndef NETBEANS |
| 266 | NETBEANS = $(GUI) |
| 267 | !endif |
| 268 | |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 269 | # Only allow NETBEANS and XPM for a GUI build. |
| 270 | !if "$(GUI)" == "yes" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 271 | !if "$(NETBEANS)" == "yes" |
| 272 | # NETBEANS - Include support for Netbeans integration |
| 273 | NETBEANS_PRO = proto/netbeans.pro |
Bram Moolenaar | 52b4b55 | 2005-03-07 23:00:57 +0000 | [diff] [blame] | 274 | NETBEANS_OBJ = $(OBJDIR)/netbeans.obj |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 275 | NETBEANS_DEFS = -DFEAT_NETBEANS_INTG |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 276 | |
| 277 | !if "$(NBDEBUG)" == "yes" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 278 | NBDEBUG_DEFS = -DNBDEBUG |
| 279 | NBDEBUG_INCL = nbdebug.h |
| 280 | NBDEBUG_SRC = nbdebug.c |
| 281 | !endif |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 282 | NETBEANS_LIB = WSock32.lib |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 283 | !endif |
| 284 | |
Bram Moolenaar | c6c1d8b | 2012-08-29 14:18:33 +0200 | [diff] [blame] | 285 | !ifndef XPM |
| 286 | # XPM is not set, use the included xpm files, depending on the architecture. |
Bram Moolenaar | e2db436 | 2012-09-05 17:57:39 +0200 | [diff] [blame] | 287 | !if "$(CPU)" == "AMD64" |
Bram Moolenaar | c6c1d8b | 2012-08-29 14:18:33 +0200 | [diff] [blame] | 288 | XPM = xpm\x64 |
Bram Moolenaar | e2db436 | 2012-09-05 17:57:39 +0200 | [diff] [blame] | 289 | !elseif "$(CPU)" == "i386" |
Bram Moolenaar | c6c1d8b | 2012-08-29 14:18:33 +0200 | [diff] [blame] | 290 | XPM = xpm\x86 |
Bram Moolenaar | e2db436 | 2012-09-05 17:57:39 +0200 | [diff] [blame] | 291 | !else |
| 292 | XPM = no |
Bram Moolenaar | c6c1d8b | 2012-08-29 14:18:33 +0200 | [diff] [blame] | 293 | !endif |
| 294 | !endif |
| 295 | !if "$(XPM)" != "no" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 296 | # XPM - Include support for XPM signs |
Bram Moolenaar | c6c1d8b | 2012-08-29 14:18:33 +0200 | [diff] [blame] | 297 | # See the xpm directory for more information. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 298 | XPM_OBJ = $(OBJDIR)/xpm_w32.obj |
| 299 | XPM_DEFS = -DFEAT_XPM_W32 |
| 300 | XPM_LIB = $(XPM)\lib\libXpm.lib |
Bram Moolenaar | c6c1d8b | 2012-08-29 14:18:33 +0200 | [diff] [blame] | 301 | XPM_INC = -I $(XPM)\include -I $(XPM)\..\include |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 302 | !endif |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 303 | !endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 304 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 305 | # Set which version of the CRT to use |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 306 | !if defined(USE_MSVCRT) |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 307 | # CVARS = $(cvarsdll) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 308 | # !elseif defined(MULTITHREADED) |
| 309 | # CVARS = $(cvarsmt) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 310 | !else |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 311 | # CVARS = $(cvars) |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 312 | # CVARS = $(cvarsmt) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 313 | !endif |
| 314 | |
| 315 | # need advapi32.lib for GetUserName() |
| 316 | # need shell32.lib for ExtractIcon() |
| 317 | # gdi32.lib and comdlg32.lib for printing support |
| 318 | # ole32.lib and uuid.lib are needed for FEAT_SHORTCUT |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 319 | CON_LIB = oldnames.lib kernel32.lib advapi32.lib shell32.lib gdi32.lib \ |
| 320 | comdlg32.lib ole32.lib uuid.lib /machine:$(CPU) /nodefaultlib |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 321 | !if "$(DELAYLOAD)" == "yes" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 322 | CON_LIB = $(CON_LIB) /DELAYLOAD:comdlg32.dll /DELAYLOAD:ole32.dll DelayImp.lib |
| 323 | !endif |
| 324 | |
| 325 | ### Set the default $(WINVER) to make it work with VC++7.0 (VS.NET) |
| 326 | # When set to 0x0500 ":browse" stops working. |
| 327 | !ifndef WINVER |
| 328 | WINVER = 0x0400 |
| 329 | !endif |
| 330 | |
| 331 | # If you have a fixed directory for $VIM or $VIMRUNTIME, other than the normal |
| 332 | # default, use these lines. |
| 333 | #VIMRCLOC = somewhere |
| 334 | #VIMRUNTIMEDIR = somewhere |
| 335 | |
| 336 | CFLAGS = -c /W3 /nologo $(CVARS) -I. -Iproto -DHAVE_PATHDEF -DWIN32 \ |
| 337 | $(SNIFF_DEFS) $(CSCOPE_DEFS) $(NETBEANS_DEFS) \ |
| 338 | $(NBDEBUG_DEFS) $(XPM_DEFS) \ |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 339 | $(DEFINES) -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \ |
| 340 | /Fo$(OUTDIR)/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 341 | |
| 342 | #>>>>> end of choices |
| 343 | ########################################################################### |
| 344 | |
| 345 | !ifdef OS |
| 346 | OS_TYPE = winnt |
| 347 | DEL_TREE = rmdir /s /q |
| 348 | !else |
| 349 | OS_TYPE = win95 |
| 350 | DEL_TREE = deltree /y |
| 351 | !endif |
| 352 | |
| 353 | INTDIR=$(OBJDIR) |
| 354 | OUTDIR=$(OBJDIR) |
| 355 | |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 356 | # Derive version of VC being used from nmake if not specified |
| 357 | !if "$(MSVCVER)" == "" |
| 358 | !if "$(_NMAKE_VER)" == "" |
| 359 | MSVCVER = 4.0 |
| 360 | !endif |
| 361 | !if "$(_NMAKE_VER)" == "162" |
| 362 | MSVCVER = 5.0 |
| 363 | !endif |
| 364 | !if "$(_NMAKE_VER)" == "6.00.8168.0" |
| 365 | MSVCVER = 6.0 |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 366 | CPU = ix86 |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 367 | !endif |
| 368 | !if "$(_NMAKE_VER)" == "7.00.9466" |
| 369 | MSVCVER = 7.0 |
| 370 | !endif |
| 371 | !if "$(_NMAKE_VER)" == "7.10.3077" |
| 372 | MSVCVER = 7.1 |
| 373 | !endif |
| 374 | !if "$(_NMAKE_VER)" == "8.00.50727.42" |
| 375 | MSVCVER = 8.0 |
| 376 | !endif |
| 377 | !if "$(_NMAKE_VER)" == "8.00.50727.762" |
| 378 | MSVCVER = 8.0 |
| 379 | !endif |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 380 | !if "$(_NMAKE_VER)" == "9.00.20706.01" |
| 381 | MSVCVER = 9.0 |
| 382 | !endif |
Bram Moolenaar | a7241f5 | 2008-06-24 20:39:31 +0000 | [diff] [blame] | 383 | !if "$(_NMAKE_VER)" == "9.00.21022.08" |
| 384 | MSVCVER = 9.0 |
| 385 | !endif |
Bram Moolenaar | 1365831 | 2009-02-04 17:35:52 +0000 | [diff] [blame] | 386 | !if "$(_NMAKE_VER)" == "9.00.30729.01" |
| 387 | MSVCVER = 9.0 |
| 388 | !endif |
Bram Moolenaar | da2f99a | 2009-06-16 14:34:38 +0000 | [diff] [blame] | 389 | !if "$(_NMAKE_VER)" == "10.00.20506.01" |
| 390 | MSVCVER = 10.0 |
| 391 | !endif |
Bram Moolenaar | 2498b3a | 2010-03-02 17:59:44 +0100 | [diff] [blame] | 392 | !if "$(_NMAKE_VER)" == "10.00.30128.01" |
| 393 | MSVCVER = 10.0 |
| 394 | !endif |
Bram Moolenaar | 218116c | 2010-05-20 21:46:00 +0200 | [diff] [blame] | 395 | !if "$(_NMAKE_VER)" == "10.00.30319.01" |
| 396 | MSVCVER = 10.0 |
| 397 | !endif |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 398 | !endif |
| 399 | |
| 400 | # Abort bulding VIM if version of VC is unrecognised. |
| 401 | !ifndef MSVCVER |
| 402 | !message *** ERROR |
| 403 | !message Cannot determine Visual C version being used. If you are using the |
| 404 | !message Windows SDK then you must have the environment variable MSVCVER set to |
| 405 | !message your version of the VC compiler. If you are not using the Express |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 406 | !message version of Visual C, you can either set MSVCVER or update this makefile |
| 407 | !message to handle the new value for _NMAKE_VER, "$(_NMAKE_VER)". |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 408 | !error Make aborted. |
| 409 | !endif |
| 410 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 411 | # Convert processor ID to MVC-compatible number |
Bram Moolenaar | da2f99a | 2009-06-16 14:34:38 +0000 | [diff] [blame] | 412 | !if ("$(MSVCVER)" != "8.0") && ("$(MSVCVER)" != "9.0") && ("$(MSVCVER)" != "10.0") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 413 | !if "$(CPUNR)" == "i386" |
| 414 | CPUARG = /G3 |
| 415 | !elseif "$(CPUNR)" == "i486" |
| 416 | CPUARG = /G4 |
| 417 | !elseif "$(CPUNR)" == "i586" |
| 418 | CPUARG = /G5 |
| 419 | !elseif "$(CPUNR)" == "i686" |
| 420 | CPUARG = /G6 |
Bram Moolenaar | cf3630f | 2005-01-08 16:04:29 +0000 | [diff] [blame] | 421 | !elseif "$(CPUNR)" == "pentium4" |
Bram Moolenaar | 3411469 | 2005-01-02 11:28:13 +0000 | [diff] [blame] | 422 | CPUARG = /G7 /arch:SSE2 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 423 | !else |
| 424 | CPUARG = |
| 425 | !endif |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 426 | !else |
Bram Moolenaar | 3ed16dc | 2011-06-12 20:31:31 +0200 | [diff] [blame] | 427 | # VC8/9/10 only allows specifying SSE architecture but only for 32bit |
| 428 | !if "$(ASSEMBLY_ARCHITECTURE)" == "x86" && "$(CPUNR)" == "pentium4" |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 429 | CPUARG = /arch:SSE2 |
| 430 | !endif |
| 431 | !endif |
| 432 | |
| 433 | LIBC = |
| 434 | DEBUGINFO = /Zi |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 435 | |
| 436 | !ifdef NODEBUG |
| 437 | VIM = vim |
| 438 | !if "$(OPTIMIZE)" == "SPACE" |
| 439 | OPTFLAG = /O1 |
| 440 | !elseif "$(OPTIMIZE)" == "SPEED" |
| 441 | OPTFLAG = /O2 |
| 442 | !else # MAXSPEED |
| 443 | OPTFLAG = /Ox |
| 444 | !endif |
Bram Moolenaar | 83d09bb | 2010-06-01 19:58:08 +0200 | [diff] [blame] | 445 | |
Bram Moolenaar | da2f99a | 2009-06-16 14:34:38 +0000 | [diff] [blame] | 446 | !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 447 | # Use link time code generation if not worried about size |
| 448 | !if "$(OPTIMIZE)" != "SPACE" |
| 449 | OPTFLAG = $(OPTFLAG) /GL |
| 450 | !endif |
| 451 | !endif |
Bram Moolenaar | 83d09bb | 2010-06-01 19:58:08 +0200 | [diff] [blame] | 452 | |
| 453 | # (/Wp64 is deprecated in VC9 and generates an obnoxious warning.) |
| 454 | !if ("$(MSVCVER)" == "7.0") || ("$(MSVCVER)" == "7.1") || ("$(MSVCVER)" == "8.0") |
| 455 | CFLAGS=$(CFLAGS) $(WP64CHECK) |
| 456 | !endif |
| 457 | |
Bram Moolenaar | 3411469 | 2005-01-02 11:28:13 +0000 | [diff] [blame] | 458 | CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 459 | RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 460 | ! ifdef USE_MSVCRT |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 461 | CFLAGS = $(CFLAGS) /MD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 462 | LIBC = msvcrt.lib |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 463 | ! else |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 464 | LIBC = libcmt.lib |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 465 | CFLAGS = $(CFLAGS) /Zl /MT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 466 | ! endif |
| 467 | !else # DEBUG |
| 468 | VIM = vimd |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 469 | ! if ("$(CPU)" == "i386") || ("$(CPU)" == "ix86") |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 470 | DEBUGINFO = /ZI |
| 471 | ! endif |
Bram Moolenaar | d9d3058 | 2005-05-18 22:10:28 +0000 | [diff] [blame] | 472 | CFLAGS = $(CFLAGS) -D_DEBUG -DDEBUG /Od |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 473 | RCFLAGS = $(rcflags) $(rcvars) -D_DEBUG -DDEBUG |
| 474 | # The /fixed:no is needed for Quantify. Assume not 4.? as unsupported in VC4.0. |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 475 | ! if "$(MSVCVER)" == "4.0" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 476 | LIBC = |
| 477 | ! else |
| 478 | LIBC = /fixed:no |
| 479 | ! endif |
Bram Moolenaar | 6a9aa37 | 2005-07-20 21:54:57 +0000 | [diff] [blame] | 480 | ! ifdef USE_MSVCRT |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 481 | CFLAGS = $(CFLAGS) /MDd |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 482 | LIBC = $(LIBC) msvcrtd.lib |
Bram Moolenaar | 6a9aa37 | 2005-07-20 21:54:57 +0000 | [diff] [blame] | 483 | ! else |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 484 | LIBC = $(LIBC) libcmtd.lib |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 485 | CFLAGS = $(CFLAGS) /Zl /MTd |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 486 | ! endif |
| 487 | !endif # DEBUG |
| 488 | |
| 489 | INCL = vim.h os_win32.h ascii.h feature.h globals.h keymap.h macros.h \ |
| 490 | proto.h option.h structs.h term.h $(SNIFF_INCL) $(CSCOPE_INCL) \ |
| 491 | $(NBDEBUG_INCL) |
| 492 | |
| 493 | OBJ = \ |
Bram Moolenaar | 40e6a71 | 2010-05-16 22:32:54 +0200 | [diff] [blame] | 494 | $(OUTDIR)\blowfish.obj \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 495 | $(OUTDIR)\buffer.obj \ |
| 496 | $(OUTDIR)\charset.obj \ |
| 497 | $(OUTDIR)\diff.obj \ |
| 498 | $(OUTDIR)\digraph.obj \ |
| 499 | $(OUTDIR)\edit.obj \ |
| 500 | $(OUTDIR)\eval.obj \ |
| 501 | $(OUTDIR)\ex_cmds.obj \ |
| 502 | $(OUTDIR)\ex_cmds2.obj \ |
| 503 | $(OUTDIR)\ex_docmd.obj \ |
| 504 | $(OUTDIR)\ex_eval.obj \ |
| 505 | $(OUTDIR)\ex_getln.obj \ |
| 506 | $(OUTDIR)\fileio.obj \ |
| 507 | $(OUTDIR)\fold.obj \ |
| 508 | $(OUTDIR)\getchar.obj \ |
Bram Moolenaar | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 509 | $(OUTDIR)\hardcopy.obj \ |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 510 | $(OUTDIR)\hashtab.obj \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 511 | $(OUTDIR)\main.obj \ |
| 512 | $(OUTDIR)\mark.obj \ |
| 513 | $(OUTDIR)\mbyte.obj \ |
| 514 | $(OUTDIR)\memfile.obj \ |
| 515 | $(OUTDIR)\memline.obj \ |
| 516 | $(OUTDIR)\menu.obj \ |
| 517 | $(OUTDIR)\message.obj \ |
| 518 | $(OUTDIR)\misc1.obj \ |
| 519 | $(OUTDIR)\misc2.obj \ |
| 520 | $(OUTDIR)\move.obj \ |
| 521 | $(OUTDIR)\normal.obj \ |
| 522 | $(OUTDIR)\ops.obj \ |
| 523 | $(OUTDIR)\option.obj \ |
| 524 | $(OUTDIR)\os_mswin.obj \ |
| 525 | $(OUTDIR)\os_win32.obj \ |
| 526 | $(OUTDIR)\pathdef.obj \ |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 527 | $(OUTDIR)\popupmnu.obj \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 528 | $(OUTDIR)\quickfix.obj \ |
| 529 | $(OUTDIR)\regexp.obj \ |
| 530 | $(OUTDIR)\screen.obj \ |
| 531 | $(OUTDIR)\search.obj \ |
Bram Moolenaar | edac185 | 2010-05-18 20:34:20 +0200 | [diff] [blame] | 532 | $(OUTDIR)\sha256.obj \ |
Bram Moolenaar | 2e4096b | 2005-03-20 22:25:45 +0000 | [diff] [blame] | 533 | $(OUTDIR)\spell.obj \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 534 | $(OUTDIR)\syntax.obj \ |
| 535 | $(OUTDIR)\tag.obj \ |
| 536 | $(OUTDIR)\term.obj \ |
| 537 | $(OUTDIR)\ui.obj \ |
| 538 | $(OUTDIR)\undo.obj \ |
| 539 | $(OUTDIR)\window.obj \ |
| 540 | $(OUTDIR)\vim.res |
| 541 | |
| 542 | !if "$(OLE)" == "yes" |
| 543 | CFLAGS = $(CFLAGS) -DFEAT_OLE |
| 544 | RCFLAGS = $(RCFLAGS) -DFEAT_OLE |
| 545 | OLE_OBJ = $(OUTDIR)\if_ole.obj |
| 546 | OLE_IDL = if_ole.idl |
| 547 | OLE_LIB = oleaut32.lib |
| 548 | !endif |
| 549 | |
| 550 | !if "$(IME)" == "yes" |
| 551 | CFLAGS = $(CFLAGS) -DFEAT_MBYTE_IME |
| 552 | !ifndef DYNAMIC_IME |
| 553 | DYNAMIC_IME = yes |
| 554 | !endif |
| 555 | !if "$(DYNAMIC_IME)" == "yes" |
| 556 | CFLAGS = $(CFLAGS) -DDYNAMIC_IME |
| 557 | !else |
| 558 | IME_LIB = imm32.lib |
| 559 | !endif |
| 560 | !endif |
| 561 | |
| 562 | !if "$(GIME)" == "yes" |
| 563 | CFLAGS = $(CFLAGS) -DGLOBAL_IME |
| 564 | OBJ = $(OBJ) $(OUTDIR)\dimm_i.obj $(OUTDIR)\glbl_ime.obj |
| 565 | MBYTE = yes |
| 566 | !endif |
| 567 | |
| 568 | !if "$(MBYTE)" == "yes" |
| 569 | CFLAGS = $(CFLAGS) -DFEAT_MBYTE |
| 570 | !endif |
| 571 | |
| 572 | !if "$(GUI)" == "yes" |
| 573 | SUBSYSTEM = windows |
| 574 | CFLAGS = $(CFLAGS) -DFEAT_GUI_W32 |
| 575 | RCFLAGS = $(RCFLAGS) -DFEAT_GUI_W32 |
| 576 | VIM = g$(VIM) |
| 577 | GUI_INCL = \ |
| 578 | gui.h \ |
| 579 | regexp.h \ |
| 580 | ascii.h \ |
| 581 | ex_cmds.h \ |
| 582 | farsi.h \ |
| 583 | feature.h \ |
| 584 | globals.h \ |
Bram Moolenaar | 52b4b55 | 2005-03-07 23:00:57 +0000 | [diff] [blame] | 585 | gui_beval.h \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 586 | keymap.h \ |
| 587 | macros.h \ |
| 588 | option.h \ |
| 589 | os_dos.h \ |
| 590 | os_win32.h |
| 591 | GUI_OBJ = \ |
| 592 | $(OUTDIR)\gui.obj \ |
Bram Moolenaar | 52b4b55 | 2005-03-07 23:00:57 +0000 | [diff] [blame] | 593 | $(OUTDIR)\gui_beval.obj \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 594 | $(OUTDIR)\gui_w32.obj \ |
| 595 | $(OUTDIR)\os_w32exe.obj |
| 596 | GUI_LIB = \ |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 597 | gdi32.lib version.lib $(IME_LIB) \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 598 | winspool.lib comctl32.lib advapi32.lib shell32.lib \ |
| 599 | /machine:$(CPU) /nodefaultlib |
| 600 | !else |
| 601 | SUBSYSTEM = console |
| 602 | !endif |
| 603 | |
| 604 | # iconv.dll library (dynamically loaded) |
| 605 | !ifndef ICONV |
| 606 | ICONV = yes |
| 607 | !endif |
| 608 | !if "$(ICONV)" == "yes" |
| 609 | CFLAGS = $(CFLAGS) -DDYNAMIC_ICONV |
| 610 | !endif |
| 611 | |
| 612 | # libintl.dll library |
| 613 | !ifndef GETTEXT |
| 614 | GETTEXT = yes |
| 615 | !endif |
| 616 | !if "$(GETTEXT)" == "yes" |
| 617 | CFLAGS = $(CFLAGS) -DDYNAMIC_GETTEXT |
| 618 | !endif |
| 619 | |
| 620 | # TCL interface |
| 621 | !ifdef TCL |
| 622 | !ifndef TCL_VER |
| 623 | TCL_VER = 83 |
| 624 | TCL_VER_LONG = 8.3 |
| 625 | !endif |
| 626 | !message Tcl requested (version $(TCL_VER)) - root dir is "$(TCL)" |
| 627 | !if "$(DYNAMIC_TCL)" == "yes" |
| 628 | !message Tcl DLL will be loaded dynamically |
| 629 | TCL_DLL = tcl$(TCL_VER).dll |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 630 | CFLAGS = $(CFLAGS) -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" \ |
| 631 | -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 632 | TCL_OBJ = $(OUTDIR)\if_tcl.obj |
| 633 | TCL_INC = /I "$(TCL)\Include" /I "$(TCL)" |
Bram Moolenaar | 84a4c33 | 2012-02-22 16:01:56 +0100 | [diff] [blame] | 634 | TCL_LIB = "$(TCL)\lib\tclstub$(TCL_VER).lib" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 635 | !else |
| 636 | CFLAGS = $(CFLAGS) -DFEAT_TCL |
| 637 | TCL_OBJ = $(OUTDIR)\if_tcl.obj |
| 638 | TCL_INC = /I "$(TCL)\Include" /I "$(TCL)" |
| 639 | TCL_LIB = $(TCL)\lib\tcl$(TCL_VER)vc.lib |
| 640 | !endif |
| 641 | !endif |
| 642 | |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 643 | # Lua interface |
| 644 | !ifdef LUA |
| 645 | !ifndef LUA_VER |
| 646 | LUA_VER = 51 |
| 647 | !endif |
| 648 | !message Lua requested (version $(LUA_VER)) - root dir is "$(LUA)" |
| 649 | !if "$(DYNAMIC_LUA)" == "yes" |
| 650 | !message Lua DLL will be loaded dynamically |
| 651 | !endif |
| 652 | CFLAGS = $(CFLAGS) -DFEAT_LUA |
| 653 | LUA_OBJ = $(OUTDIR)\if_lua.obj |
| 654 | LUA_INC = /I "$(LUA)\include" /I "$(LUA)" |
| 655 | !if "$(DYNAMIC_LUA)" == "yes" |
| 656 | CFLAGS = $(CFLAGS) -DDYNAMIC_LUA \ |
| 657 | -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\" |
| 658 | LUA_LIB = /nodefaultlib:lua$(LUA_VER).lib |
| 659 | !else |
| 660 | LUA_LIB = "$(LUA)\lib\lua$(LUA_VER).lib" |
| 661 | !endif |
| 662 | !endif |
| 663 | |
Bram Moolenaar | bd5e15f | 2010-07-17 21:19:38 +0200 | [diff] [blame] | 664 | !ifdef PYTHON |
| 665 | !ifdef PYTHON3 |
| 666 | DYNAMIC_PYTHON=yes |
| 667 | DYNAMIC_PYTHON3=yes |
| 668 | !endif |
| 669 | !endif |
| 670 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 671 | # PYTHON interface |
| 672 | !ifdef PYTHON |
| 673 | !ifndef PYTHON_VER |
| 674 | PYTHON_VER = 22 |
| 675 | !endif |
| 676 | !message Python requested (version $(PYTHON_VER)) - root dir is "$(PYTHON)" |
| 677 | !if "$(DYNAMIC_PYTHON)" == "yes" |
| 678 | !message Python DLL will be loaded dynamically |
| 679 | !endif |
| 680 | CFLAGS = $(CFLAGS) -DFEAT_PYTHON |
| 681 | PYTHON_OBJ = $(OUTDIR)\if_python.obj |
| 682 | PYTHON_INC = /I "$(PYTHON)\Include" /I "$(PYTHON)\PC" |
| 683 | !if "$(DYNAMIC_PYTHON)" == "yes" |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 684 | CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON \ |
| 685 | -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 686 | PYTHON_LIB = /nodefaultlib:python$(PYTHON_VER).lib |
| 687 | !else |
| 688 | PYTHON_LIB = $(PYTHON)\libs\python$(PYTHON_VER).lib |
| 689 | !endif |
| 690 | !endif |
| 691 | |
Bram Moolenaar | bd5e15f | 2010-07-17 21:19:38 +0200 | [diff] [blame] | 692 | # PYTHON3 interface |
| 693 | !ifdef PYTHON3 |
| 694 | !ifndef PYTHON3_VER |
| 695 | PYTHON3_VER = 31 |
| 696 | !endif |
| 697 | !message Python3 requested (version $(PYTHON3_VER)) - root dir is "$(PYTHON3)" |
| 698 | !if "$(DYNAMIC_PYTHON3)" == "yes" |
| 699 | !message Python3 DLL will be loaded dynamically |
| 700 | !endif |
| 701 | CFLAGS = $(CFLAGS) -DFEAT_PYTHON3 |
| 702 | PYTHON3_OBJ = $(OUTDIR)\if_python3.obj |
| 703 | PYTHON3_INC = /I "$(PYTHON3)\Include" /I "$(PYTHON3)\PC" |
| 704 | !if "$(DYNAMIC_PYTHON3)" == "yes" |
| 705 | CFLAGS = $(CFLAGS) -DDYNAMIC_PYTHON3 \ |
| 706 | -DDYNAMIC_PYTHON3_DLL=\"python$(PYTHON3_VER).dll\" |
| 707 | PYTHON3_LIB = /nodefaultlib:python$(PYTHON3_VER).lib |
| 708 | !else |
| 709 | PYTHON3_LIB = $(PYTHON3)\libs\python$(PYTHON3_VER).lib |
| 710 | !endif |
| 711 | !endif |
| 712 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 713 | # MzScheme interface |
| 714 | !ifdef MZSCHEME |
| 715 | !message MzScheme requested - root dir is "$(MZSCHEME)" |
| 716 | !ifndef MZSCHEME_VER |
| 717 | MZSCHEME_VER = 205_000 |
| 718 | !endif |
| 719 | CFLAGS = $(CFLAGS) -DFEAT_MZSCHEME -I $(MZSCHEME)\include |
Bram Moolenaar | 2d0860d | 2010-11-03 21:59:30 +0100 | [diff] [blame] | 720 | !if EXIST("$(MZSCHEME)\collects\scheme\base.ss") \ |
| 721 | || EXIST("$(MZSCHEME)\collects\scheme\base.rkt") |
| 722 | # for MzScheme >= 4 we need to include byte code for basic Scheme stuff |
Bram Moolenaar | 9e70cf1 | 2009-05-26 20:59:55 +0000 | [diff] [blame] | 723 | MZSCHEME_EXTRA_DEP = mzscheme_base.c |
| 724 | CFLAGS = $(CFLAGS) -DINCLUDE_MZSCHEME_BASE |
| 725 | !endif |
Bram Moolenaar | 2d0860d | 2010-11-03 21:59:30 +0100 | [diff] [blame] | 726 | !if EXIST("$(MZSCHEME)\lib\msvc\libmzsch$(MZSCHEME_VER).lib") |
| 727 | MZSCHEME_MAIN_LIB=mzsch |
| 728 | !else |
| 729 | MZSCHEME_MAIN_LIB=racket |
| 730 | !endif |
| 731 | !if EXIST("$(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib") \ |
Bram Moolenaar | 9e70cf1 | 2009-05-26 20:59:55 +0000 | [diff] [blame] | 732 | && !EXIST("$(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib") |
| 733 | !message Building with Precise GC |
| 734 | MZSCHEME_PRECISE_GC = yes |
| 735 | CFLAGS = $(CFLAGS) -DMZ_PRECISE_GC |
| 736 | !endif |
Bram Moolenaar | aab21c3 | 2005-01-25 21:46:35 +0000 | [diff] [blame] | 737 | !if "$(DYNAMIC_MZSCHEME)" == "yes" |
Bram Moolenaar | 9e70cf1 | 2009-05-26 20:59:55 +0000 | [diff] [blame] | 738 | !if "$(MZSCHEME_PRECISE_GC)" == "yes" |
| 739 | !error MzScheme with Precise GC cannot be loaded dynamically |
| 740 | !endif |
Bram Moolenaar | aab21c3 | 2005-01-25 21:46:35 +0000 | [diff] [blame] | 741 | !message MzScheme DLLs will be loaded dynamically |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 742 | CFLAGS = $(CFLAGS) -DDYNAMIC_MZSCHEME \ |
Bram Moolenaar | 2d0860d | 2010-11-03 21:59:30 +0100 | [diff] [blame] | 743 | -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" \ |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 744 | -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\" |
Bram Moolenaar | aab21c3 | 2005-01-25 21:46:35 +0000 | [diff] [blame] | 745 | !else |
Bram Moolenaar | 9e70cf1 | 2009-05-26 20:59:55 +0000 | [diff] [blame] | 746 | !if "$(MZSCHEME_DEBUG)" == "yes" |
| 747 | CFLAGS = $(CFLAGS) -DMZSCHEME_FORCE_GC |
| 748 | !endif |
| 749 | !if "$(MZSCHEME_PRECISE_GC)" == "yes" |
| 750 | # Precise GC does not use separate dll |
Bram Moolenaar | 2d0860d | 2010-11-03 21:59:30 +0100 | [diff] [blame] | 751 | MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib |
Bram Moolenaar | 9e70cf1 | 2009-05-26 20:59:55 +0000 | [diff] [blame] | 752 | !else |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 753 | MZSCHEME_LIB = $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib \ |
Bram Moolenaar | 2d0860d | 2010-11-03 21:59:30 +0100 | [diff] [blame] | 754 | $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 755 | !endif |
Bram Moolenaar | 9e70cf1 | 2009-05-26 20:59:55 +0000 | [diff] [blame] | 756 | !endif |
Bram Moolenaar | aab21c3 | 2005-01-25 21:46:35 +0000 | [diff] [blame] | 757 | MZSCHEME_OBJ = $(OUTDIR)\if_mzsch.obj |
Bram Moolenaar | bbc98db | 2012-02-12 01:55:55 +0100 | [diff] [blame] | 758 | # increase stack size |
| 759 | MZSCHEME_LIB = $(MZSCHEME_LIB) /STACK:8388608 |
Bram Moolenaar | aab21c3 | 2005-01-25 21:46:35 +0000 | [diff] [blame] | 760 | !endif |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 761 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 762 | # Perl interface |
| 763 | !ifdef PERL |
| 764 | !ifndef PERL_VER |
| 765 | PERL_VER = 56 |
| 766 | !endif |
| 767 | !message Perl requested (version $(PERL_VER)) - root dir is "$(PERL)" |
| 768 | !if "$(DYNAMIC_PERL)" == "yes" |
| 769 | !if $(PERL_VER) >= 56 |
| 770 | !message Perl DLL will be loaded dynamically |
| 771 | !else |
| 772 | !message Dynamic loading is not supported for Perl versions earlier than 5.6.0 |
| 773 | !message Reverting to static loading... |
| 774 | !undef DYNAMIC_PERL |
| 775 | !endif |
| 776 | !endif |
| 777 | |
| 778 | # Is Perl installed in architecture-specific directories? |
| 779 | !if exist($(PERL)\Bin\MSWin32-x86) |
| 780 | PERL_ARCH = \MSWin32-x86 |
| 781 | !endif |
| 782 | |
| 783 | PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core |
| 784 | |
| 785 | # Version-dependent stuff |
| 786 | !if $(PERL_VER) == 55 |
| 787 | PERL_LIB = $(PERL_INCDIR)\perl.lib |
| 788 | !else |
| 789 | PERL_DLL = perl$(PERL_VER).dll |
| 790 | PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib |
| 791 | !endif |
| 792 | |
| 793 | CFLAGS = $(CFLAGS) -DFEAT_PERL |
| 794 | |
| 795 | # Do we want to load Perl dynamically? |
| 796 | !if "$(DYNAMIC_PERL)" == "yes" |
| 797 | CFLAGS = $(CFLAGS) -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"$(PERL_DLL)\" |
| 798 | !undef PERL_LIB |
| 799 | !endif |
| 800 | |
| 801 | PERL_EXE = $(PERL)\Bin$(PERL_ARCH)\perl |
| 802 | PERL_INC = /I $(PERL_INCDIR) |
| 803 | PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj |
| 804 | XSUBPP = $(PERL)\lib\ExtUtils\xsubpp |
Bram Moolenaar | 52f8317 | 2011-09-14 19:01:42 +0200 | [diff] [blame] | 805 | !if exist($(XSUBPP)) |
Bram Moolenaar | 612af43 | 2011-09-14 10:49:46 +0200 | [diff] [blame] | 806 | XSUBPP = $(PERL_EXE) $(XSUBPP) |
| 807 | !else |
| 808 | XSUBPP = xsubpp |
| 809 | !endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 810 | XSUBPP_TYPEMAP = $(PERL)\lib\ExtUtils\typemap |
| 811 | |
| 812 | !endif |
| 813 | |
| 814 | # |
| 815 | # Support Ruby interface |
| 816 | # |
| 817 | !ifdef RUBY |
| 818 | # Set default value |
| 819 | !ifndef RUBY_VER |
| 820 | RUBY_VER = 18 |
| 821 | !endif |
| 822 | !ifndef RUBY_VER_LONG |
| 823 | RUBY_VER_LONG = 1.8 |
| 824 | !endif |
Bram Moolenaar | da3cb83 | 2012-08-02 21:21:47 +0200 | [diff] [blame] | 825 | !ifndef RUBY_API_VER |
| 826 | RUBY_API_VER = $(RUBY_VER_LONG:.=) |
| 827 | !endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 828 | |
| 829 | !if $(RUBY_VER) >= 18 |
| 830 | !ifndef RUBY_PLATFORM |
| 831 | RUBY_PLATFORM = i386-mswin32 |
| 832 | !endif |
| 833 | !ifndef RUBY_INSTALL_NAME |
Bram Moolenaar | da3cb83 | 2012-08-02 21:21:47 +0200 | [diff] [blame] | 834 | RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_API_VER) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 835 | !endif |
| 836 | !else |
| 837 | !ifndef RUBY_PLATFORM |
| 838 | RUBY_PLATFORM = i586-mswin32 |
| 839 | !endif |
| 840 | !ifndef RUBY_INSTALL_NAME |
Bram Moolenaar | da3cb83 | 2012-08-02 21:21:47 +0200 | [diff] [blame] | 841 | RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 842 | !endif |
| 843 | !endif # $(RUBY_VER) >= 18 |
| 844 | |
| 845 | !message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)" |
| 846 | CFLAGS = $(CFLAGS) -DFEAT_RUBY |
| 847 | RUBY_OBJ = $(OUTDIR)\if_ruby.obj |
Bram Moolenaar | da3cb83 | 2012-08-02 21:21:47 +0200 | [diff] [blame] | 848 | !if $(RUBY_VER) >= 19 |
| 849 | RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" /I "$(RUBY)\include\ruby-$(RUBY_VER_LONG)" /I "$(RUBY)\include\ruby-$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" |
Bram Moolenaar | 69154f2 | 2010-07-18 21:42:34 +0200 | [diff] [blame] | 850 | !else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 851 | RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" |
Bram Moolenaar | 69154f2 | 2010-07-18 21:42:34 +0200 | [diff] [blame] | 852 | !endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 853 | RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib |
| 854 | # Do we want to load Ruby dynamically? |
| 855 | !if "$(DYNAMIC_RUBY)" == "yes" |
| 856 | !message Ruby DLL will be loaded dynamically |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 857 | CFLAGS = $(CFLAGS) -DDYNAMIC_RUBY -DDYNAMIC_RUBY_VER=$(RUBY_VER) \ |
| 858 | -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 859 | !undef RUBY_LIB |
| 860 | !endif |
| 861 | !endif # RUBY |
| 862 | |
| 863 | # |
| 864 | # Support PostScript printing |
| 865 | # |
| 866 | !if "$(POSTSCRIPT)" == "yes" |
| 867 | CFLAGS = $(CFLAGS) -DMSWINPS |
| 868 | !endif # POSTSCRIPT |
| 869 | |
| 870 | # |
| 871 | # FEATURES: TINY, SMALL, NORMAL, BIG or HUGE |
| 872 | # |
| 873 | !if "$(FEATURES)"=="" |
| 874 | FEATURES = BIG |
| 875 | !endif |
| 876 | CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES) |
| 877 | |
| 878 | # |
Bram Moolenaar | d9d3058 | 2005-05-18 22:10:28 +0000 | [diff] [blame] | 879 | # Always generate the .pdb file, so that we get debug symbols that can be used |
| 880 | # on a crash (doesn't add overhead to the executable). |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 881 | # Generate edit-and-continue debug info when no optimization - allows to |
| 882 | # debug more conveniently (able to look at variables which are in registers) |
Bram Moolenaar | d9d3058 | 2005-05-18 22:10:28 +0000 | [diff] [blame] | 883 | # |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 884 | CFLAGS = $(CFLAGS) /Fd$(OUTDIR)/ $(DEBUGINFO) |
| 885 | LINK_PDB = /PDB:$(VIM).pdb -debug |
Bram Moolenaar | d9d3058 | 2005-05-18 22:10:28 +0000 | [diff] [blame] | 886 | |
| 887 | # |
| 888 | # End extra feature include |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 889 | # |
| 890 | !message |
| 891 | |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 892 | conflags = /nologo /subsystem:$(SUBSYSTEM) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 893 | |
Bram Moolenaar | 8b6144b | 2006-02-08 09:20:24 +0000 | [diff] [blame] | 894 | PATHDEF_SRC = $(OUTDIR)\pathdef.c |
| 895 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 896 | !IF "$(MAP)" == "yes" |
| 897 | # "/map" is for debugging |
| 898 | conflags = $(conflags) /map |
| 899 | !ELSEIF "$(MAP)" == "lines" |
| 900 | # "/mapinfo:lines" is for debugging, only works for VC6 and later |
| 901 | conflags = $(conflags) /map /mapinfo:lines |
| 902 | !ENDIF |
| 903 | |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 904 | LINKARGS1 = $(linkdebug) $(conflags) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 905 | LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(LIBC) $(OLE_LIB) user32.lib $(SNIFF_LIB) \ |
Bram Moolenaar | bd5e15f | 2010-07-17 21:19:38 +0200 | [diff] [blame] | 906 | $(LUA_LIB) $(MZSCHEME_LIB) $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(RUBY_LIB) \ |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 907 | $(TCL_LIB) $(NETBEANS_LIB) $(XPM_LIB) $(LINK_PDB) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 908 | |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 909 | # Report link time code generation progress if used. |
| 910 | !ifdef NODEBUG |
Bram Moolenaar | da2f99a | 2009-06-16 14:34:38 +0000 | [diff] [blame] | 911 | !if ("$(MSVCVER)" == "8.0") || ("$(MSVCVER)" == "9.0") || ("$(MSVCVER)" == "10.0") |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 912 | !if "$(OPTIMIZE)" != "SPACE" |
| 913 | LINKARGS1 = $(LINKARGS1) /LTCG:STATUS |
| 914 | !endif |
| 915 | !endif |
| 916 | !endif |
| 917 | |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 918 | all: $(VIM).exe vimrun.exe install.exe uninstal.exe xxd/xxd.exe \ |
| 919 | GvimExt/gvimext.dll |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 920 | |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 921 | $(VIM).exe: $(OUTDIR) $(OBJ) $(GUI_OBJ) $(OLE_OBJ) $(OLE_IDL) $(MZSCHEME_OBJ) \ |
Bram Moolenaar | bd5e15f | 2010-07-17 21:19:38 +0200 | [diff] [blame] | 922 | $(LUA_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) $(TCL_OBJ) \ |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 923 | $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) $(XPM_OBJ) \ |
| 924 | version.c version.h |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 925 | $(CC) $(CFLAGS) version.c |
Bram Moolenaar | 0dc065e | 2005-07-04 22:49:24 +0000 | [diff] [blame] | 926 | $(link) $(LINKARGS1) -out:$(VIM).exe $(OBJ) $(GUI_OBJ) $(OLE_OBJ) \ |
Bram Moolenaar | bd5e15f | 2010-07-17 21:19:38 +0200 | [diff] [blame] | 927 | $(LUA_OBJ) $(MZSCHEME_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(PYTHON3_OBJ) $(RUBY_OBJ) \ |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 928 | $(TCL_OBJ) $(SNIFF_OBJ) $(CSCOPE_OBJ) $(NETBEANS_OBJ) \ |
| 929 | $(XPM_OBJ) $(OUTDIR)\version.obj $(LINKARGS2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 930 | |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 931 | $(VIM): $(VIM).exe |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 932 | |
| 933 | $(OUTDIR): |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 934 | if not exist $(OUTDIR)/nul mkdir $(OUTDIR) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 935 | |
| 936 | install.exe: dosinst.c |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 937 | $(CC) /nologo -DNDEBUG -DWIN32 dosinst.c kernel32.lib shell32.lib \ |
Bram Moolenaar | b230bd5 | 2010-05-25 21:02:00 +0200 | [diff] [blame] | 938 | user32.lib ole32.lib advapi32.lib uuid.lib |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 939 | - if exist install.exe del install.exe |
| 940 | ren dosinst.exe install.exe |
| 941 | |
| 942 | uninstal.exe: uninstal.c |
| 943 | $(CC) /nologo -DNDEBUG -DWIN32 uninstal.c shell32.lib advapi32.lib |
| 944 | |
| 945 | vimrun.exe: vimrun.c |
| 946 | $(CC) /nologo -DNDEBUG vimrun.c |
| 947 | |
| 948 | xxd/xxd.exe: xxd/xxd.c |
| 949 | cd xxd |
| 950 | $(MAKE) /NOLOGO -f Make_mvc.mak |
| 951 | cd .. |
| 952 | |
| 953 | GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h |
| 954 | cd GvimExt |
| 955 | $(MAKE) /NOLOGO -f Makefile $(MAKEFLAGS_GVIMEXT) |
| 956 | cd .. |
| 957 | |
| 958 | |
| 959 | tags: notags |
| 960 | $(CTAGS) *.c *.cpp *.h if_perl.xs proto\*.pro |
| 961 | |
| 962 | notags: |
| 963 | - if exist tags del tags |
| 964 | |
| 965 | clean: |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 966 | - if exist $(OUTDIR)/nul $(DEL_TREE) $(OUTDIR) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 967 | - if exist *.obj del *.obj |
| 968 | - if exist $(VIM).exe del $(VIM).exe |
| 969 | - if exist $(VIM).ilk del $(VIM).ilk |
| 970 | - if exist $(VIM).pdb del $(VIM).pdb |
| 971 | - if exist $(VIM).map del $(VIM).map |
| 972 | - if exist $(VIM).ncb del $(VIM).ncb |
| 973 | - if exist vimrun.exe del vimrun.exe |
| 974 | - if exist install.exe del install.exe |
| 975 | - if exist uninstal.exe del uninstal.exe |
| 976 | - if exist if_perl.c del if_perl.c |
| 977 | - if exist dimm.h del dimm.h |
| 978 | - if exist dimm_i.c del dimm_i.c |
| 979 | - if exist dimm.tlb del dimm.tlb |
| 980 | - if exist dosinst.exe del dosinst.exe |
Bram Moolenaar | 2d6db76 | 2009-09-11 10:49:58 +0000 | [diff] [blame] | 981 | - if exist mzscheme_base.c del mzscheme_base.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 982 | cd xxd |
| 983 | $(MAKE) /NOLOGO -f Make_mvc.mak clean |
| 984 | cd .. |
| 985 | cd GvimExt |
| 986 | $(MAKE) /NOLOGO -f Makefile clean |
| 987 | cd .. |
| 988 | cd GvimExt |
| 989 | $(MAKE) /NOLOGO -f Makefile clean |
| 990 | cd .. |
| 991 | - if exist testdir\*.out del testdir\*.out |
| 992 | |
| 993 | test: |
| 994 | cd testdir |
| 995 | $(MAKE) /NOLOGO -f Make_dos.mak win32 |
| 996 | cd .. |
| 997 | |
Bram Moolenaar | 3411469 | 2005-01-02 11:28:13 +0000 | [diff] [blame] | 998 | testclean: |
| 999 | cd testdir |
| 1000 | $(MAKE) /NOLOGO -f Make_dos.mak clean |
| 1001 | cd .. |
| 1002 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1003 | ########################################################################### |
| 1004 | |
| 1005 | # Create a default rule for transforming .c files to .obj files in $(OUTDIR) |
| 1006 | # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later) |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 1007 | !IF "$(MSVCVER)" == "4.0" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1008 | .c{$(OUTDIR)/}.obj: |
| 1009 | !ELSE |
| 1010 | .c{$(OUTDIR)/}.obj:: |
| 1011 | !ENDIF |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1012 | $(CC) $(CFLAGS) $< |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1013 | |
| 1014 | # Create a default rule for transforming .cpp files to .obj files in $(OUTDIR) |
| 1015 | # Batch compilation is supported by nmake 1.62 (part of VS 5.0) and later) |
Bram Moolenaar | f22129b | 2007-10-03 11:29:44 +0000 | [diff] [blame] | 1016 | !IF "$(MSVCVER)" == "4.0" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1017 | .cpp{$(OUTDIR)/}.obj: |
| 1018 | !ELSE |
| 1019 | .cpp{$(OUTDIR)/}.obj:: |
| 1020 | !ENDIF |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1021 | $(CC) $(CFLAGS) $< |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1022 | |
Bram Moolenaar | 40e6a71 | 2010-05-16 22:32:54 +0200 | [diff] [blame] | 1023 | $(OUTDIR)/blowfish.obj: $(OUTDIR) blowfish.c $(INCL) |
| 1024 | |
Bram Moolenaar | edac185 | 2010-05-18 20:34:20 +0200 | [diff] [blame] | 1025 | $(OUTDIR)/buffer.obj: $(OUTDIR) buffer.c $(INCL) |
Bram Moolenaar | 40e6a71 | 2010-05-16 22:32:54 +0200 | [diff] [blame] | 1026 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1027 | $(OUTDIR)/charset.obj: $(OUTDIR) charset.c $(INCL) |
| 1028 | |
| 1029 | $(OUTDIR)/diff.obj: $(OUTDIR) diff.c $(INCL) |
| 1030 | |
| 1031 | $(OUTDIR)/digraph.obj: $(OUTDIR) digraph.c $(INCL) |
| 1032 | |
| 1033 | $(OUTDIR)/edit.obj: $(OUTDIR) edit.c $(INCL) |
| 1034 | |
| 1035 | $(OUTDIR)/eval.obj: $(OUTDIR) eval.c $(INCL) |
| 1036 | |
| 1037 | $(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL) |
| 1038 | |
| 1039 | $(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL) |
| 1040 | |
| 1041 | $(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmds.h |
| 1042 | |
| 1043 | $(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) ex_cmds.h |
| 1044 | |
| 1045 | $(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL) |
| 1046 | |
| 1047 | $(OUTDIR)/fileio.obj: $(OUTDIR) fileio.c $(INCL) |
| 1048 | |
| 1049 | $(OUTDIR)/fold.obj: $(OUTDIR) fold.c $(INCL) |
| 1050 | |
| 1051 | $(OUTDIR)/getchar.obj: $(OUTDIR) getchar.c $(INCL) |
| 1052 | |
Bram Moolenaar | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 1053 | $(OUTDIR)/hardcopy.obj: $(OUTDIR) hardcopy.c $(INCL) |
| 1054 | |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 1055 | $(OUTDIR)/hashtab.obj: $(OUTDIR) hashtab.c $(INCL) |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 1056 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1057 | $(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL) |
| 1058 | |
Bram Moolenaar | 52b4b55 | 2005-03-07 23:00:57 +0000 | [diff] [blame] | 1059 | $(OUTDIR)/gui_beval.obj: $(OUTDIR) gui_beval.c $(INCL) $(GUI_INCL) |
| 1060 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1061 | $(OUTDIR)/gui_w32.obj: $(OUTDIR) gui_w32.c gui_w48.c $(INCL) $(GUI_INCL) |
| 1062 | |
| 1063 | $(OUTDIR)/if_cscope.obj: $(OUTDIR) if_cscope.c $(INCL) |
| 1064 | |
Bram Moolenaar | 0ba0429 | 2010-07-14 23:23:17 +0200 | [diff] [blame] | 1065 | $(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL) |
| 1066 | $(CC) $(CFLAGS) $(LUA_INC) if_lua.c |
| 1067 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1068 | if_perl.c : if_perl.xs typemap |
Bram Moolenaar | 612af43 | 2011-09-14 10:49:46 +0200 | [diff] [blame] | 1069 | $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \ |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1070 | -typemap typemap if_perl.xs > if_perl.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1071 | |
| 1072 | $(OUTDIR)/if_perl.obj: $(OUTDIR) if_perl.c $(INCL) |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1073 | $(CC) $(CFLAGS) $(PERL_INC) if_perl.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1074 | |
| 1075 | $(OUTDIR)/if_perlsfio.obj: $(OUTDIR) if_perlsfio.c $(INCL) |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1076 | $(CC) $(CFLAGS) $(PERL_INC) if_perlsfio.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1077 | |
Bram Moolenaar | 9e70cf1 | 2009-05-26 20:59:55 +0000 | [diff] [blame] | 1078 | $(OUTDIR)/if_mzsch.obj: $(OUTDIR) if_mzsch.c $(INCL) $(MZSCHEME_EXTRA_DEP) |
Bram Moolenaar | 6a9aa37 | 2005-07-20 21:54:57 +0000 | [diff] [blame] | 1079 | $(CC) $(CFLAGS) if_mzsch.c \ |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1080 | -DMZSCHEME_COLLECTS=\"$(MZSCHEME:\=\\)\\collects\" |
Bram Moolenaar | 9e70cf1 | 2009-05-26 20:59:55 +0000 | [diff] [blame] | 1081 | mzscheme_base.c: |
| 1082 | $(MZSCHEME)\mzc --c-mods mzscheme_base.c ++lib scheme/base |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1083 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1084 | $(OUTDIR)/if_python.obj: $(OUTDIR) if_python.c $(INCL) |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1085 | $(CC) $(CFLAGS) $(PYTHON_INC) if_python.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1086 | |
Bram Moolenaar | bd5e15f | 2010-07-17 21:19:38 +0200 | [diff] [blame] | 1087 | $(OUTDIR)/if_python3.obj: $(OUTDIR) if_python3.c $(INCL) |
| 1088 | $(CC) $(CFLAGS) $(PYTHON3_INC) if_python3.c |
| 1089 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1090 | $(OUTDIR)/if_ole.obj: $(OUTDIR) if_ole.cpp $(INCL) if_ole.h |
| 1091 | |
| 1092 | $(OUTDIR)/if_ruby.obj: $(OUTDIR) if_ruby.c $(INCL) |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1093 | $(CC) $(CFLAGS) $(RUBY_INC) if_ruby.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1094 | |
| 1095 | $(OUTDIR)/if_sniff.obj: $(OUTDIR) if_sniff.c $(INCL) |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1096 | $(CC) $(CFLAGS) if_sniff.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1097 | |
| 1098 | $(OUTDIR)/if_tcl.obj: $(OUTDIR) if_tcl.c $(INCL) |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1099 | $(CC) $(CFLAGS) $(TCL_INC) if_tcl.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1100 | |
| 1101 | $(OUTDIR)/main.obj: $(OUTDIR) main.c $(INCL) |
| 1102 | |
| 1103 | $(OUTDIR)/mark.obj: $(OUTDIR) mark.c $(INCL) |
| 1104 | |
| 1105 | $(OUTDIR)/memfile.obj: $(OUTDIR) memfile.c $(INCL) |
| 1106 | |
| 1107 | $(OUTDIR)/memline.obj: $(OUTDIR) memline.c $(INCL) |
| 1108 | |
| 1109 | $(OUTDIR)/menu.obj: $(OUTDIR) menu.c $(INCL) |
| 1110 | |
| 1111 | $(OUTDIR)/message.obj: $(OUTDIR) message.c $(INCL) |
| 1112 | |
| 1113 | $(OUTDIR)/misc1.obj: $(OUTDIR) misc1.c $(INCL) |
| 1114 | |
| 1115 | $(OUTDIR)/misc2.obj: $(OUTDIR) misc2.c $(INCL) |
| 1116 | |
| 1117 | $(OUTDIR)/move.obj: $(OUTDIR) move.c $(INCL) |
| 1118 | |
| 1119 | $(OUTDIR)/mbyte.obj: $(OUTDIR) mbyte.c $(INCL) |
| 1120 | |
| 1121 | $(OUTDIR)/netbeans.obj: $(OUTDIR) netbeans.c $(NBDEBUG_SRC) $(INCL) |
| 1122 | |
| 1123 | $(OUTDIR)/normal.obj: $(OUTDIR) normal.c $(INCL) |
| 1124 | |
| 1125 | $(OUTDIR)/option.obj: $(OUTDIR) option.c $(INCL) |
| 1126 | |
| 1127 | $(OUTDIR)/ops.obj: $(OUTDIR) ops.c $(INCL) |
| 1128 | |
| 1129 | $(OUTDIR)/os_mswin.obj: $(OUTDIR) os_mswin.c $(INCL) |
| 1130 | |
| 1131 | $(OUTDIR)/os_win32.obj: $(OUTDIR) os_win32.c $(INCL) os_win32.h |
| 1132 | |
| 1133 | $(OUTDIR)/os_w32exe.obj: $(OUTDIR) os_w32exe.c $(INCL) |
| 1134 | |
Bram Moolenaar | 8b6144b | 2006-02-08 09:20:24 +0000 | [diff] [blame] | 1135 | $(OUTDIR)/pathdef.obj: $(OUTDIR) $(PATHDEF_SRC) $(INCL) |
| 1136 | $(CC) $(CFLAGS) $(PATHDEF_SRC) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1137 | |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 1138 | $(OUTDIR)/popupmnu.obj: $(OUTDIR) popupmnu.c $(INCL) |
Bram Moolenaar | bb15b65 | 2005-10-03 21:52:09 +0000 | [diff] [blame] | 1139 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1140 | $(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL) |
| 1141 | |
| 1142 | $(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c $(INCL) |
| 1143 | |
| 1144 | $(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL) |
| 1145 | |
| 1146 | $(OUTDIR)/search.obj: $(OUTDIR) search.c $(INCL) |
| 1147 | |
Bram Moolenaar | edac185 | 2010-05-18 20:34:20 +0200 | [diff] [blame] | 1148 | $(OUTDIR)/sha256.obj: $(OUTDIR) sha256.c $(INCL) |
| 1149 | |
Bram Moolenaar | 2e4096b | 2005-03-20 22:25:45 +0000 | [diff] [blame] | 1150 | $(OUTDIR)/spell.obj: $(OUTDIR) spell.c $(INCL) |
| 1151 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1152 | $(OUTDIR)/syntax.obj: $(OUTDIR) syntax.c $(INCL) |
| 1153 | |
| 1154 | $(OUTDIR)/tag.obj: $(OUTDIR) tag.c $(INCL) |
| 1155 | |
| 1156 | $(OUTDIR)/term.obj: $(OUTDIR) term.c $(INCL) |
| 1157 | |
| 1158 | $(OUTDIR)/ui.obj: $(OUTDIR) ui.c $(INCL) |
| 1159 | |
| 1160 | $(OUTDIR)/undo.obj: $(OUTDIR) undo.c $(INCL) |
| 1161 | |
| 1162 | $(OUTDIR)/window.obj: $(OUTDIR) window.c $(INCL) |
| 1163 | |
| 1164 | $(OUTDIR)/xpm_w32.obj: $(OUTDIR) xpm_w32.c |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1165 | $(CC) $(CFLAGS) $(XPM_INC) xpm_w32.c |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1166 | |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 1167 | $(OUTDIR)/vim.res: $(OUTDIR) vim.rc gvim.exe.mnf version.h tools.bmp \ |
| 1168 | tearoff.bmp vim.ico vim_error.ico \ |
| 1169 | vim_alert.ico vim_info.ico vim_quest.ico |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1170 | $(RC) /l 0x409 /Fo$(OUTDIR)/vim.res $(RCFLAGS) vim.rc |
| 1171 | |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 1172 | iid_ole.c if_ole.h vim.tlb: if_ole.idl |
Bram Moolenaar | b635633 | 2005-07-18 21:40:44 +0000 | [diff] [blame] | 1173 | midl /nologo /error none /proxy nul /iid iid_ole.c /tlb vim.tlb \ |
| 1174 | /header if_ole.h if_ole.idl |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1175 | |
| 1176 | dimm.h dimm_i.c: dimm.idl |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 1177 | midl /nologo /error none /proxy nul dimm.idl |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1178 | |
| 1179 | $(OUTDIR)/dimm_i.obj: $(OUTDIR) dimm_i.c $(INCL) |
| 1180 | |
| 1181 | $(OUTDIR)/glbl_ime.obj: $(OUTDIR) glbl_ime.cpp dimm.h $(INCL) |
| 1182 | |
Bram Moolenaar | 89cb5e0 | 2004-07-19 20:55:54 +0000 | [diff] [blame] | 1183 | # $CFLAGS may contain backslashes and double quotes, escape them both. |
| 1184 | E0_CFLAGS = $(CFLAGS:\=\\) |
| 1185 | E_CFLAGS = $(E0_CFLAGS:"=\") |
Bram Moolenaar | 77f66d6 | 2007-02-20 02:16:18 +0000 | [diff] [blame] | 1186 | # ") stop the string |
Bram Moolenaar | c30846f | 2011-02-15 18:06:15 +0100 | [diff] [blame] | 1187 | # $LINKARGS2 may contain backslashes and double quotes, escape them both. |
| 1188 | E0_LINKARGS2 = $(LINKARGS2:\=\\) |
| 1189 | E_LINKARGS2 = $(E0_LINKARGS2:"=\") |
| 1190 | # ") stop the string |
Bram Moolenaar | 89cb5e0 | 2004-07-19 20:55:54 +0000 | [diff] [blame] | 1191 | |
Bram Moolenaar | 8b6144b | 2006-02-08 09:20:24 +0000 | [diff] [blame] | 1192 | $(PATHDEF_SRC): auto |
| 1193 | @echo creating $(PATHDEF_SRC) |
| 1194 | @echo /* pathdef.c */ > $(PATHDEF_SRC) |
| 1195 | @echo #include "vim.h" >> $(PATHDEF_SRC) |
| 1196 | @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC:\=\\)"; >> $(PATHDEF_SRC) |
| 1197 | @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR:\=\\)"; >> $(PATHDEF_SRC) |
| 1198 | @echo char_u *all_cflags = (char_u *)"$(CC:\=\\) $(E_CFLAGS)"; >> $(PATHDEF_SRC) |
Bram Moolenaar | c30846f | 2011-02-15 18:06:15 +0100 | [diff] [blame] | 1199 | @echo char_u *all_lflags = (char_u *)"$(link:\=\\) $(LINKARGS1:\=\\) $(E_LINKARGS2)"; >> $(PATHDEF_SRC) |
Bram Moolenaar | 8b6144b | 2006-02-08 09:20:24 +0000 | [diff] [blame] | 1200 | @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> $(PATHDEF_SRC) |
| 1201 | @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> $(PATHDEF_SRC) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1202 | |
| 1203 | auto: |
| 1204 | if not exist auto/nul mkdir auto |
| 1205 | |
| 1206 | # End Custom Build |
| 1207 | proto.h: \ |
Bram Moolenaar | 40e6a71 | 2010-05-16 22:32:54 +0200 | [diff] [blame] | 1208 | proto/blowfish.pro \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1209 | proto/buffer.pro \ |
| 1210 | proto/charset.pro \ |
| 1211 | proto/diff.pro \ |
| 1212 | proto/digraph.pro \ |
| 1213 | proto/edit.pro \ |
| 1214 | proto/eval.pro \ |
| 1215 | proto/ex_cmds.pro \ |
| 1216 | proto/ex_cmds2.pro \ |
| 1217 | proto/ex_docmd.pro \ |
| 1218 | proto/ex_eval.pro \ |
| 1219 | proto/ex_getln.pro \ |
| 1220 | proto/fileio.pro \ |
| 1221 | proto/getchar.pro \ |
Bram Moolenaar | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 1222 | proto/hardcopy.pro \ |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 1223 | proto/hashtab.pro \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1224 | proto/main.pro \ |
| 1225 | proto/mark.pro \ |
| 1226 | proto/memfile.pro \ |
| 1227 | proto/memline.pro \ |
| 1228 | proto/menu.pro \ |
| 1229 | proto/message.pro \ |
| 1230 | proto/misc1.pro \ |
| 1231 | proto/misc2.pro \ |
| 1232 | proto/move.pro \ |
| 1233 | proto/mbyte.pro \ |
| 1234 | proto/normal.pro \ |
| 1235 | proto/ops.pro \ |
| 1236 | proto/option.pro \ |
| 1237 | proto/os_mswin.pro \ |
| 1238 | proto/os_win32.pro \ |
Bram Moolenaar | c01140a | 2006-03-24 22:21:52 +0000 | [diff] [blame] | 1239 | proto/popupmnu.pro \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1240 | proto/quickfix.pro \ |
| 1241 | proto/regexp.pro \ |
| 1242 | proto/screen.pro \ |
| 1243 | proto/search.pro \ |
Bram Moolenaar | 40e6a71 | 2010-05-16 22:32:54 +0200 | [diff] [blame] | 1244 | proto/sha256.pro \ |
Bram Moolenaar | 2e4096b | 2005-03-20 22:25:45 +0000 | [diff] [blame] | 1245 | proto/spell.pro \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1246 | proto/syntax.pro \ |
| 1247 | proto/tag.pro \ |
| 1248 | proto/term.pro \ |
| 1249 | proto/ui.pro \ |
| 1250 | proto/undo.pro \ |
| 1251 | proto/window.pro \ |
| 1252 | $(NETBEANS_PRO) |
| 1253 | |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 1254 | .SUFFIXES: .cod .i |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 1255 | |
| 1256 | # Generate foo.cod (mixed source and assembly listing) from foo.c via "nmake |
| 1257 | # foo.cod" |
| 1258 | .c.cod: |
| 1259 | $(CC) $(CFLAGS) /FAcs $< |
| 1260 | |
| 1261 | # Generate foo.i (preprocessor listing) from foo.c via "nmake foo.i" |
| 1262 | .c.i: |
| 1263 | $(CC) $(CFLAGS) /P /C $< |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1264 | |
| 1265 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1266 | # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: |