Mercurial > vim
annotate src/Make_cyg_ming.mak @ 10196:66658966ac2e v7.4.2367
commit https://github.com/vim/vim/commit/edeb846c1f04a49466992077eaea3396838bf4fd
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Sep 12 13:32:02 2016 +0200
patch 7.4.2367
Problem: Test runner misses a comma.
Solution: Add the comma.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 12 Sep 2016 13:45:06 +0200 |
parents | cd9823840f2e |
children | 70680eba1940 |
rev | line source |
---|---|
6326 | 1 # Makefile for VIM on Win32 (Cygwin and MinGW) |
2 # | |
3 # This file contains common part for Cygwin and MinGW and it is included | |
4 # from Make_cyg.mak and Make_ming.mak. | |
5 # | |
6 # Info at http://www.mingw.org | |
7 # Alternative x86 and 64-builds: http://mingw-w64.sourceforge.net | |
8 # Also requires GNU make, which you can download from the same sites. | |
9 # Get missing libraries from http://gnuwin32.sf.net. | |
10 # | |
11 # Tested on Win32 NT 4 and Win95. | |
12 # | |
13 # To make everything, just 'make -f Make_ming.mak'. | |
14 # To make just e.g. gvim.exe, 'make -f Make_ming.mak gvim.exe'. | |
15 # After a run, you can 'make -f Make_ming.mak clean' to clean up. | |
16 # | |
17 # NOTE: Sometimes 'GNU Make' will stop after building vimrun.exe -- I think | |
18 # it's just run out of memory or something. Run again, and it will continue | |
19 # with 'xxd'. | |
20 # | |
21 # "make upx" makes *compressed* versions of the 32 bit GUI and console EXEs, | |
22 # using the excellent UPX compressor: | |
23 # http://upx.sourceforge.net/ | |
24 # "make mpress" uses the MPRESS compressor for 32- and 64-bit EXEs: | |
25 # http://www.matcode.com/mpress.htm | |
26 # | |
27 # Maintained by Ron Aaron <ronaharon@yahoo.com> et al. | |
28 # Updated 2014 Oct 13. | |
29 | |
30 #>>>>> choose options: | |
31 # set to yes for a debug build | |
32 DEBUG=no | |
33 # set to SIZE for size, SPEED for speed, MAXSPEED for maximum optimization | |
34 OPTIMIZE=MAXSPEED | |
35 # set to yes to make gvim, no for vim | |
36 GUI=yes | |
37 # set to yes if you want to use DirectWrite (DirectX) | |
38 # MinGW-w64 is needed, and ARCH should be set to i686 or x86-64. | |
39 DIRECTX=no | |
40 # FEATURES=[TINY | SMALL | NORMAL | BIG | HUGE] | |
41 # Set to TINY to make minimal version (few features). | |
7699
854302b82ff9
commit https://github.com/vim/vim/commit/e5f2be61595fbbba77261f3bf1e032fe03a1966d
Christian Brabandt <cb@256bit.org>
parents:
7695
diff
changeset
|
42 FEATURES=HUGE |
6326 | 43 # Set to one of i386, i486, i586, i686 as the minimum target processor. |
44 # For amd64/x64 architecture set ARCH=x86-64 . | |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
45 # If not set, it will be automatically detected. (Normally i686 or x86-64.) |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
46 #ARCH=i686 |
6326 | 47 # Set to yes to cross-compile from unix; no=native Windows (and Cygwin). |
48 CROSS=no | |
49 # Set to path to iconv.h and libiconv.a to enable using 'iconv.dll'. | |
50 #ICONV="." | |
51 ICONV=yes | |
52 GETTEXT=yes | |
53 # Set to yes to include multibyte support. | |
54 MBYTE=yes | |
55 # Set to yes to include IME support. | |
56 IME=yes | |
57 DYNAMIC_IME=yes | |
58 # Set to yes to enable writing a postscript file with :hardcopy. | |
59 POSTSCRIPT=no | |
60 # Set to yes to enable OLE support. | |
61 OLE=no | |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
62 # Set the default $(WINVER) to make it work with WinXP. |
6326 | 63 ifndef WINVER |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
64 WINVER = 0x0501 |
6326 | 65 endif |
66 # Set to yes to enable Cscope support. | |
67 CSCOPE=yes | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
68 # Set to yes to enable Netbeans support (requires CHANNEL). |
6326 | 69 NETBEANS=$(GUI) |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
70 # Set to yes to enable inter process communication. |
9203
c096095ad9fb
commit https://github.com/vim/vim/commit/1aa07bdead2e93501c54591e31fe73b9b09c58b5
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
71 ifeq (HUGE, $(FEATURES)) |
c096095ad9fb
commit https://github.com/vim/vim/commit/1aa07bdead2e93501c54591e31fe73b9b09c58b5
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
72 CHANNEL=yes |
c096095ad9fb
commit https://github.com/vim/vim/commit/1aa07bdead2e93501c54591e31fe73b9b09c58b5
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
73 else |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
74 CHANNEL=$(GUI) |
9203
c096095ad9fb
commit https://github.com/vim/vim/commit/1aa07bdead2e93501c54591e31fe73b9b09c58b5
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
75 endif |
6326 | 76 |
77 | |
78 # Link against the shared version of libstdc++ by default. Set | |
79 # STATIC_STDCPLUS to "yes" to link against static version instead. | |
80 ifndef STATIC_STDCPLUS | |
81 STATIC_STDCPLUS=no | |
82 endif | |
83 | |
84 # If the user doesn't want gettext, undefine it. | |
85 ifeq (no, $(GETTEXT)) | |
86 GETTEXT= | |
87 endif | |
88 # Added by E.F. Amatria <eferna1@platea.ptic.mec.es> 2001 Feb 23 | |
89 # Uncomment the first line and one of the following three if you want Native Language | |
90 # Support. You'll need gnu_gettext.win32, a MINGW32 Windows PORT of gettext by | |
91 # Franco Bez <franco.bez@gmx.de>. It may be found at | |
92 # http://home.a-city.de/franco.bez/gettext/gettext_win32_en.html | |
93 # Tested with mingw32 with GCC-2.95.2 on Win98 | |
94 # Updated 2001 Jun 9 | |
95 #GETTEXT=c:/gettext.win32.msvcrt | |
96 #STATIC_GETTEXT=USE_STATIC_GETTEXT | |
97 #DYNAMIC_GETTEXT=USE_GETTEXT_DLL | |
98 #DYNAMIC_GETTEXT=USE_SAFE_GETTEXT_DLL | |
99 SAFE_GETTEXT_DLL_OBJ = $(GETTEXT)/src/safe_gettext_dll/safe_gettext_dll.o | |
100 # Alternatively, if you uncomment the two following lines, you get a "safe" version | |
101 # without linking the safe_gettext_dll.o object file. | |
102 #DYNAMIC_GETTEXT=DYNAMIC_GETTEXT | |
103 #GETTEXT_DYNAMIC=gnu_gettext.dll | |
104 INTLPATH=$(GETTEXT)/lib/mingw32 | |
105 INTLLIB=gnu_gettext | |
106 | |
107 # If you are using gettext-0.10.35 from http://sourceforge.net/projects/gettext | |
108 # or gettext-0.10.37 from http://sourceforge.net/projects/mingwrep/ | |
109 # uncomment the following, but I can't build a static version with them, ?-(| | |
110 #GETTEXT=c:/gettext-0.10.37-20010430 | |
111 #STATIC_GETTEXT=USE_STATIC_GETTEXT | |
112 #DYNAMIC_GETTEXT=DYNAMIC_GETTEXT | |
113 #INTLPATH=$(GETTEXT)/lib | |
114 #INTLLIB=intl | |
115 | |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
116 |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
117 # Command definitions (depends on cross-compiling and shell) |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
118 ifeq ($(CROSS),yes) |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
119 # cross-compiler prefix: |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
120 ifndef CROSS_COMPILE |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
121 CROSS_COMPILE = i586-pc-mingw32msvc- |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
122 endif |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
123 DEL = rm |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
124 MKDIR = mkdir -p |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
125 DIRSLASH = / |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
126 else |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
127 # normal (Windows) compilation: |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
128 ifndef CROSS_COMPILE |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
129 CROSS_COMPILE = |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
130 endif |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
131 ifneq (sh.exe, $(SHELL)) |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
132 DEL = rm |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
133 MKDIR = mkdir -p |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
134 DIRSLASH = / |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
135 else |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
136 DEL = del |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
137 MKDIR = mkdir |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
138 DIRSLASH = \\ |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
139 endif |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
140 endif |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
141 CC := $(CROSS_COMPILE)gcc |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
142 CXX := $(CROSS_COMPILE)g++ |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
143 ifeq ($(UNDER_CYGWIN),yes) |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
144 WINDRES := $(CROSS_COMPILE)windres |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
145 else |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
146 WINDRES := windres |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
147 endif |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
148 WINDRES_CC = $(CC) |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
149 |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
150 # Get the default ARCH. |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
151 ifndef ARCH |
9507
5376c8008b3a
commit https://github.com/vim/vim/commit/f62e797ffa6ab5d4c476b4c9e9a1f7f852910652
Christian Brabandt <cb@256bit.org>
parents:
9503
diff
changeset
|
152 ARCH := $(shell $(CC) -dumpmachine | sed -e 's/-.*//' -e 's/_/-/' -e 's/^mingw32$$/i686/') |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
153 endif |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
154 |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
155 |
6326 | 156 # Perl interface: |
157 # PERL=[Path to Perl directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
158 # DYNAMIC_PERL=yes (to load the Perl DLL dynamically) | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
159 # PERL_VER=[Perl version, eg 56, 58, 510] (default is 524) |
6326 | 160 ifdef PERL |
161 ifndef PERL_VER | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
162 PERL_VER=524 |
6326 | 163 endif |
164 ifndef DYNAMIC_PERL | |
165 DYNAMIC_PERL=yes | |
166 endif | |
167 # on Linux, for cross-compile, it's here: | |
168 #PERLLIB=/home/ron/ActivePerl/lib | |
169 # on NT, it's here: | |
170 PERLEXE=$(PERL)/bin/perl | |
171 PERLLIB=$(PERL)/lib | |
172 PERLLIBS=$(PERLLIB)/Core | |
173 ifeq ($(UNDER_CYGWIN),yes) | |
174 PERLTYPEMAP:=$(shell cygpath -m $(PERLLIB)/ExtUtils/typemap) | |
175 XSUBPPTRY:=$(shell cygpath -m $(PERLLIB)/ExtUtils/xsubpp) | |
176 else | |
177 PERLTYPEMAP=$(PERLLIB)/ExtUtils/typemap | |
178 XSUBPPTRY=$(PERLLIB)/ExtUtils/xsubpp | |
179 endif | |
180 XSUBPP_EXISTS=$(shell $(PERLEXE) -e "print 1 unless -e '$(XSUBPPTRY)'") | |
181 ifeq "$(XSUBPP_EXISTS)" "" | |
6349 | 182 XSUBPP=$(PERLEXE) $(XSUBPPTRY) |
6326 | 183 else |
184 XSUBPP=xsubpp | |
185 endif | |
186 endif | |
187 | |
188 # Lua interface: | |
189 # LUA=[Path to Lua directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
190 # DYNAMIC_LUA=yes (to load the Lua DLL dynamically) | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
191 # LUA_VER=[Lua version, eg 51, 52] (default is 53) |
6326 | 192 ifdef LUA |
193 ifndef DYNAMIC_LUA | |
194 DYNAMIC_LUA=yes | |
195 endif | |
196 | |
197 ifndef LUA_VER | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
198 LUA_VER=53 |
6326 | 199 endif |
200 | |
201 ifeq (no,$(DYNAMIC_LUA)) | |
202 LUA_LIB = -L$(LUA)/lib -llua | |
203 endif | |
204 | |
205 endif | |
206 | |
207 # MzScheme interface: | |
208 # MZSCHEME=[Path to MzScheme directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
209 # DYNAMIC_MZSCHEME=yes (to load the MzScheme DLL dynamically) | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
210 # MZSCHEME_VER=[MzScheme version] (default is 3m_a0solc (6.6)) |
6326 | 211 # MZSCHEME_DEBUG=no |
212 ifdef MZSCHEME | |
213 ifndef DYNAMIC_MZSCHEME | |
214 DYNAMIC_MZSCHEME=yes | |
215 endif | |
216 | |
217 ifndef MZSCHEME_VER | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
218 MZSCHEME_VER=3m_a0solc |
6326 | 219 endif |
220 | |
221 # for version 4.x we need to generate byte-code for Scheme base | |
222 ifndef MZSCHEME_GENERATE_BASE | |
223 MZSCHEME_GENERATE_BASE=no | |
224 endif | |
225 | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
226 ifneq ($(wildcard $(MZSCHEME)/lib/msvc/libmzsch$(MZSCHEME_VER).lib),) |
6326 | 227 MZSCHEME_MAIN_LIB=mzsch |
228 else | |
229 MZSCHEME_MAIN_LIB=racket | |
230 endif | |
231 | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
232 ifndef MZSCHEME_PRECISE_GC |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
233 MZSCHEME_PRECISE_GC=no |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
234 ifneq ($(wildcard $(MZSCHEME)\lib\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll),) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
235 ifeq ($(wildcard $(MZSCHEME)\lib\libmzgc$(MZSCHEME_VER).dll),) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
236 MZSCHEME_PRECISE_GC=yes |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
237 endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
238 else |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
239 ifneq ($(wildcard $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib),) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
240 ifeq ($(wildcard $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib),) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
241 MZSCHEME_PRECISE_GC=yes |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
242 endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
243 endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
244 endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
245 endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
246 |
6326 | 247 ifeq (no,$(DYNAMIC_MZSCHEME)) |
248 ifeq (yes,$(MZSCHEME_PRECISE_GC)) | |
249 MZSCHEME_LIB=-l$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER) | |
250 else | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
251 MZSCHEME_LIB=-l$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER) -lmzgc$(MZSCHEME_VER) |
6326 | 252 endif |
253 # the modern MinGW can dynamically link to dlls directly. | |
254 # point MZSCHEME_DLLS to where you put libmzschXXXXXXX.dll and libgcXXXXXXX.dll | |
255 ifndef MZSCHEME_DLLS | |
256 MZSCHEME_DLLS=$(MZSCHEME) | |
257 endif | |
258 MZSCHEME_LIBDIR=-L$(MZSCHEME_DLLS) -L$(MZSCHEME_DLLS)\lib | |
259 endif | |
260 | |
261 endif | |
262 | |
263 # Python interface: | |
264 # PYTHON=[Path to Python directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
265 # DYNAMIC_PYTHON=yes (to load the Python DLL dynamically) | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
266 # PYTHON_VER=[Python version, eg 22, 23, ..., 27] (default is 27) |
6326 | 267 ifdef PYTHON |
268 ifndef DYNAMIC_PYTHON | |
269 DYNAMIC_PYTHON=yes | |
270 endif | |
271 | |
272 ifndef PYTHON_VER | |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
273 PYTHON_VER=27 |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
274 endif |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
275 ifndef DYNAMIC_PYTHON_DLL |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
276 DYNAMIC_PYTHON_DLL=python$(PYTHON_VER).dll |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
277 endif |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
278 ifdef PYTHON_HOME |
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
279 PYTHON_HOME_DEF=-DPYTHON_HOME=\"$(PYTHON_HOME)\" |
6326 | 280 endif |
281 | |
282 ifeq (no,$(DYNAMIC_PYTHON)) | |
283 PYTHONLIB=-L$(PYTHON)/libs -lpython$(PYTHON_VER) | |
284 endif | |
285 # my include files are in 'win32inc' on Linux, and 'include' in the standard | |
286 # NT distro (ActiveState) | |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
287 ifndef PYTHONINC |
6326 | 288 ifeq ($(CROSS),no) |
289 PYTHONINC=-I $(PYTHON)/include | |
290 else | |
291 PYTHONINC=-I $(PYTHON)/win32inc | |
292 endif | |
293 endif | |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
294 endif |
6326 | 295 |
296 # Python3 interface: | |
297 # PYTHON3=[Path to Python3 directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
298 # DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically) | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
299 # PYTHON3_VER=[Python3 version, eg 31, 32] (default is 35) |
6326 | 300 ifdef PYTHON3 |
301 ifndef DYNAMIC_PYTHON3 | |
302 DYNAMIC_PYTHON3=yes | |
303 endif | |
304 | |
305 ifndef PYTHON3_VER | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
306 PYTHON3_VER=35 |
6326 | 307 endif |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
308 ifndef DYNAMIC_PYTHON3_DLL |
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
309 DYNAMIC_PYTHON3_DLL=python$(PYTHON3_VER).dll |
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
310 endif |
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
311 ifdef PYTHON3_HOME |
8076
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
312 PYTHON3_HOME_DEF=-DPYTHON3_HOME=L\"$(PYTHON3_HOME)\" |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
313 endif |
6326 | 314 |
315 ifeq (no,$(DYNAMIC_PYTHON3)) | |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
316 PYTHON3LIB=-L$(PYTHON3)/libs -lpython$(PYTHON3_VER) |
6326 | 317 endif |
318 | |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
319 ifndef PYTHON3INC |
6326 | 320 ifeq ($(CROSS),no) |
321 PYTHON3INC=-I $(PYTHON3)/include | |
322 else | |
323 PYTHON3INC=-I $(PYTHON3)/win32inc | |
324 endif | |
325 endif | |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
326 endif |
6326 | 327 |
328 # TCL interface: | |
329 # TCL=[Path to TCL directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
330 # DYNAMIC_TCL=yes (to load the TCL DLL dynamically) | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
331 # TCL_VER=[TCL version, eg 83, 84] (default is 86) |
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
332 # TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.6) |
7523
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
333 # You must set TCL_VER_LONG when you set TCL_VER. |
6326 | 334 ifdef TCL |
335 ifndef DYNAMIC_TCL | |
336 DYNAMIC_TCL=yes | |
337 endif | |
338 ifndef TCL_VER | |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
339 TCL_VER = 86 |
6326 | 340 endif |
7523
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
341 ifndef TCL_VER_LONG |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
342 TCL_VER_LONG = 8.6 |
7523
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
343 endif |
6326 | 344 TCLINC += -I$(TCL)/include |
345 endif | |
346 | |
347 | |
348 # Ruby interface: | |
349 # RUBY=[Path to Ruby directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
350 # DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically) | |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
351 # RUBY_VER=[Ruby version, eg 19, 22] (default is 22) |
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
352 # RUBY_API_VER_LONG=[Ruby API version, eg 1.8, 1.9.1, 2.2.0] |
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
353 # (default is 2.2.0) |
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
354 # You must set RUBY_API_VER_LONG when changing RUBY_VER. |
6326 | 355 # Note: If you use Ruby 1.9.3, set as follows: |
356 # RUBY_VER=19 | |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
357 # RUBY_API_VER_LONG=1.9.1 (not 1.9.3, because the API version is 1.9.1.) |
6326 | 358 ifdef RUBY |
359 ifndef DYNAMIC_RUBY | |
360 DYNAMIC_RUBY=yes | |
361 endif | |
362 # Set default value | |
363 ifndef RUBY_VER | |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
364 RUBY_VER = 22 |
6326 | 365 endif |
366 ifndef RUBY_VER_LONG | |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
367 RUBY_VER_LONG = 2.2.0 |
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
368 endif |
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
369 ifndef RUBY_API_VER_LONG |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
370 RUBY_API_VER_LONG = $(RUBY_VER_LONG) |
6326 | 371 endif |
372 ifndef RUBY_API_VER | |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
373 RUBY_API_VER = $(subst .,,$(RUBY_API_VER_LONG)) |
6326 | 374 endif |
375 | |
376 ifndef RUBY_PLATFORM | |
377 ifeq ($(RUBY_VER), 16) | |
378 RUBY_PLATFORM = i586-mswin32 | |
379 else | |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
380 ifneq ($(wildcard $(RUBY)/lib/ruby/$(RUBY_API_VER_LONG)/i386-mingw32),) |
6326 | 381 RUBY_PLATFORM = i386-mingw32 |
382 else | |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
383 ifneq ($(wildcard $(RUBY)/lib/ruby/$(RUBY_API_VER_LONG)/x64-mingw32),) |
6326 | 384 RUBY_PLATFORM = x64-mingw32 |
385 else | |
386 RUBY_PLATFORM = i386-mswin32 | |
387 endif | |
388 endif | |
389 endif | |
390 endif | |
391 | |
392 ifndef RUBY_INSTALL_NAME | |
393 ifeq ($(RUBY_VER), 16) | |
394 RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER) | |
395 else | |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
396 ifndef RUBY_MSVCRT_NAME |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
397 # Base name of msvcrXX.dll which is used by ruby's dll. |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
398 RUBY_MSVCRT_NAME = msvcrt |
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
399 endif |
6326 | 400 ifeq ($(ARCH),x86-64) |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
401 RUBY_INSTALL_NAME = x64-$(RUBY_MSVCRT_NAME)-ruby$(RUBY_API_VER) |
6326 | 402 else |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
403 RUBY_INSTALL_NAME = $(RUBY_MSVCRT_NAME)-ruby$(RUBY_API_VER) |
6326 | 404 endif |
405 endif | |
406 endif | |
407 | |
408 ifeq (19, $(word 1,$(sort 19 $(RUBY_VER)))) | |
409 RUBY_19_OR_LATER = 1 | |
410 endif | |
411 | |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
412 RUBYINC = -I $(RUBY)/lib/ruby/$(RUBY_API_VER_LONG)/$(RUBY_PLATFORM) |
6326 | 413 ifdef RUBY_19_OR_LATER |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
414 RUBYINC += -I $(RUBY)/include/ruby-$(RUBY_API_VER_LONG) -I $(RUBY)/include/ruby-$(RUBY_API_VER_LONG)/$(RUBY_PLATFORM) |
6326 | 415 endif |
416 ifeq (no, $(DYNAMIC_RUBY)) | |
417 RUBYLIB = -L$(RUBY)/lib -l$(RUBY_INSTALL_NAME) | |
418 endif | |
419 | |
420 endif # RUBY | |
421 | |
422 # See feature.h for a list of options. | |
423 # Any other defines can be included here. | |
424 DEF_GUI=-DFEAT_GUI_W32 -DFEAT_CLIPBOARD | |
425 DEFINES=-DWIN32 -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \ | |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9363
diff
changeset
|
426 -DHAVE_PATHDEF -DFEAT_$(FEATURES) -DHAVE_STDINT_H |
6326 | 427 ifeq ($(ARCH),x86-64) |
428 DEFINES+=-DMS_WIN64 | |
429 endif | |
430 | |
431 #>>>>> end of choices | |
432 ########################################################################### | |
433 | |
8057
e407d5bce2f5
commit https://github.com/vim/vim/commit/a971df849f92e32e18ce475fdb47ad9ea2aa47f3
Christian Brabandt <cb@256bit.org>
parents:
8051
diff
changeset
|
434 CFLAGS = -Iproto $(DEFINES) -pipe -march=$(ARCH) -Wall |
8696
869727342e43
commit https://github.com/vim/vim/commit/6c0e984f263fc1eef42c9b34a80eff1bceb8d05b
Christian Brabandt <cb@256bit.org>
parents:
8641
diff
changeset
|
435 CXXFLAGS = -std=gnu++11 |
6326 | 436 WINDRES_FLAGS = --preprocessor="$(WINDRES_CC) -E -xc" -DRC_INVOKED |
437 EXTRA_LIBS = | |
438 | |
439 ifdef GETTEXT | |
440 DEFINES += -DHAVE_GETTEXT -DHAVE_LOCALE_H | |
441 GETTEXTINCLUDE = $(GETTEXT)/include | |
442 GETTEXTLIB = $(INTLPATH) | |
443 ifeq (yes, $(GETTEXT)) | |
444 DEFINES += -DDYNAMIC_GETTEXT | |
445 else | |
446 ifdef DYNAMIC_GETTEXT | |
447 DEFINES += -D$(DYNAMIC_GETTEXT) | |
448 ifdef GETTEXT_DYNAMIC | |
449 DEFINES += -DGETTEXT_DYNAMIC -DGETTEXT_DLL=\"$(GETTEXT_DYNAMIC)\" | |
450 endif | |
451 endif | |
452 endif | |
453 endif | |
454 | |
455 ifdef PERL | |
6872 | 456 CFLAGS += -I$(PERLLIBS) -DFEAT_PERL -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS |
6326 | 457 ifeq (yes, $(DYNAMIC_PERL)) |
458 CFLAGS += -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"perl$(PERL_VER).dll\" | |
459 EXTRA_LIBS += -L$(PERLLIBS) -lperl$(PERL_VER) | |
460 endif | |
461 endif | |
462 | |
463 ifdef LUA | |
464 CFLAGS += -I$(LUA)/include -I$(LUA) -DFEAT_LUA | |
465 ifeq (yes, $(DYNAMIC_LUA)) | |
466 CFLAGS += -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\" | |
467 endif | |
468 endif | |
469 | |
470 ifdef MZSCHEME | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
471 ifndef MZSCHEME_COLLECTS |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
472 MZSCHEME_COLLECTS=$(MZSCHEME)/collects |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
473 ifeq (yes, $(UNDER_CYGWIN)) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
474 MZSCHEME_COLLECTS:=$(shell cygpath -m $(MZSCHEME_COLLECTS) | sed -e 's/ /\\ /g') |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
475 endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
476 endif |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
477 CFLAGS += -I$(MZSCHEME)/include -DFEAT_MZSCHEME -DMZSCHEME_COLLECTS=\"$(MZSCHEME_COLLECTS)\" |
6326 | 478 ifeq (yes, $(DYNAMIC_MZSCHEME)) |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
479 ifeq (yes, $(MZSCHEME_PRECISE_GC)) |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
480 # Precise GC does not use separate dll |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
481 CFLAGS += -DDYNAMIC_MZSCHEME -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" -DDYNAMIC_MZGC_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" |
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
482 else |
6326 | 483 CFLAGS += -DDYNAMIC_MZSCHEME -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\" |
484 endif | |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
485 endif |
6326 | 486 ifeq (yes, "$(MZSCHEME_DEBUG)") |
487 CFLAGS += -DMZSCHEME_FORCE_GC | |
488 endif | |
489 endif | |
490 | |
491 ifdef RUBY | |
492 CFLAGS += -DFEAT_RUBY $(RUBYINC) | |
493 ifeq (yes, $(DYNAMIC_RUBY)) | |
494 CFLAGS += -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\" | |
495 CFLAGS += -DDYNAMIC_RUBY_VER=$(RUBY_VER) | |
496 endif | |
497 ifneq ($(findstring w64-mingw32,$(CC)),) | |
498 # A workaround for MinGW-w64 | |
499 CFLAGS += -DHAVE_STRUCT_TIMESPEC -DHAVE_STRUCT_TIMEZONE | |
500 endif | |
501 endif | |
502 | |
503 ifdef PYTHON | |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
504 CFLAGS += -DFEAT_PYTHON |
6326 | 505 ifeq (yes, $(DYNAMIC_PYTHON)) |
7532
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
506 CFLAGS += -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"$(DYNAMIC_PYTHON_DLL)\" |
6326 | 507 endif |
508 endif | |
509 | |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
510 ifdef PYTHON3 |
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
511 CFLAGS += -DFEAT_PYTHON3 |
6326 | 512 ifeq (yes, $(DYNAMIC_PYTHON3)) |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
513 CFLAGS += -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL=\"$(DYNAMIC_PYTHON3_DLL)\" |
6326 | 514 endif |
515 endif | |
516 | |
517 ifdef TCL | |
518 CFLAGS += -DFEAT_TCL $(TCLINC) | |
519 ifeq (yes, $(DYNAMIC_TCL)) | |
7523
55cd9a99514d
commit https://github.com/vim/vim/commit/eca99bd45f094b1b12e22b9d6b206bd05dc9a38c
Christian Brabandt <cb@256bit.org>
parents:
7521
diff
changeset
|
520 CFLAGS += -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"tcl$(TCL_VER).dll\" -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\" |
6326 | 521 endif |
522 endif | |
523 | |
524 ifeq ($(POSTSCRIPT),yes) | |
525 DEFINES += -DMSWINPS | |
526 endif | |
527 | |
528 ifeq (yes, $(OLE)) | |
529 DEFINES += -DFEAT_OLE | |
530 endif | |
531 | |
532 ifeq ($(CSCOPE),yes) | |
533 DEFINES += -DFEAT_CSCOPE | |
534 endif | |
535 | |
536 ifeq ($(NETBEANS),yes) | |
537 # Only allow NETBEANS for a GUI build. | |
538 ifeq (yes, $(GUI)) | |
539 DEFINES += -DFEAT_NETBEANS_INTG | |
540 | |
541 ifeq ($(NBDEBUG), yes) | |
542 DEFINES += -DNBDEBUG | |
543 NBDEBUG_INCL = nbdebug.h | |
544 NBDEBUG_SRC = nbdebug.c | |
545 endif | |
546 endif | |
547 endif | |
548 | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
549 ifeq ($(CHANNEL),yes) |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
550 DEFINES += -DFEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
551 endif |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
552 |
6326 | 553 # DirectWrite (DirectX) |
554 ifeq ($(DIRECTX),yes) | |
555 # Only allow DirectWrite for a GUI build. | |
556 ifeq (yes, $(GUI)) | |
557 DEFINES += -DFEAT_DIRECTX -DDYNAMIC_DIRECTX | |
558 endif | |
559 endif | |
560 | |
561 # Only allow XPM for a GUI build. | |
562 ifeq (yes, $(GUI)) | |
563 | |
564 ifndef XPM | |
565 ifeq ($(ARCH),i386) | |
566 XPM = xpm/x86 | |
567 endif | |
568 ifeq ($(ARCH),i486) | |
569 XPM = xpm/x86 | |
570 endif | |
571 ifeq ($(ARCH),i586) | |
572 XPM = xpm/x86 | |
573 endif | |
574 ifeq ($(ARCH),i686) | |
575 XPM = xpm/x86 | |
576 endif | |
577 ifeq ($(ARCH),x86-64) | |
578 XPM = xpm/x64 | |
579 endif | |
580 endif | |
581 ifdef XPM | |
582 ifneq ($(XPM),no) | |
583 CFLAGS += -DFEAT_XPM_W32 -I $(XPM)/include -I $(XPM)/../include | |
584 endif | |
585 endif | |
586 | |
587 endif | |
588 | |
589 ifeq ($(DEBUG),yes) | |
590 CFLAGS += -g -fstack-check | |
591 DEBUG_SUFFIX=d | |
592 else | |
593 ifeq ($(OPTIMIZE), SIZE) | |
594 CFLAGS += -Os | |
595 else | |
596 ifeq ($(OPTIMIZE), MAXSPEED) | |
597 CFLAGS += -O3 | |
598 CFLAGS += -fomit-frame-pointer -freg-struct-return | |
599 else # SPEED | |
600 CFLAGS += -O2 | |
601 endif | |
602 endif | |
603 CFLAGS += -s | |
604 endif | |
605 | |
606 LIB = -lkernel32 -luser32 -lgdi32 -ladvapi32 -lcomdlg32 -lcomctl32 -lversion | |
607 GUIOBJ = $(OUTDIR)/gui.o $(OUTDIR)/gui_w32.o $(OUTDIR)/gui_beval.o $(OUTDIR)/os_w32exe.o | |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
608 CUIOBJ = $(OUTDIR)/iscygpty.o |
6326 | 609 OBJ = \ |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
610 $(OUTDIR)/arabic.o \ |
6326 | 611 $(OUTDIR)/blowfish.o \ |
612 $(OUTDIR)/buffer.o \ | |
613 $(OUTDIR)/charset.o \ | |
614 $(OUTDIR)/crypt.o \ | |
615 $(OUTDIR)/crypt_zip.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9507
diff
changeset
|
616 $(OUTDIR)/dict.o \ |
6326 | 617 $(OUTDIR)/diff.o \ |
618 $(OUTDIR)/digraph.o \ | |
619 $(OUTDIR)/edit.o \ | |
620 $(OUTDIR)/eval.o \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
621 $(OUTDIR)/evalfunc.o \ |
6326 | 622 $(OUTDIR)/ex_cmds.o \ |
623 $(OUTDIR)/ex_cmds2.o \ | |
624 $(OUTDIR)/ex_docmd.o \ | |
625 $(OUTDIR)/ex_eval.o \ | |
626 $(OUTDIR)/ex_getln.o \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
627 $(OUTDIR)/farsi.o \ |
6326 | 628 $(OUTDIR)/fileio.o \ |
629 $(OUTDIR)/fold.o \ | |
630 $(OUTDIR)/getchar.o \ | |
631 $(OUTDIR)/hardcopy.o \ | |
632 $(OUTDIR)/hashtab.o \ | |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
633 $(OUTDIR)/json.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9507
diff
changeset
|
634 $(OUTDIR)/list.o \ |
6326 | 635 $(OUTDIR)/main.o \ |
636 $(OUTDIR)/mark.o \ | |
637 $(OUTDIR)/memfile.o \ | |
638 $(OUTDIR)/memline.o \ | |
639 $(OUTDIR)/menu.o \ | |
640 $(OUTDIR)/message.o \ | |
641 $(OUTDIR)/misc1.o \ | |
642 $(OUTDIR)/misc2.o \ | |
643 $(OUTDIR)/move.o \ | |
644 $(OUTDIR)/mbyte.o \ | |
645 $(OUTDIR)/normal.o \ | |
646 $(OUTDIR)/ops.o \ | |
647 $(OUTDIR)/option.o \ | |
648 $(OUTDIR)/os_win32.o \ | |
649 $(OUTDIR)/os_mswin.o \ | |
650 $(OUTDIR)/winclip.o \ | |
651 $(OUTDIR)/pathdef.o \ | |
652 $(OUTDIR)/popupmnu.o \ | |
653 $(OUTDIR)/quickfix.o \ | |
654 $(OUTDIR)/regexp.o \ | |
655 $(OUTDIR)/screen.o \ | |
656 $(OUTDIR)/search.o \ | |
657 $(OUTDIR)/sha256.o \ | |
658 $(OUTDIR)/spell.o \ | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
659 $(OUTDIR)/spellfile.o \ |
6326 | 660 $(OUTDIR)/syntax.o \ |
661 $(OUTDIR)/tag.o \ | |
662 $(OUTDIR)/term.o \ | |
663 $(OUTDIR)/ui.o \ | |
664 $(OUTDIR)/undo.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9507
diff
changeset
|
665 $(OUTDIR)/userfunc.o \ |
6326 | 666 $(OUTDIR)/version.o \ |
667 $(OUTDIR)/vimrc.o \ | |
668 $(OUTDIR)/window.o | |
669 | |
670 ifdef PERL | |
671 OBJ += $(OUTDIR)/if_perl.o | |
672 endif | |
673 ifdef LUA | |
674 OBJ += $(OUTDIR)/if_lua.o | |
675 endif | |
676 ifdef MZSCHEME | |
677 OBJ += $(OUTDIR)/if_mzsch.o | |
678 MZSCHEME_INCL = if_mzsch.h | |
679 ifeq (yes,$(MZSCHEME_GENERATE_BASE)) | |
680 CFLAGS += -DINCLUDE_MZSCHEME_BASE | |
681 MZ_EXTRA_DEP += mzscheme_base.c | |
682 endif | |
683 ifeq (yes,$(MZSCHEME_PRECISE_GC)) | |
684 CFLAGS += -DMZ_PRECISE_GC | |
685 endif | |
686 endif | |
687 ifdef PYTHON | |
688 OBJ += $(OUTDIR)/if_python.o | |
689 endif | |
690 ifdef PYTHON3 | |
691 OBJ += $(OUTDIR)/if_python3.o | |
692 endif | |
693 ifdef RUBY | |
694 OBJ += $(OUTDIR)/if_ruby.o | |
695 endif | |
696 ifdef TCL | |
697 OBJ += $(OUTDIR)/if_tcl.o | |
698 endif | |
699 ifeq ($(CSCOPE),yes) | |
700 OBJ += $(OUTDIR)/if_cscope.o | |
701 endif | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
702 |
6326 | 703 ifeq ($(NETBEANS),yes) |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
704 ifneq ($(CHANNEL),yes) |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
705 # Cannot use Netbeans without CHANNEL |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
706 NETBEANS=no |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
707 else |
8051
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
708 ifneq (yes, $(GUI)) |
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
709 # Cannot use Netbeans without GUI. |
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
710 NETBEANS=no |
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
711 else |
6326 | 712 OBJ += $(OUTDIR)/netbeans.o |
713 endif | |
714 endif | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
715 endif |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
716 |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
717 ifeq ($(CHANNEL),yes) |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
718 OBJ += $(OUTDIR)/channel.o |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
719 LIB += -lwsock32 |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
720 endif |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
721 |
6326 | 722 ifeq ($(DIRECTX),yes) |
723 # Only allow DIRECTX for a GUI build. | |
724 ifeq (yes, $(GUI)) | |
725 OBJ += $(OUTDIR)/gui_dwrite.o | |
726 LIB += -ld2d1 -ldwrite | |
727 USE_STDCPLUS = yes | |
728 endif | |
729 endif | |
730 ifneq ($(XPM),no) | |
731 # Only allow XPM for a GUI build. | |
732 ifeq (yes, $(GUI)) | |
733 OBJ += $(OUTDIR)/xpm_w32.o | |
734 # You'll need libXpm.a from http://gnuwin32.sf.net | |
735 LIB += -L$(XPM)/lib -lXpm | |
736 endif | |
737 endif | |
738 | |
739 | |
740 ifdef MZSCHEME | |
741 MZSCHEME_SUFFIX = Z | |
742 endif | |
743 | |
744 ifeq ($(GUI),yes) | |
745 TARGET := gvim$(DEBUG_SUFFIX).exe | |
746 DEFINES += $(DEF_GUI) | |
747 OBJ += $(GUIOBJ) | |
748 LFLAGS += -mwindows | |
749 OUTDIR = gobj$(DEBUG_SUFFIX)$(MZSCHEME_SUFFIX)$(ARCH) | |
750 else | |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
751 OBJ += $(CUIOBJ) |
6326 | 752 TARGET := vim$(DEBUG_SUFFIX).exe |
753 OUTDIR = obj$(DEBUG_SUFFIX)$(MZSCHEME_SUFFIX)$(ARCH) | |
754 endif | |
755 | |
756 ifdef GETTEXT | |
757 ifneq (yes, $(GETTEXT)) | |
758 CFLAGS += -I$(GETTEXTINCLUDE) | |
759 ifndef STATIC_GETTEXT | |
760 LIB += -L$(GETTEXTLIB) -l$(INTLLIB) | |
761 ifeq (USE_SAFE_GETTEXT_DLL, $(DYNAMIC_GETTEXT)) | |
762 OBJ+=$(SAFE_GETTEXT_DLL_OBJ) | |
763 endif | |
764 else | |
765 LIB += -L$(GETTEXTLIB) -lintl | |
766 endif | |
767 endif | |
768 endif | |
769 | |
770 ifdef PERL | |
771 ifeq (no, $(DYNAMIC_PERL)) | |
772 LIB += -L$(PERLLIBS) -lperl$(PERL_VER) | |
773 endif | |
774 endif | |
775 | |
776 ifdef TCL | |
777 LIB += -L$(TCL)/lib | |
778 ifeq (yes, $(DYNAMIC_TCL)) | |
779 LIB += -ltclstub$(TCL_VER) | |
780 else | |
781 LIB += -ltcl$(TCL_VER) | |
782 endif | |
783 endif | |
784 | |
785 ifeq (yes, $(OLE)) | |
786 LIB += -loleaut32 | |
787 OBJ += $(OUTDIR)/if_ole.o | |
788 USE_STDCPLUS = yes | |
789 endif | |
790 | |
791 ifeq (yes, $(MBYTE)) | |
792 DEFINES += -DFEAT_MBYTE | |
793 endif | |
794 | |
795 ifeq (yes, $(IME)) | |
796 DEFINES += -DFEAT_MBYTE_IME | |
797 ifeq (yes, $(DYNAMIC_IME)) | |
798 DEFINES += -DDYNAMIC_IME | |
799 else | |
800 LIB += -limm32 | |
801 endif | |
802 endif | |
803 | |
804 ifdef ICONV | |
805 ifneq (yes, $(ICONV)) | |
806 LIB += -L$(ICONV) | |
807 CFLAGS += -I$(ICONV) | |
808 endif | |
809 DEFINES+=-DDYNAMIC_ICONV | |
810 endif | |
811 | |
812 ifeq (yes, $(USE_STDCPLUS)) | |
813 ifeq (yes, $(STATIC_STDCPLUS)) | |
814 LIB += -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic | |
815 else | |
816 LIB += -lstdc++ | |
817 endif | |
818 endif | |
819 | |
820 all: $(TARGET) vimrun.exe xxd/xxd.exe install.exe uninstal.exe GvimExt/gvimext.dll | |
821 | |
822 vimrun.exe: vimrun.c | |
823 $(CC) $(CFLAGS) -o vimrun.exe vimrun.c $(LIB) | |
824 | |
825 install.exe: dosinst.c | |
826 $(CC) $(CFLAGS) -o install.exe dosinst.c $(LIB) -lole32 -luuid | |
827 | |
828 uninstal.exe: uninstal.c | |
829 $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB) | |
830 | |
831 $(TARGET): $(OUTDIR) $(OBJ) | |
832 $(CC) $(CFLAGS) $(LFLAGS) -o $@ $(OBJ) $(LIB) -lole32 -luuid $(LUA_LIB) $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(PYTHON3LIB) $(RUBYLIB) | |
833 | |
834 upx: exes | |
835 upx gvim.exe | |
836 upx vim.exe | |
837 | |
838 mpress: exes | |
839 mpress gvim.exe | |
840 mpress vim.exe | |
841 | |
842 xxd/xxd.exe: xxd/xxd.c | |
843 $(MAKE) -C xxd -f Make_ming.mak CC='$(CC)' | |
844 | |
845 GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h | |
846 $(MAKE) -C GvimExt -f Make_ming.mak CROSS=$(CROSS) CROSS_COMPILE=$(CROSS_COMPILE) CXX='$(CXX)' STATIC_STDCPLUS=$(STATIC_STDCPLUS) | |
847 | |
848 clean: | |
849 -$(DEL) $(OUTDIR)$(DIRSLASH)*.o | |
850 -$(DEL) $(OUTDIR)$(DIRSLASH)*.res | |
851 -rmdir $(OUTDIR) | |
852 -$(DEL) *.exe | |
853 -$(DEL) pathdef.c | |
854 ifdef PERL | |
855 -$(DEL) if_perl.c | |
856 endif | |
857 ifdef MZSCHEME | |
858 -$(DEL) mzscheme_base.c | |
859 endif | |
860 $(MAKE) -C GvimExt -f Make_ming.mak clean | |
861 $(MAKE) -C xxd -f Make_ming.mak clean | |
862 | |
863 ########################################################################### | |
864 INCL = vim.h feature.h os_win32.h os_dos.h ascii.h keymap.h term.h macros.h \ | |
865 structs.h regexp.h option.h ex_cmds.h proto.h globals.h farsi.h \ | |
866 gui.h | |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
867 CUI_INCL = iscygpty.h |
6326 | 868 |
869 $(OUTDIR)/if_python.o : if_python.c if_py_both.h $(INCL) | |
7532
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
870 $(CC) -c $(CFLAGS) $(PYTHONINC) $(PYTHON_HOME_DEF) $< -o $@ |
6326 | 871 |
872 $(OUTDIR)/if_python3.o : if_python3.c if_py_both.h $(INCL) | |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
873 $(CC) -c $(CFLAGS) $(PYTHON3INC) $(PYTHON3_HOME_DEF) $< -o $@ |
6326 | 874 |
875 $(OUTDIR)/%.o : %.c $(INCL) | |
876 $(CC) -c $(CFLAGS) $< -o $@ | |
877 | |
878 $(OUTDIR)/vimrc.o: vim.rc version.h gui_w32_rc.h | |
879 $(WINDRES) $(WINDRES_FLAGS) $(DEFINES) \ | |
880 --input-format=rc --output-format=coff -i vim.rc -o $@ | |
881 | |
882 $(OUTDIR): | |
883 $(MKDIR) $(OUTDIR) | |
884 | |
885 $(OUTDIR)/ex_docmd.o: ex_docmd.c $(INCL) ex_cmds.h | |
886 $(CC) -c $(CFLAGS) ex_docmd.c -o $(OUTDIR)/ex_docmd.o | |
887 | |
888 $(OUTDIR)/ex_eval.o: ex_eval.c $(INCL) ex_cmds.h | |
889 $(CC) -c $(CFLAGS) ex_eval.c -o $(OUTDIR)/ex_eval.o | |
890 | |
8140
563c923b1584
commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293
Christian Brabandt <cb@256bit.org>
parents:
8120
diff
changeset
|
891 $(OUTDIR)/gui_w32.o: gui_w32.c $(INCL) |
6326 | 892 $(CC) -c $(CFLAGS) gui_w32.c -o $(OUTDIR)/gui_w32.o |
893 | |
894 $(OUTDIR)/gui_dwrite.o: gui_dwrite.cpp $(INCL) gui_dwrite.h | |
8641
0af716a4f5d2
commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
895 $(CC) -c $(CFLAGS) $(CXXFLAGS) gui_dwrite.cpp -o $(OUTDIR)/gui_dwrite.o |
6326 | 896 |
897 $(OUTDIR)/if_cscope.o: if_cscope.c $(INCL) if_cscope.h | |
898 $(CC) -c $(CFLAGS) if_cscope.c -o $(OUTDIR)/if_cscope.o | |
899 | |
900 # Remove -D__IID_DEFINED__ for newer versions of the w32api | |
901 $(OUTDIR)/if_ole.o: if_ole.cpp $(INCL) | |
8641
0af716a4f5d2
commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3
Christian Brabandt <cb@256bit.org>
parents:
8493
diff
changeset
|
902 $(CC) $(CFLAGS) $(CXXFLAGS) -c -o $(OUTDIR)/if_ole.o if_ole.cpp |
6326 | 903 |
904 $(OUTDIR)/if_ruby.o: if_ruby.c $(INCL) | |
905 ifeq (16, $(RUBY)) | |
906 $(CC) $(CFLAGS) -U_WIN32 -c -o $(OUTDIR)/if_ruby.o if_ruby.c | |
907 endif | |
908 | |
909 if_perl.c: if_perl.xs typemap | |
910 $(XSUBPP) -prototypes -typemap \ | |
6349 | 911 $(PERLTYPEMAP) if_perl.xs > $@ |
6326 | 912 |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
913 $(OUTDIR)/iscygpty.o: iscygpty.c $(CUI_INCL) |
9471
2f2b96276941
commit https://github.com/vim/vim/commit/2bc127f94016801250f8f24234f90a5182d77e73
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
914 $(CC) -c $(CFLAGS) iscygpty.c -o $(OUTDIR)/iscygpty.o -U_WIN32_WINNT -D_WIN32_WINNT=0x0600 -DUSE_DYNFILEID -DENABLE_STUB_IMPL |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
915 |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
916 $(OUTDIR)/main.o: main.c $(INCL) $(CUI_INCL) |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
917 $(CC) -c $(CFLAGS) main.c -o $(OUTDIR)/main.o |
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
918 |
6326 | 919 $(OUTDIR)/netbeans.o: netbeans.c $(INCL) $(NBDEBUG_INCL) $(NBDEBUG_SRC) |
920 $(CC) -c $(CFLAGS) netbeans.c -o $(OUTDIR)/netbeans.o | |
921 | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
922 $(OUTDIR)/channel.o: channel.c $(INCL) |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
923 $(CC) -c $(CFLAGS) channel.c -o $(OUTDIR)/channel.o |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
924 |
6326 | 925 $(OUTDIR)/regexp.o: regexp.c regexp_nfa.c $(INCL) |
926 $(CC) -c $(CFLAGS) regexp.c -o $(OUTDIR)/regexp.o | |
927 | |
928 $(OUTDIR)/if_mzsch.o: if_mzsch.c $(INCL) if_mzsch.h $(MZ_EXTRA_DEP) | |
929 $(CC) -c $(CFLAGS) if_mzsch.c -o $(OUTDIR)/if_mzsch.o | |
930 | |
931 mzscheme_base.c: | |
932 $(MZSCHEME)/mzc --c-mods mzscheme_base.c ++lib scheme/base | |
933 | |
934 pathdef.c: $(INCL) | |
935 ifneq (sh.exe, $(SHELL)) | |
936 @echo creating pathdef.c | |
937 @echo '/* pathdef.c */' > pathdef.c | |
938 @echo '#include "vim.h"' >> pathdef.c | |
939 @echo 'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' >> pathdef.c | |
940 @echo 'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' >> pathdef.c | |
941 @echo 'char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)";' >> pathdef.c | |
942 @echo 'char_u *all_lflags = (char_u *)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(LUA_LIB) $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(PYTHON3LIB) $(RUBYLIB)";' >> pathdef.c | |
943 @echo 'char_u *compiled_user = (char_u *)"$(USERNAME)";' >> pathdef.c | |
944 @echo 'char_u *compiled_sys = (char_u *)"$(USERDOMAIN)";' >> pathdef.c | |
945 else | |
946 @echo creating pathdef.c | |
947 @echo /* pathdef.c */ > pathdef.c | |
948 @echo #include "vim.h" >> pathdef.c | |
949 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)"; >> pathdef.c | |
950 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)"; >> pathdef.c | |
951 @echo char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)"; >> pathdef.c | |
952 @echo char_u *all_lflags = (char_u *)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(LUA_LIB) $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(PYTHON3LIB) $(RUBYLIB)"; >> pathdef.c | |
953 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> pathdef.c | |
954 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> pathdef.c | |
955 endif |