Mercurial > vim
annotate src/Make_cyg_ming.mak @ 16714:ba592f30c082 v8.1.1359
patch 8.1.1359: text property wrong after :substitute with backslash
commit https://github.com/vim/vim/commit/f3333b02f34526da46cdae608f7e2d869bb8c654
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 19 22:53:40 2019 +0200
patch 8.1.1359: text property wrong after :substitute with backslash
Problem: Text property wrong after :substitute with backslash.
Solution: Adjust text property columns when removing backslashes.
(closes #4397)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 19 May 2019 23:00:05 +0200 |
parents | 92ad5eb7afcb |
children | bb4071e79ade |
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: | |
13468
539436dcb134
patch 8.0.1608: Win32: directx not enabled by default
Christian Brabandt <cb@256bit.org>
parents:
13028
diff
changeset
|
23 # https://upx.github.io/ |
6326 | 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: | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
31 # FEATURES=[TINY | SMALL | NORMAL | BIG | HUGE] |
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
32 # Set to TINY to make minimal version (few features). |
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
33 FEATURES=HUGE |
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
34 |
6326 | 35 # set to yes for a debug build |
36 DEBUG=no | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
37 |
14820
8ff32a34f25e
patch 8.1.0422: cannot create map file with MinGW
Christian Brabandt <cb@256bit.org>
parents:
14818
diff
changeset
|
38 # set to yes to create a mapfile |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
39 #MAP=yes |
14820
8ff32a34f25e
patch 8.1.0422: cannot create map file with MinGW
Christian Brabandt <cb@256bit.org>
parents:
14818
diff
changeset
|
40 |
6326 | 41 # set to SIZE for size, SPEED for speed, MAXSPEED for maximum optimization |
42 OPTIMIZE=MAXSPEED | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
43 |
6326 | 44 # set to yes to make gvim, no for vim |
45 GUI=yes | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
46 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
47 # set to yes to enable the DLL support (EXPERIMENTAL). |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
48 # Creates vim{32,64}.dll, and stub gvim.exe and vim.exe. |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
49 # "GUI" should be also set to "yes". |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
50 #VIMDLL=yes |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
51 |
13468
539436dcb134
patch 8.0.1608: Win32: directx not enabled by default
Christian Brabandt <cb@256bit.org>
parents:
13028
diff
changeset
|
52 # set to no if you do not want to use DirectWrite (DirectX) |
6326 | 53 # MinGW-w64 is needed, and ARCH should be set to i686 or x86-64. |
13468
539436dcb134
patch 8.0.1608: Win32: directx not enabled by default
Christian Brabandt <cb@256bit.org>
parents:
13028
diff
changeset
|
54 DIRECTX=yes |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
55 |
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
56 # Disable Color emoji support |
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
57 # (default is yes if DIRECTX=yes, requires WinSDK 8.1 or later.) |
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
58 #COLOR_EMOJI=no |
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
59 |
6326 | 60 # Set to one of i386, i486, i586, i686 as the minimum target processor. |
61 # 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
|
62 # 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
|
63 #ARCH=i686 |
6326 | 64 # Set to yes to cross-compile from unix; no=native Windows (and Cygwin). |
65 CROSS=no | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
66 |
6326 | 67 # Set to path to iconv.h and libiconv.a to enable using 'iconv.dll'. |
12628
c3bb4552d15d
patch 8.0.1192: MS-Windows: terminal feature not enabled by default
Christian Brabandt <cb@256bit.org>
parents:
12525
diff
changeset
|
68 # Use "yes" when the path does not need to be define. |
6326 | 69 #ICONV="." |
70 ICONV=yes | |
71 GETTEXT=yes | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
72 |
6326 | 73 # Set to yes to include IME support. |
74 IME=yes | |
75 DYNAMIC_IME=yes | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
76 |
6326 | 77 # Set to yes to enable writing a postscript file with :hardcopy. |
78 POSTSCRIPT=no | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
79 |
6326 | 80 # Set to yes to enable OLE support. |
81 OLE=no | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
82 |
14222
78449866e9a9
patch 8.1.0128: building with MinGW does not work out-of-the-box
Christian Brabandt <cb@256bit.org>
parents:
14133
diff
changeset
|
83 # Set the default $(WINVER). Use 0x0501 to make it work with WinXP. |
6326 | 84 ifndef WINVER |
14222
78449866e9a9
patch 8.1.0128: building with MinGW does not work out-of-the-box
Christian Brabandt <cb@256bit.org>
parents:
14133
diff
changeset
|
85 # WINVER = 0x0501 |
78449866e9a9
patch 8.1.0128: building with MinGW does not work out-of-the-box
Christian Brabandt <cb@256bit.org>
parents:
14133
diff
changeset
|
86 WINVER = 0x0600 |
6326 | 87 endif |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
88 |
6326 | 89 # Set to yes to enable Cscope support. |
90 CSCOPE=yes | |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
91 |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
92 # Set to yes to enable Netbeans support (requires CHANNEL). |
6326 | 93 NETBEANS=$(GUI) |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
94 |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
95 # 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
|
96 ifeq (HUGE, $(FEATURES)) |
c096095ad9fb
commit https://github.com/vim/vim/commit/1aa07bdead2e93501c54591e31fe73b9b09c58b5
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
97 CHANNEL=yes |
c096095ad9fb
commit https://github.com/vim/vim/commit/1aa07bdead2e93501c54591e31fe73b9b09c58b5
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
98 else |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
99 CHANNEL=$(GUI) |
9203
c096095ad9fb
commit https://github.com/vim/vim/commit/1aa07bdead2e93501c54591e31fe73b9b09c58b5
Christian Brabandt <cb@256bit.org>
parents:
8696
diff
changeset
|
100 endif |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
101 |
11774
edf1a2a247fa
patch 8.0.0769: build problems with terminal on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11719
diff
changeset
|
102 # Set to yes to enable terminal support. |
12628
c3bb4552d15d
patch 8.0.1192: MS-Windows: terminal feature not enabled by default
Christian Brabandt <cb@256bit.org>
parents:
12525
diff
changeset
|
103 ifeq (HUGE, $(FEATURES)) |
c3bb4552d15d
patch 8.0.1192: MS-Windows: terminal feature not enabled by default
Christian Brabandt <cb@256bit.org>
parents:
12525
diff
changeset
|
104 TERMINAL=yes |
c3bb4552d15d
patch 8.0.1192: MS-Windows: terminal feature not enabled by default
Christian Brabandt <cb@256bit.org>
parents:
12525
diff
changeset
|
105 else |
11696
0a6136dfce35
patch 8.0.0731: cannot build the terminal feature on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10442
diff
changeset
|
106 TERMINAL=no |
12628
c3bb4552d15d
patch 8.0.1192: MS-Windows: terminal feature not enabled by default
Christian Brabandt <cb@256bit.org>
parents:
12525
diff
changeset
|
107 endif |
6326 | 108 |
12305
d4a3ad146204
patch 8.0.1032: "make tags" doesn't work well on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12218
diff
changeset
|
109 ifndef CTAGS |
d4a3ad146204
patch 8.0.1032: "make tags" doesn't work well on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12218
diff
changeset
|
110 # this assumes ctags is Exuberant ctags |
d4a3ad146204
patch 8.0.1032: "make tags" doesn't work well on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12218
diff
changeset
|
111 CTAGS = ctags -I INIT+ --fields=+S |
d4a3ad146204
patch 8.0.1032: "make tags" doesn't work well on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12218
diff
changeset
|
112 endif |
6326 | 113 |
114 # Link against the shared version of libstdc++ by default. Set | |
115 # STATIC_STDCPLUS to "yes" to link against static version instead. | |
116 ifndef STATIC_STDCPLUS | |
117 STATIC_STDCPLUS=no | |
118 endif | |
119 | |
10442
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
120 |
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
121 # Link against the shared version of libwinpthread by default. Set |
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
122 # STATIC_WINPTHREAD to "yes" to link against static version instead. |
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
123 ifndef STATIC_WINPTHREAD |
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
124 STATIC_WINPTHREAD=$(STATIC_STDCPLUS) |
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
125 endif |
14958
b898f9093199
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
Bram Moolenaar <Bram@vim.org>
parents:
14943
diff
changeset
|
126 # If you use TDM-GCC(-64), change HAS_GCC_EH to "no". |
b898f9093199
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
Bram Moolenaar <Bram@vim.org>
parents:
14943
diff
changeset
|
127 # This is used when STATIC_STDCPLUS=yes. |
b898f9093199
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
Bram Moolenaar <Bram@vim.org>
parents:
14943
diff
changeset
|
128 HAS_GCC_EH=yes |
10442
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
129 |
6326 | 130 # If the user doesn't want gettext, undefine it. |
131 ifeq (no, $(GETTEXT)) | |
132 GETTEXT= | |
133 endif | |
134 # Added by E.F. Amatria <eferna1@platea.ptic.mec.es> 2001 Feb 23 | |
135 # Uncomment the first line and one of the following three if you want Native Language | |
136 # Support. You'll need gnu_gettext.win32, a MINGW32 Windows PORT of gettext by | |
137 # Franco Bez <franco.bez@gmx.de>. It may be found at | |
138 # http://home.a-city.de/franco.bez/gettext/gettext_win32_en.html | |
139 # Tested with mingw32 with GCC-2.95.2 on Win98 | |
140 # Updated 2001 Jun 9 | |
141 #GETTEXT=c:/gettext.win32.msvcrt | |
142 #STATIC_GETTEXT=USE_STATIC_GETTEXT | |
143 #DYNAMIC_GETTEXT=USE_GETTEXT_DLL | |
144 #DYNAMIC_GETTEXT=USE_SAFE_GETTEXT_DLL | |
145 SAFE_GETTEXT_DLL_OBJ = $(GETTEXT)/src/safe_gettext_dll/safe_gettext_dll.o | |
146 # Alternatively, if you uncomment the two following lines, you get a "safe" version | |
147 # without linking the safe_gettext_dll.o object file. | |
148 #DYNAMIC_GETTEXT=DYNAMIC_GETTEXT | |
149 #GETTEXT_DYNAMIC=gnu_gettext.dll | |
150 INTLPATH=$(GETTEXT)/lib/mingw32 | |
151 INTLLIB=gnu_gettext | |
152 | |
153 # If you are using gettext-0.10.35 from http://sourceforge.net/projects/gettext | |
154 # or gettext-0.10.37 from http://sourceforge.net/projects/mingwrep/ | |
155 # uncomment the following, but I can't build a static version with them, ?-(| | |
156 #GETTEXT=c:/gettext-0.10.37-20010430 | |
157 #STATIC_GETTEXT=USE_STATIC_GETTEXT | |
158 #DYNAMIC_GETTEXT=DYNAMIC_GETTEXT | |
159 #INTLPATH=$(GETTEXT)/lib | |
160 #INTLLIB=intl | |
161 | |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
162 |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
163 # 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
|
164 ifeq ($(CROSS),yes) |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
165 # cross-compiler prefix: |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
166 ifndef CROSS_COMPILE |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
167 CROSS_COMPILE = i586-pc-mingw32msvc- |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
168 endif |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
169 DEL = rm |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
170 MKDIR = mkdir -p |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
171 DIRSLASH = / |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
172 else |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
173 # normal (Windows) compilation: |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
174 ifndef CROSS_COMPILE |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
175 CROSS_COMPILE = |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
176 endif |
14696
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
177 |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
178 # About the "sh.exe" condition, as explained by Ken Takata: |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
179 # |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
180 # If the makefile is executed with mingw32-make and sh.exe is not found in |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
181 # $PATH, then $SHELL is set to "sh.exe" (without any path). In this case, |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
182 # unix-like commands might not work and a dos-style path is needed. |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
183 # |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
184 # If the makefile is executed with mingw32-make and sh.exe IS found in $PATH, |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
185 # then $SHELL is set with the actual path of sh.exe (e.g. |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
186 # "C:/msys64/usr/bin/sh.exe"). In this case, unix-like commands can be used. |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
187 # |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
188 # If it is executed by the "make" command from cmd.exe, $SHELL is set to |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
189 # "/bin/sh". If the "make" command is in the $PATH, other unix-like commands |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
190 # might also work. |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
191 # |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
192 # If it is executed by the "make" command from a unix-like shell, |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
193 # $SHELL is set with the unix-style path (e.g. "/bin/bash"). |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
194 # In this case, unix-like commands can be used. |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
195 # |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
196 ifneq (sh.exe, $(SHELL)) |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
197 DEL = rm |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
198 MKDIR = mkdir -p |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
199 DIRSLASH = / |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
200 else |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
201 DEL = del |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
202 MKDIR = mkdir |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
203 DIRSLASH = \\ |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
204 endif |
9499
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
205 endif |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
206 CC := $(CROSS_COMPILE)gcc |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
207 CXX := $(CROSS_COMPILE)g++ |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
208 ifeq ($(UNDER_CYGWIN),yes) |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
209 WINDRES := $(CROSS_COMPILE)windres |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
210 else |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
211 WINDRES := windres |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
212 endif |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
213 WINDRES_CC = $(CC) |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
214 |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
215 # Get the default ARCH. |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
216 ifndef ARCH |
9507
5376c8008b3a
commit https://github.com/vim/vim/commit/f62e797ffa6ab5d4c476b4c9e9a1f7f852910652
Christian Brabandt <cb@256bit.org>
parents:
9503
diff
changeset
|
217 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
|
218 endif |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
219 |
69102e843370
commit https://github.com/vim/vim/commit/e048539195e1c0a060cf41b39fca118130bdc151
Christian Brabandt <cb@256bit.org>
parents:
9471
diff
changeset
|
220 |
6326 | 221 # Perl interface: |
222 # PERL=[Path to Perl directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
223 # 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
|
224 # PERL_VER=[Perl version, eg 56, 58, 510] (default is 524) |
6326 | 225 ifdef PERL |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
226 ifndef PERL_VER |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
227 PERL_VER=524 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
228 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
229 ifndef DYNAMIC_PERL |
6326 | 230 DYNAMIC_PERL=yes |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
231 endif |
6326 | 232 # on Linux, for cross-compile, it's here: |
233 #PERLLIB=/home/ron/ActivePerl/lib | |
234 # on NT, it's here: | |
235 PERLEXE=$(PERL)/bin/perl | |
236 PERLLIB=$(PERL)/lib | |
237 PERLLIBS=$(PERLLIB)/Core | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
238 ifeq ($(UNDER_CYGWIN),yes) |
6326 | 239 PERLTYPEMAP:=$(shell cygpath -m $(PERLLIB)/ExtUtils/typemap) |
240 XSUBPPTRY:=$(shell cygpath -m $(PERLLIB)/ExtUtils/xsubpp) | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
241 else |
6326 | 242 PERLTYPEMAP=$(PERLLIB)/ExtUtils/typemap |
243 XSUBPPTRY=$(PERLLIB)/ExtUtils/xsubpp | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
244 endif |
6326 | 245 XSUBPP_EXISTS=$(shell $(PERLEXE) -e "print 1 unless -e '$(XSUBPPTRY)'") |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
246 ifeq "$(XSUBPP_EXISTS)" "" |
6349 | 247 XSUBPP=$(PERLEXE) $(XSUBPPTRY) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
248 else |
6326 | 249 XSUBPP=xsubpp |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
250 endif |
6326 | 251 endif |
252 | |
253 # Lua interface: | |
254 # LUA=[Path to Lua directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
14812
7968031aeaa3
patch 8.1.0418: MS-Windows: cannot separate Lua include and library dirs
Christian Brabandt <cb@256bit.org>
parents:
14734
diff
changeset
|
255 # LUA_LIBDIR=[Path to Lua library directory] (default: $LUA/lib) |
7968031aeaa3
patch 8.1.0418: MS-Windows: cannot separate Lua include and library dirs
Christian Brabandt <cb@256bit.org>
parents:
14734
diff
changeset
|
256 # LUA_INCDIR=[Path to Lua include directory] (default: $LUA/include) |
6326 | 257 # 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
|
258 # LUA_VER=[Lua version, eg 51, 52] (default is 53) |
6326 | 259 ifdef LUA |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
260 ifndef DYNAMIC_LUA |
6326 | 261 DYNAMIC_LUA=yes |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
262 endif |
6326 | 263 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
264 ifndef LUA_VER |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
265 LUA_VER=53 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
266 endif |
6326 | 267 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
268 ifeq (no,$(DYNAMIC_LUA)) |
14812
7968031aeaa3
patch 8.1.0418: MS-Windows: cannot separate Lua include and library dirs
Christian Brabandt <cb@256bit.org>
parents:
14734
diff
changeset
|
269 LUA_LIBDIR = $(LUA)/lib |
7968031aeaa3
patch 8.1.0418: MS-Windows: cannot separate Lua include and library dirs
Christian Brabandt <cb@256bit.org>
parents:
14734
diff
changeset
|
270 LUA_LIB = -L$(LUA_LIBDIR) -llua |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
271 endif |
6326 | 272 |
273 endif | |
274 | |
275 # MzScheme interface: | |
276 # MZSCHEME=[Path to MzScheme directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
277 # 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
|
278 # MZSCHEME_VER=[MzScheme version] (default is 3m_a0solc (6.6)) |
12489
7e6cb73e5ce0
patch 8.0.1124: use of MZSCHEME_VER is unclear
Christian Brabandt <cb@256bit.org>
parents:
12305
diff
changeset
|
279 # Used for the DLL file name. E.g.: |
7e6cb73e5ce0
patch 8.0.1124: use of MZSCHEME_VER is unclear
Christian Brabandt <cb@256bit.org>
parents:
12305
diff
changeset
|
280 # C:\Program Files (x86)\Racket\lib\libracket3m_XXXXXX.dll |
6326 | 281 # MZSCHEME_DEBUG=no |
282 ifdef MZSCHEME | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
283 ifndef DYNAMIC_MZSCHEME |
6326 | 284 DYNAMIC_MZSCHEME=yes |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
285 endif |
6326 | 286 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
287 ifndef MZSCHEME_VER |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
288 MZSCHEME_VER=3m_a0solc |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
289 endif |
6326 | 290 |
291 # for version 4.x we need to generate byte-code for Scheme base | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
292 ifndef MZSCHEME_GENERATE_BASE |
6326 | 293 MZSCHEME_GENERATE_BASE=no |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
294 endif |
6326 | 295 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
296 ifneq ($(wildcard $(MZSCHEME)/lib/msvc/libmzsch$(MZSCHEME_VER).lib),) |
6326 | 297 MZSCHEME_MAIN_LIB=mzsch |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
298 else |
6326 | 299 MZSCHEME_MAIN_LIB=racket |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
300 endif |
6326 | 301 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
302 ifndef MZSCHEME_PRECISE_GC |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
303 MZSCHEME_PRECISE_GC=no |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
304 ifneq ($(wildcard $(MZSCHEME)\lib\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll),) |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
305 ifeq ($(wildcard $(MZSCHEME)\lib\libmzgc$(MZSCHEME_VER).dll),) |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
306 MZSCHEME_PRECISE_GC=yes |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
307 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
308 else |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
309 ifneq ($(wildcard $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib),) |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
310 ifeq ($(wildcard $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib),) |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
311 MZSCHEME_PRECISE_GC=yes |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
312 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
313 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
314 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
315 endif |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
316 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
317 ifeq (no,$(DYNAMIC_MZSCHEME)) |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
318 ifeq (yes,$(MZSCHEME_PRECISE_GC)) |
6326 | 319 MZSCHEME_LIB=-l$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
320 else |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
321 MZSCHEME_LIB=-l$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER) -lmzgc$(MZSCHEME_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
322 endif |
6326 | 323 # the modern MinGW can dynamically link to dlls directly. |
324 # point MZSCHEME_DLLS to where you put libmzschXXXXXXX.dll and libgcXXXXXXX.dll | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
325 ifndef MZSCHEME_DLLS |
6326 | 326 MZSCHEME_DLLS=$(MZSCHEME) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
327 endif |
6326 | 328 MZSCHEME_LIBDIR=-L$(MZSCHEME_DLLS) -L$(MZSCHEME_DLLS)\lib |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
329 endif |
6326 | 330 |
331 endif | |
332 | |
333 # Python interface: | |
334 # PYTHON=[Path to Python directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
335 # 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
|
336 # PYTHON_VER=[Python version, eg 22, 23, ..., 27] (default is 27) |
6326 | 337 ifdef PYTHON |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
338 ifndef DYNAMIC_PYTHON |
6326 | 339 DYNAMIC_PYTHON=yes |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
340 endif |
6326 | 341 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
342 ifndef PYTHON_VER |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
343 PYTHON_VER=27 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
344 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
345 ifndef DYNAMIC_PYTHON_DLL |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
346 DYNAMIC_PYTHON_DLL=python$(PYTHON_VER).dll |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
347 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
348 ifdef PYTHON_HOME |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
349 PYTHON_HOME_DEF=-DPYTHON_HOME=\"$(PYTHON_HOME)\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
350 endif |
6326 | 351 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
352 ifeq (no,$(DYNAMIC_PYTHON)) |
6326 | 353 PYTHONLIB=-L$(PYTHON)/libs -lpython$(PYTHON_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
354 endif |
6326 | 355 # my include files are in 'win32inc' on Linux, and 'include' in the standard |
356 # NT distro (ActiveState) | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
357 ifndef PYTHONINC |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
358 ifeq ($(CROSS),no) |
6326 | 359 PYTHONINC=-I $(PYTHON)/include |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
360 else |
6326 | 361 PYTHONINC=-I $(PYTHON)/win32inc |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
362 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
363 endif |
7456
2c5e813e8852
commit https://github.com/vim/vim/commit/3c6f92e52ef15df4aa248ce00eacd65928044210
Christian Brabandt <cb@256bit.org>
parents:
6872
diff
changeset
|
364 endif |
6326 | 365 |
366 # Python3 interface: | |
367 # PYTHON3=[Path to Python3 directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
368 # DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically) | |
13018
8862bf5adf7b
patch 8.0.1385: Python 3.5 is getting old
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
369 # PYTHON3_VER=[Python3 version, eg 31, 32] (default is 36) |
6326 | 370 ifdef PYTHON3 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
371 ifndef DYNAMIC_PYTHON3 |
6326 | 372 DYNAMIC_PYTHON3=yes |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
373 endif |
6326 | 374 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
375 ifndef PYTHON3_VER |
13018
8862bf5adf7b
patch 8.0.1385: Python 3.5 is getting old
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
376 PYTHON3_VER=36 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
377 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
378 ifndef DYNAMIC_PYTHON3_DLL |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
379 DYNAMIC_PYTHON3_DLL=python$(PYTHON3_VER).dll |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
380 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
381 ifdef PYTHON3_HOME |
8076
3b0127287851
commit https://github.com/vim/vim/commit/acd58ef676bb9559ac0f635f66b62f4602929c87
Christian Brabandt <cb@256bit.org>
parents:
8064
diff
changeset
|
382 PYTHON3_HOME_DEF=-DPYTHON3_HOME=L\"$(PYTHON3_HOME)\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
383 endif |
6326 | 384 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
385 ifeq (no,$(DYNAMIC_PYTHON3)) |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
386 PYTHON3LIB=-L$(PYTHON3)/libs -lpython$(PYTHON3_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
387 endif |
6326 | 388 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
389 ifndef PYTHON3INC |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
390 ifeq ($(CROSS),no) |
6326 | 391 PYTHON3INC=-I $(PYTHON3)/include |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
392 else |
6326 | 393 PYTHON3INC=-I $(PYTHON3)/win32inc |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
394 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
395 endif |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
396 endif |
6326 | 397 |
398 # TCL interface: | |
399 # TCL=[Path to TCL directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
400 # 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
|
401 # 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
|
402 # 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
|
403 # You must set TCL_VER_LONG when you set TCL_VER. |
12218
cd366d80d53e
patch 8.0.0989: ActiveTcl dll name has changed in 8.6.6
Christian Brabandt <cb@256bit.org>
parents:
12210
diff
changeset
|
404 # TCL_DLL=[TCL dll name, eg tcl86.dll] (default is tcl86.dll) |
6326 | 405 ifdef TCL |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
406 ifndef DYNAMIC_TCL |
6326 | 407 DYNAMIC_TCL=yes |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
408 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
409 ifndef TCL_VER |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
410 TCL_VER = 86 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
411 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
412 ifndef TCL_VER_LONG |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
413 TCL_VER_LONG = 8.6 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
414 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
415 ifndef TCL_DLL |
12218
cd366d80d53e
patch 8.0.0989: ActiveTcl dll name has changed in 8.6.6
Christian Brabandt <cb@256bit.org>
parents:
12210
diff
changeset
|
416 TCL_DLL = tcl$(TCL_VER).dll |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
417 endif |
6326 | 418 TCLINC += -I$(TCL)/include |
419 endif | |
420 | |
421 | |
422 # Ruby interface: | |
423 # RUBY=[Path to Ruby directory] (Set inside Make_cyg.mak or Make_ming.mak) | |
13734
600a38fe5c00
patch 8.0.1739: MS-Windows with msys2 cannot build Ruby statically
Christian Brabandt <cb@256bit.org>
parents:
13658
diff
changeset
|
424 # DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically, "no" for static) |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
425 # 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
|
426 # 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
|
427 # (default is 2.2.0) |
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
428 # You must set RUBY_API_VER_LONG when changing RUBY_VER. |
6326 | 429 # Note: If you use Ruby 1.9.3, set as follows: |
430 # RUBY_VER=19 | |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
431 # RUBY_API_VER_LONG=1.9.1 (not 1.9.3, because the API version is 1.9.1.) |
6326 | 432 ifdef RUBY |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
433 ifndef DYNAMIC_RUBY |
6326 | 434 DYNAMIC_RUBY=yes |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
435 endif |
6326 | 436 # Set default value |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
437 ifndef RUBY_VER |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
438 RUBY_VER = 22 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
439 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
440 ifndef RUBY_VER_LONG |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
441 RUBY_VER_LONG = 2.2.0 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
442 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
443 ifndef RUBY_API_VER_LONG |
10149
cd9823840f2e
commit https://github.com/vim/vim/commit/0eaadec6b275a8add49242e1940855fcd154ba64
Christian Brabandt <cb@256bit.org>
parents:
10138
diff
changeset
|
444 RUBY_API_VER_LONG = $(RUBY_VER_LONG) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
445 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
446 ifndef RUBY_API_VER |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
447 RUBY_API_VER = $(subst .,,$(RUBY_API_VER_LONG)) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
448 endif |
6326 | 449 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
450 ifndef RUBY_PLATFORM |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
451 ifeq ($(RUBY_VER), 16) |
6326 | 452 RUBY_PLATFORM = i586-mswin32 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
453 else ifneq ($(wildcard $(RUBY)/lib/ruby/$(RUBY_API_VER_LONG)/i386-mingw32),) |
6326 | 454 RUBY_PLATFORM = i386-mingw32 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
455 else ifneq ($(wildcard $(RUBY)/lib/ruby/$(RUBY_API_VER_LONG)/x64-mingw32),) |
6326 | 456 RUBY_PLATFORM = x64-mingw32 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
457 else |
6326 | 458 RUBY_PLATFORM = i386-mswin32 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
459 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
460 endif |
6326 | 461 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
462 ifndef RUBY_INSTALL_NAME |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
463 ifeq ($(RUBY_VER), 16) |
6326 | 464 RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
465 else |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
466 ifndef RUBY_MSVCRT_NAME |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
467 # 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
|
468 RUBY_MSVCRT_NAME = msvcrt |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
469 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
470 ifeq ($(ARCH),x86-64) |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
471 RUBY_INSTALL_NAME = x64-$(RUBY_MSVCRT_NAME)-ruby$(RUBY_API_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
472 else |
7521
665330ac1d78
commit https://github.com/vim/vim/commit/0bee2fe25aca7e8e5fefe55fe0f2c0e5e0878a98
Christian Brabandt <cb@256bit.org>
parents:
7456
diff
changeset
|
473 RUBY_INSTALL_NAME = $(RUBY_MSVCRT_NAME)-ruby$(RUBY_API_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
474 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
475 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
476 endif |
6326 | 477 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
478 ifeq (19, $(word 1,$(sort 19 $(RUBY_VER)))) |
6326 | 479 RUBY_19_OR_LATER = 1 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
480 endif |
6326 | 481 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
482 ifdef RUBY_19_OR_LATER |
14818
63b2ee46537f
patch 8.1.0421: MS-Windows: Ruby path is wrong for Ruby 1.9 and later
Christian Brabandt <cb@256bit.org>
parents:
14812
diff
changeset
|
483 RUBYINC = -I $(RUBY)/include/ruby-$(RUBY_API_VER_LONG) -I $(RUBY)/include/ruby-$(RUBY_API_VER_LONG)/$(RUBY_PLATFORM) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
484 else |
10138
8bfcb960e6bd
commit https://github.com/vim/vim/commit/6384c5db8dda70076c878d393ba19a1510695228
Christian Brabandt <cb@256bit.org>
parents:
9583
diff
changeset
|
485 RUBYINC = -I $(RUBY)/lib/ruby/$(RUBY_API_VER_LONG)/$(RUBY_PLATFORM) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
486 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
487 ifeq (no, $(DYNAMIC_RUBY)) |
6326 | 488 RUBYLIB = -L$(RUBY)/lib -l$(RUBY_INSTALL_NAME) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
489 endif |
6326 | 490 |
491 endif # RUBY | |
492 | |
493 # See feature.h for a list of options. | |
494 # Any other defines can be included here. | |
15886
cdb9cbe731b3
patch 8.1.0949: MS-windows defines GUI macros different than other systems
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
495 DEF_GUI=-DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD |
6326 | 496 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
|
497 -DHAVE_PATHDEF -DFEAT_$(FEATURES) -DHAVE_STDINT_H |
6326 | 498 ifeq ($(ARCH),x86-64) |
499 DEFINES+=-DMS_WIN64 | |
500 endif | |
501 | |
502 #>>>>> end of choices | |
503 ########################################################################### | |
504 | |
14937
d36dd08d36c1
patch 8.1.0480: MinGW build file uses different -I flags than MVC
Bram Moolenaar <Bram@vim.org>
parents:
14933
diff
changeset
|
505 CFLAGS = -I. -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
|
506 CXXFLAGS = -std=gnu++11 |
6326 | 507 WINDRES_FLAGS = --preprocessor="$(WINDRES_CC) -E -xc" -DRC_INVOKED |
508 EXTRA_LIBS = | |
509 | |
510 ifdef GETTEXT | |
511 DEFINES += -DHAVE_GETTEXT -DHAVE_LOCALE_H | |
512 GETTEXTINCLUDE = $(GETTEXT)/include | |
513 GETTEXTLIB = $(INTLPATH) | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
514 ifeq (yes, $(GETTEXT)) |
6326 | 515 DEFINES += -DDYNAMIC_GETTEXT |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
516 else ifdef DYNAMIC_GETTEXT |
6326 | 517 DEFINES += -D$(DYNAMIC_GETTEXT) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
518 ifdef GETTEXT_DYNAMIC |
6326 | 519 DEFINES += -DGETTEXT_DYNAMIC -DGETTEXT_DLL=\"$(GETTEXT_DYNAMIC)\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
520 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
521 endif |
6326 | 522 endif |
523 | |
524 ifdef PERL | |
6872 | 525 CFLAGS += -I$(PERLLIBS) -DFEAT_PERL -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
526 ifeq (yes, $(DYNAMIC_PERL)) |
6326 | 527 CFLAGS += -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"perl$(PERL_VER).dll\" |
528 EXTRA_LIBS += -L$(PERLLIBS) -lperl$(PERL_VER) | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
529 endif |
6326 | 530 endif |
531 | |
532 ifdef LUA | |
14812
7968031aeaa3
patch 8.1.0418: MS-Windows: cannot separate Lua include and library dirs
Christian Brabandt <cb@256bit.org>
parents:
14734
diff
changeset
|
533 LUA_INCDIR = $(LUA)/include |
7968031aeaa3
patch 8.1.0418: MS-Windows: cannot separate Lua include and library dirs
Christian Brabandt <cb@256bit.org>
parents:
14734
diff
changeset
|
534 CFLAGS += -I$(LUA_INCDIR) -I$(LUA) -DFEAT_LUA |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
535 ifeq (yes, $(DYNAMIC_LUA)) |
6326 | 536 CFLAGS += -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
537 endif |
6326 | 538 endif |
539 | |
540 ifdef MZSCHEME | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
541 ifndef MZSCHEME_COLLECTS |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
542 MZSCHEME_COLLECTS=$(MZSCHEME)/collects |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
543 ifeq (yes, $(UNDER_CYGWIN)) |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
544 MZSCHEME_COLLECTS:=$(shell cygpath -m $(MZSCHEME_COLLECTS) | sed -e 's/ /\\ /g') |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
545 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
546 endif |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
547 CFLAGS += -I$(MZSCHEME)/include -DFEAT_MZSCHEME -DMZSCHEME_COLLECTS=\"$(MZSCHEME_COLLECTS)\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
548 ifeq (yes, $(DYNAMIC_MZSCHEME)) |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
549 ifeq (yes, $(MZSCHEME_PRECISE_GC)) |
7609
77a14f3bc18b
commit https://github.com/vim/vim/commit/4e640bd930d133889dbc9f9a77e29bab902e3b7d
Christian Brabandt <cb@256bit.org>
parents:
7532
diff
changeset
|
550 # 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
|
551 CFLAGS += -DDYNAMIC_MZSCHEME -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" -DDYNAMIC_MZGC_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
552 else |
6326 | 553 CFLAGS += -DDYNAMIC_MZSCHEME -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
554 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
555 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
556 ifeq (yes, "$(MZSCHEME_DEBUG)") |
6326 | 557 CFLAGS += -DMZSCHEME_FORCE_GC |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
558 endif |
6326 | 559 endif |
560 | |
561 ifdef RUBY | |
562 CFLAGS += -DFEAT_RUBY $(RUBYINC) | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
563 ifeq (yes, $(DYNAMIC_RUBY)) |
6326 | 564 CFLAGS += -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\" |
565 CFLAGS += -DDYNAMIC_RUBY_VER=$(RUBY_VER) | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
566 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
567 ifeq (no, $(DYNAMIC_RUBY)) |
13738
1d8601bdd6e6
patch 8.0.1741: MS-Windows with msys2 cannot build Ruby statically
Christian Brabandt <cb@256bit.org>
parents:
13734
diff
changeset
|
568 CFLAGS += -DRUBY_VERSION=$(RUBY_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
569 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
570 ifneq ($(findstring w64-mingw32,$(CC)),) |
6326 | 571 # A workaround for MinGW-w64 |
572 CFLAGS += -DHAVE_STRUCT_TIMESPEC -DHAVE_STRUCT_TIMEZONE | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
573 endif |
6326 | 574 endif |
575 | |
576 ifdef PYTHON | |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
577 CFLAGS += -DFEAT_PYTHON |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
578 ifeq (yes, $(DYNAMIC_PYTHON)) |
7532
0acbe61244ac
commit https://github.com/vim/vim/commit/449538c3d2f7089dcaa1a888f09f41714faec9a6
Christian Brabandt <cb@256bit.org>
parents:
7523
diff
changeset
|
579 CFLAGS += -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"$(DYNAMIC_PYTHON_DLL)\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
580 endif |
6326 | 581 endif |
582 | |
8120
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
583 ifdef PYTHON3 |
350f8040bd37
commit https://github.com/vim/vim/commit/223b723be0703137cf6373e23f8ae5c02e92ef82
Christian Brabandt <cb@256bit.org>
parents:
8076
diff
changeset
|
584 CFLAGS += -DFEAT_PYTHON3 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
585 ifeq (yes, $(DYNAMIC_PYTHON3)) |
7695
a865f9773cb2
commit https://github.com/vim/vim/commit/a7c3795a2e65233ba2d187d680acc83bf6bf4ef5
Christian Brabandt <cb@256bit.org>
parents:
7609
diff
changeset
|
586 CFLAGS += -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL=\"$(DYNAMIC_PYTHON3_DLL)\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
587 endif |
6326 | 588 endif |
589 | |
590 ifdef TCL | |
591 CFLAGS += -DFEAT_TCL $(TCLINC) | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
592 ifeq (yes, $(DYNAMIC_TCL)) |
12218
cd366d80d53e
patch 8.0.0989: ActiveTcl dll name has changed in 8.6.6
Christian Brabandt <cb@256bit.org>
parents:
12210
diff
changeset
|
593 CFLAGS += -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"$(TCL_DLL)\" -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\" |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
594 endif |
6326 | 595 endif |
596 | |
597 ifeq ($(POSTSCRIPT),yes) | |
598 DEFINES += -DMSWINPS | |
599 endif | |
600 | |
601 ifeq (yes, $(OLE)) | |
602 DEFINES += -DFEAT_OLE | |
603 endif | |
604 | |
605 ifeq ($(CSCOPE),yes) | |
606 DEFINES += -DFEAT_CSCOPE | |
607 endif | |
608 | |
609 ifeq ($(NETBEANS),yes) | |
610 # Only allow NETBEANS for a GUI build. | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
611 ifeq (yes, $(GUI)) |
6326 | 612 DEFINES += -DFEAT_NETBEANS_INTG |
613 | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
614 ifeq ($(NBDEBUG), yes) |
6326 | 615 DEFINES += -DNBDEBUG |
616 NBDEBUG_INCL = nbdebug.h | |
617 NBDEBUG_SRC = nbdebug.c | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
618 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
619 endif |
6326 | 620 endif |
621 | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
622 ifeq ($(CHANNEL),yes) |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8140
diff
changeset
|
623 DEFINES += -DFEAT_JOB_CHANNEL |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
624 endif |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
625 |
11696
0a6136dfce35
patch 8.0.0731: cannot build the terminal feature on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10442
diff
changeset
|
626 ifeq ($(TERMINAL),yes) |
0a6136dfce35
patch 8.0.0731: cannot build the terminal feature on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10442
diff
changeset
|
627 DEFINES += -DFEAT_TERMINAL |
11782
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
628 TERM_DEPS = \ |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
629 libvterm/include/vterm.h \ |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
630 libvterm/include/vterm_keycodes.h \ |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
631 libvterm/src/rect.h \ |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
632 libvterm/src/utf8.h \ |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
633 libvterm/src/vterm_internal.h |
11696
0a6136dfce35
patch 8.0.0731: cannot build the terminal feature on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10442
diff
changeset
|
634 endif |
0a6136dfce35
patch 8.0.0731: cannot build the terminal feature on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10442
diff
changeset
|
635 |
6326 | 636 # DirectWrite (DirectX) |
637 ifeq ($(DIRECTX),yes) | |
638 # Only allow DirectWrite for a GUI build. | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
639 ifeq (yes, $(GUI)) |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
640 DEFINES += -DFEAT_DIRECTX -DDYNAMIC_DIRECTX |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
641 ifneq ($(COLOR_EMOJI),no) |
13658
c83ec560409c
patch 8.0.1701: can disable COLOR_EMOJI with MSVC but not MinGW
Christian Brabandt <cb@256bit.org>
parents:
13468
diff
changeset
|
642 DEFINES += -DFEAT_DIRECTX_COLOR_EMOJI |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
643 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
644 endif |
6326 | 645 endif |
646 | |
647 # Only allow XPM for a GUI build. | |
648 ifeq (yes, $(GUI)) | |
649 | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
650 ifndef XPM |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
651 ifeq ($(ARCH),i386) |
6326 | 652 XPM = xpm/x86 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
653 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
654 ifeq ($(ARCH),i486) |
6326 | 655 XPM = xpm/x86 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
656 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
657 ifeq ($(ARCH),i586) |
6326 | 658 XPM = xpm/x86 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
659 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
660 ifeq ($(ARCH),i686) |
6326 | 661 XPM = xpm/x86 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
662 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
663 ifeq ($(ARCH),x86-64) |
6326 | 664 XPM = xpm/x64 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
665 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
666 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
667 ifdef XPM |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
668 ifneq ($(XPM),no) |
6326 | 669 CFLAGS += -DFEAT_XPM_W32 -I $(XPM)/include -I $(XPM)/../include |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
670 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
671 endif |
6326 | 672 |
673 endif | |
674 | |
675 ifeq ($(DEBUG),yes) | |
676 CFLAGS += -g -fstack-check | |
677 DEBUG_SUFFIX=d | |
678 else | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
679 ifeq ($(OPTIMIZE), SIZE) |
6326 | 680 CFLAGS += -Os |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
681 else ifeq ($(OPTIMIZE), MAXSPEED) |
6326 | 682 CFLAGS += -O3 |
683 CFLAGS += -fomit-frame-pointer -freg-struct-return | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
684 else # SPEED |
6326 | 685 CFLAGS += -O2 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
686 endif |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
687 LFLAGS += -s |
6326 | 688 endif |
689 | |
14133
352c2832d17f
patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
13738
diff
changeset
|
690 LIB = -lkernel32 -luser32 -lgdi32 -ladvapi32 -lcomdlg32 -lcomctl32 -lnetapi32 -lversion |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
691 GUIOBJ = $(OUTDIR)/gui.o $(OUTDIR)/gui_w32.o $(OUTDIR)/gui_beval.o |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
692 CUIOBJ = $(OUTDIR)/iscygpty.o |
6326 | 693 OBJ = \ |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
694 $(OUTDIR)/arabic.o \ |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
695 $(OUTDIR)/autocmd.o \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12628
diff
changeset
|
696 $(OUTDIR)/beval.o \ |
15454
1d2b5c016f17
patch 8.1.0735: cannot handle binary data
Bram Moolenaar <Bram@vim.org>
parents:
15450
diff
changeset
|
697 $(OUTDIR)/blob.o \ |
6326 | 698 $(OUTDIR)/blowfish.o \ |
699 $(OUTDIR)/buffer.o \ | |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
700 $(OUTDIR)/change.o \ |
6326 | 701 $(OUTDIR)/charset.o \ |
702 $(OUTDIR)/crypt.o \ | |
703 $(OUTDIR)/crypt_zip.o \ | |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16198
diff
changeset
|
704 $(OUTDIR)/debugger.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9507
diff
changeset
|
705 $(OUTDIR)/dict.o \ |
6326 | 706 $(OUTDIR)/diff.o \ |
707 $(OUTDIR)/digraph.o \ | |
708 $(OUTDIR)/edit.o \ | |
709 $(OUTDIR)/eval.o \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
710 $(OUTDIR)/evalfunc.o \ |
6326 | 711 $(OUTDIR)/ex_cmds.o \ |
712 $(OUTDIR)/ex_cmds2.o \ | |
713 $(OUTDIR)/ex_docmd.o \ | |
714 $(OUTDIR)/ex_eval.o \ | |
715 $(OUTDIR)/ex_getln.o \ | |
716 $(OUTDIR)/fileio.o \ | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15707
diff
changeset
|
717 $(OUTDIR)/findfile.o \ |
6326 | 718 $(OUTDIR)/fold.o \ |
719 $(OUTDIR)/getchar.o \ | |
720 $(OUTDIR)/hardcopy.o \ | |
721 $(OUTDIR)/hashtab.o \ | |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
722 $(OUTDIR)/indent.o \ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16068
diff
changeset
|
723 $(OUTDIR)/insexpand.o \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7699
diff
changeset
|
724 $(OUTDIR)/json.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9507
diff
changeset
|
725 $(OUTDIR)/list.o \ |
6326 | 726 $(OUTDIR)/main.o \ |
727 $(OUTDIR)/mark.o \ | |
728 $(OUTDIR)/memfile.o \ | |
729 $(OUTDIR)/memline.o \ | |
730 $(OUTDIR)/menu.o \ | |
731 $(OUTDIR)/message.o \ | |
732 $(OUTDIR)/misc1.o \ | |
733 $(OUTDIR)/misc2.o \ | |
734 $(OUTDIR)/move.o \ | |
735 $(OUTDIR)/mbyte.o \ | |
736 $(OUTDIR)/normal.o \ | |
737 $(OUTDIR)/ops.o \ | |
738 $(OUTDIR)/option.o \ | |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
739 $(OUTDIR)/os_mswin.o \ |
6326 | 740 $(OUTDIR)/os_win32.o \ |
741 $(OUTDIR)/pathdef.o \ | |
742 $(OUTDIR)/popupmnu.o \ | |
743 $(OUTDIR)/quickfix.o \ | |
744 $(OUTDIR)/regexp.o \ | |
745 $(OUTDIR)/screen.o \ | |
746 $(OUTDIR)/search.o \ | |
747 $(OUTDIR)/sha256.o \ | |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
15201
diff
changeset
|
748 $(OUTDIR)/sign.o \ |
6326 | 749 $(OUTDIR)/spell.o \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
750 $(OUTDIR)/spellfile.o \ |
6326 | 751 $(OUTDIR)/syntax.o \ |
752 $(OUTDIR)/tag.o \ | |
753 $(OUTDIR)/term.o \ | |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14958
diff
changeset
|
754 $(OUTDIR)/textprop.o \ |
6326 | 755 $(OUTDIR)/ui.o \ |
756 $(OUTDIR)/undo.o \ | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
757 $(OUTDIR)/usercmd.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9507
diff
changeset
|
758 $(OUTDIR)/userfunc.o \ |
6326 | 759 $(OUTDIR)/version.o \ |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
760 $(OUTDIR)/winclip.o \ |
6326 | 761 $(OUTDIR)/window.o |
762 | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
763 ifeq ($(VIMDLL),yes) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
764 OBJ += $(OUTDIR)/os_w32dll.o $(OUTDIR)/vimrcd.o |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
765 EXEOBJC = $(OUTDIR)/os_w32exec.o $(OUTDIR)/vimrcc.o |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
766 EXEOBJG = $(OUTDIR)/os_w32exeg.o $(OUTDIR)/vimrcg.o |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
767 else |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
768 OBJ += $(OUTDIR)/os_w32exe.o $(OUTDIR)/vimrc.o |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
769 endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
770 |
6326 | 771 ifdef PERL |
772 OBJ += $(OUTDIR)/if_perl.o | |
773 endif | |
774 ifdef LUA | |
775 OBJ += $(OUTDIR)/if_lua.o | |
776 endif | |
777 ifdef MZSCHEME | |
778 OBJ += $(OUTDIR)/if_mzsch.o | |
779 MZSCHEME_INCL = if_mzsch.h | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
780 ifeq (yes,$(MZSCHEME_GENERATE_BASE)) |
6326 | 781 CFLAGS += -DINCLUDE_MZSCHEME_BASE |
782 MZ_EXTRA_DEP += mzscheme_base.c | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
783 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
784 ifeq (yes,$(MZSCHEME_PRECISE_GC)) |
6326 | 785 CFLAGS += -DMZ_PRECISE_GC |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
786 endif |
6326 | 787 endif |
788 ifdef PYTHON | |
789 OBJ += $(OUTDIR)/if_python.o | |
790 endif | |
791 ifdef PYTHON3 | |
792 OBJ += $(OUTDIR)/if_python3.o | |
793 endif | |
794 ifdef RUBY | |
795 OBJ += $(OUTDIR)/if_ruby.o | |
796 endif | |
797 ifdef TCL | |
798 OBJ += $(OUTDIR)/if_tcl.o | |
799 endif | |
800 ifeq ($(CSCOPE),yes) | |
801 OBJ += $(OUTDIR)/if_cscope.o | |
802 endif | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
803 |
6326 | 804 ifeq ($(NETBEANS),yes) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
805 ifneq ($(CHANNEL),yes) |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
806 # Cannot use Netbeans without CHANNEL |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
807 NETBEANS=no |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
808 else ifneq (yes, $(GUI)) |
8051
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
809 # Cannot use Netbeans without GUI. |
7e298e8c5741
commit https://github.com/vim/vim/commit/44d571868f4fcf000e8b03ee0a350f1f8131c9ca
Christian Brabandt <cb@256bit.org>
parents:
7755
diff
changeset
|
810 NETBEANS=no |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
811 else |
6326 | 812 OBJ += $(OUTDIR)/netbeans.o |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
813 endif |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
814 endif |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
815 |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
816 ifeq ($(CHANNEL),yes) |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
817 OBJ += $(OUTDIR)/channel.o |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
818 LIB += -lwsock32 |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
819 endif |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
820 |
6326 | 821 ifeq ($(DIRECTX),yes) |
822 # Only allow DIRECTX for a GUI build. | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
823 ifeq (yes, $(GUI)) |
6326 | 824 OBJ += $(OUTDIR)/gui_dwrite.o |
825 LIB += -ld2d1 -ldwrite | |
826 USE_STDCPLUS = yes | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
827 endif |
6326 | 828 endif |
829 ifneq ($(XPM),no) | |
830 # Only allow XPM for a GUI build. | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
831 ifeq (yes, $(GUI)) |
6326 | 832 OBJ += $(OUTDIR)/xpm_w32.o |
833 # You'll need libXpm.a from http://gnuwin32.sf.net | |
834 LIB += -L$(XPM)/lib -lXpm | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
835 endif |
6326 | 836 endif |
837 | |
11696
0a6136dfce35
patch 8.0.0731: cannot build the terminal feature on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10442
diff
changeset
|
838 ifeq ($(TERMINAL),yes) |
11782
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
839 OBJ += $(OUTDIR)/terminal.o \ |
14734
2c72fa16aa70
patch 8.1.0379: build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
840 $(OUTDIR)/encoding.o \ |
2c72fa16aa70
patch 8.1.0379: build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
841 $(OUTDIR)/keyboard.o \ |
2c72fa16aa70
patch 8.1.0379: build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
842 $(OUTDIR)/mouse.o \ |
2c72fa16aa70
patch 8.1.0379: build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
843 $(OUTDIR)/parser.o \ |
2c72fa16aa70
patch 8.1.0379: build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
844 $(OUTDIR)/pen.o \ |
2c72fa16aa70
patch 8.1.0379: build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
845 $(OUTDIR)/termscreen.o \ |
2c72fa16aa70
patch 8.1.0379: build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
846 $(OUTDIR)/state.o \ |
2c72fa16aa70
patch 8.1.0379: build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
847 $(OUTDIR)/unicode.o \ |
2c72fa16aa70
patch 8.1.0379: build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
14696
diff
changeset
|
848 $(OUTDIR)/vterm.o |
11696
0a6136dfce35
patch 8.0.0731: cannot build the terminal feature on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10442
diff
changeset
|
849 endif |
0a6136dfce35
patch 8.0.0731: cannot build the terminal feature on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
10442
diff
changeset
|
850 |
14696
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
851 # Include xdiff |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
852 OBJ += $(OUTDIR)/xdiffi.o \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
853 $(OUTDIR)/xemit.o \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
854 $(OUTDIR)/xprepare.o \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
855 $(OUTDIR)/xutils.o \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
856 $(OUTDIR)/xhistogram.o \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
857 $(OUTDIR)/xpatience.o |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
858 |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
859 XDIFF_DEPS = \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
860 xdiff/xdiff.h \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
861 xdiff/xdiffi.h \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
862 xdiff/xemit.h \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
863 xdiff/xinclude.h \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
864 xdiff/xmacros.h \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
865 xdiff/xprepare.h \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
866 xdiff/xtypes.h \ |
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
867 xdiff/xutils.h |
6326 | 868 |
869 ifdef MZSCHEME | |
870 MZSCHEME_SUFFIX = Z | |
871 endif | |
872 | |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
873 LFLAGS += -municode |
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
874 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
875 ifeq ($(VIMDLL),yes) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
876 VIMEXE := vim$(DEBUG_SUFFIX).exe |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
877 GVIMEXE := gvim$(DEBUG_SUFFIX).exe |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
878 ifeq ($(ARCH),x86-64) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
879 VIMDLLBASE := vim64$(DEBUG_SUFFIX) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
880 else |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
881 VIMDLLBASE := vim32$(DEBUG_SUFFIX) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
882 endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
883 TARGET = $(VIMDLLBASE).dll |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
884 LFLAGS += -shared |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
885 EXELFLAGS += -municode |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
886 ifneq ($(DEBUG),yes) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
887 EXELFLAGS += -s |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
888 endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
889 DEFINES += $(DEF_GUI) -DVIMDLL |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
890 OBJ += $(GUIOBJ) $(CUIOBJ) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
891 OUTDIR = dobj$(DEBUG_SUFFIX)$(MZSCHEME_SUFFIX)$(ARCH) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
892 MAIN_TARGET = $(GVIMEXE) $(VIMEXE) $(VIMDLLBASE).dll |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
893 else ifeq ($(GUI),yes) |
6326 | 894 TARGET := gvim$(DEBUG_SUFFIX).exe |
895 DEFINES += $(DEF_GUI) | |
896 OBJ += $(GUIOBJ) | |
897 LFLAGS += -mwindows | |
898 OUTDIR = gobj$(DEBUG_SUFFIX)$(MZSCHEME_SUFFIX)$(ARCH) | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
899 MAIN_TARGET = $(TARGET) |
6326 | 900 else |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
901 OBJ += $(CUIOBJ) |
6326 | 902 TARGET := vim$(DEBUG_SUFFIX).exe |
903 OUTDIR = obj$(DEBUG_SUFFIX)$(MZSCHEME_SUFFIX)$(ARCH) | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
904 MAIN_TARGET = $(TARGET) |
6326 | 905 endif |
906 | |
907 ifdef GETTEXT | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
908 ifneq (yes, $(GETTEXT)) |
6326 | 909 CFLAGS += -I$(GETTEXTINCLUDE) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
910 ifndef STATIC_GETTEXT |
6326 | 911 LIB += -L$(GETTEXTLIB) -l$(INTLLIB) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
912 ifeq (USE_SAFE_GETTEXT_DLL, $(DYNAMIC_GETTEXT)) |
6326 | 913 OBJ+=$(SAFE_GETTEXT_DLL_OBJ) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
914 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
915 else |
6326 | 916 LIB += -L$(GETTEXTLIB) -lintl |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
917 endif |
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
918 endif |
6326 | 919 endif |
920 | |
921 ifdef PERL | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
922 ifeq (no, $(DYNAMIC_PERL)) |
6326 | 923 LIB += -L$(PERLLIBS) -lperl$(PERL_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
924 endif |
6326 | 925 endif |
926 | |
927 ifdef TCL | |
928 LIB += -L$(TCL)/lib | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
929 ifeq (yes, $(DYNAMIC_TCL)) |
6326 | 930 LIB += -ltclstub$(TCL_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
931 else |
6326 | 932 LIB += -ltcl$(TCL_VER) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
933 endif |
6326 | 934 endif |
935 | |
936 ifeq (yes, $(OLE)) | |
937 LIB += -loleaut32 | |
938 OBJ += $(OUTDIR)/if_ole.o | |
939 USE_STDCPLUS = yes | |
940 endif | |
941 | |
942 ifeq (yes, $(IME)) | |
943 DEFINES += -DFEAT_MBYTE_IME | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
944 ifeq (yes, $(DYNAMIC_IME)) |
6326 | 945 DEFINES += -DDYNAMIC_IME |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
946 else |
6326 | 947 LIB += -limm32 |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
948 endif |
6326 | 949 endif |
950 | |
951 ifdef ICONV | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
952 ifneq (yes, $(ICONV)) |
6326 | 953 LIB += -L$(ICONV) |
954 CFLAGS += -I$(ICONV) | |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
955 endif |
6326 | 956 DEFINES+=-DDYNAMIC_ICONV |
957 endif | |
958 | |
959 ifeq (yes, $(USE_STDCPLUS)) | |
14958
b898f9093199
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
Bram Moolenaar <Bram@vim.org>
parents:
14943
diff
changeset
|
960 LINK = $(CXX) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
961 ifeq (yes, $(STATIC_STDCPLUS)) |
15707
be41b51f69c7
patch 8.1.0861: building with MinGW and static libc doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
962 #LIB += -static-libstdc++ -static-libgcc |
15912
57a353715a8f
patch 8.1.0962: building with MinGW and static libs doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
15886
diff
changeset
|
963 LIB += -Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
964 endif |
6326 | 965 else |
14958
b898f9093199
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
Bram Moolenaar <Bram@vim.org>
parents:
14943
diff
changeset
|
966 LINK = $(CC) |
6326 | 967 endif |
968 | |
10442
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
969 ifeq (yes, $(STATIC_WINPTHREAD)) |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
970 ifeq (yes, $(HAS_GCC_EH)) |
14958
b898f9093199
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
Bram Moolenaar <Bram@vim.org>
parents:
14943
diff
changeset
|
971 LIB += -lgcc_eh |
16640
92ad5eb7afcb
patch 8.1.1322: Cygwin makefile is not nicely indented
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
972 endif |
10442
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
973 LIB += -Wl,-Bstatic -lwinpthread -Wl,-Bdynamic |
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
974 endif |
70680eba1940
commit https://github.com/vim/vim/commit/e3af763d5e6b90a9b5d5706920e669fd8f0b6c77
Christian Brabandt <cb@256bit.org>
parents:
10149
diff
changeset
|
975 |
14820
8ff32a34f25e
patch 8.1.0422: cannot create map file with MinGW
Christian Brabandt <cb@256bit.org>
parents:
14818
diff
changeset
|
976 ifeq (yes, $(MAP)) |
8ff32a34f25e
patch 8.1.0422: cannot create map file with MinGW
Christian Brabandt <cb@256bit.org>
parents:
14818
diff
changeset
|
977 LFLAGS += -Wl,-Map=$(TARGET).map |
8ff32a34f25e
patch 8.1.0422: cannot create map file with MinGW
Christian Brabandt <cb@256bit.org>
parents:
14818
diff
changeset
|
978 endif |
8ff32a34f25e
patch 8.1.0422: cannot create map file with MinGW
Christian Brabandt <cb@256bit.org>
parents:
14818
diff
changeset
|
979 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
980 all: $(MAIN_TARGET) vimrun.exe xxd/xxd.exe tee/tee.exe install.exe uninstal.exe GvimExt/gvimext.dll |
6326 | 981 |
982 vimrun.exe: vimrun.c | |
983 $(CC) $(CFLAGS) -o vimrun.exe vimrun.c $(LIB) | |
984 | |
985 install.exe: dosinst.c | |
986 $(CC) $(CFLAGS) -o install.exe dosinst.c $(LIB) -lole32 -luuid | |
987 | |
988 uninstal.exe: uninstal.c | |
989 $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB) | |
990 | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
991 ifeq ($(VIMDLL),yes) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
992 $(TARGET): $(OUTDIR) $(OBJ) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
993 $(LINK) $(CFLAGS) $(LFLAGS) -o $@ $(OBJ) $(LIB) -lole32 -luuid -lgdi32 $(LUA_LIB) $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(PYTHON3LIB) $(RUBYLIB) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
994 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
995 $(GVIMEXE): $(OUTDIR) $(EXEOBJG) $(VIMDLLBASE).dll |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
996 $(CC) -L. $(EXELFLAGS) -mwindows -o $@ $(EXEOBJG) -l$(VIMDLLBASE) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
997 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
998 $(VIMEXE): $(OUTDIR) $(EXEOBJC) $(VIMDLLBASE).dll |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
999 $(CC) -L. $(EXELFLAGS) -o $@ $(EXEOBJC) -l$(VIMDLLBASE) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1000 else |
6326 | 1001 $(TARGET): $(OUTDIR) $(OBJ) |
14958
b898f9093199
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
Bram Moolenaar <Bram@vim.org>
parents:
14943
diff
changeset
|
1002 $(LINK) $(CFLAGS) $(LFLAGS) -o $@ $(OBJ) $(LIB) -lole32 -luuid $(LUA_LIB) $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(PYTHON3LIB) $(RUBYLIB) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1003 endif |
6326 | 1004 |
1005 upx: exes | |
1006 upx gvim.exe | |
1007 upx vim.exe | |
1008 | |
1009 mpress: exes | |
1010 mpress gvim.exe | |
1011 mpress vim.exe | |
1012 | |
1013 xxd/xxd.exe: xxd/xxd.c | |
1014 $(MAKE) -C xxd -f Make_ming.mak CC='$(CC)' | |
1015 | |
14943
d95d6580d84b
patch 8.1.0483: MinGW does not build tee.exe
Bram Moolenaar <Bram@vim.org>
parents:
14941
diff
changeset
|
1016 tee/tee.exe: tee/tee.c |
d95d6580d84b
patch 8.1.0483: MinGW does not build tee.exe
Bram Moolenaar <Bram@vim.org>
parents:
14941
diff
changeset
|
1017 $(MAKE) -C tee CC='$(CC)' |
d95d6580d84b
patch 8.1.0483: MinGW does not build tee.exe
Bram Moolenaar <Bram@vim.org>
parents:
14941
diff
changeset
|
1018 |
6326 | 1019 GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h |
1020 $(MAKE) -C GvimExt -f Make_ming.mak CROSS=$(CROSS) CROSS_COMPILE=$(CROSS_COMPILE) CXX='$(CXX)' STATIC_STDCPLUS=$(STATIC_STDCPLUS) | |
1021 | |
12305
d4a3ad146204
patch 8.0.1032: "make tags" doesn't work well on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12218
diff
changeset
|
1022 tags: notags |
15201
ce92157deb4e
patch 8.1.0610: MS-Windows ctags file list differs from Unix
Bram Moolenaar <Bram@vim.org>
parents:
15138
diff
changeset
|
1023 $(CTAGS) $(TAGS_FILES) |
12305
d4a3ad146204
patch 8.0.1032: "make tags" doesn't work well on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12218
diff
changeset
|
1024 |
d4a3ad146204
patch 8.0.1032: "make tags" doesn't work well on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12218
diff
changeset
|
1025 notags: |
d4a3ad146204
patch 8.0.1032: "make tags" doesn't work well on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12218
diff
changeset
|
1026 -$(DEL) tags |
d4a3ad146204
patch 8.0.1032: "make tags" doesn't work well on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
12218
diff
changeset
|
1027 |
6326 | 1028 clean: |
1029 -$(DEL) $(OUTDIR)$(DIRSLASH)*.o | |
1030 -$(DEL) $(OUTDIR)$(DIRSLASH)*.res | |
1031 -rmdir $(OUTDIR) | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1032 -$(DEL) $(MAIN_TARGET) vimrun.exe install.exe uninstal.exe |
6326 | 1033 -$(DEL) pathdef.c |
1034 ifdef PERL | |
1035 -$(DEL) if_perl.c | |
14925
8b1b3228c410
patch 8.1.0474: directory where if_perl.c is written is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
14820
diff
changeset
|
1036 -$(DEL) auto$(DIRSLASH)if_perl.c |
6326 | 1037 endif |
1038 ifdef MZSCHEME | |
1039 -$(DEL) mzscheme_base.c | |
1040 endif | |
1041 $(MAKE) -C GvimExt -f Make_ming.mak clean | |
1042 $(MAKE) -C xxd -f Make_ming.mak clean | |
14943
d95d6580d84b
patch 8.1.0483: MinGW does not build tee.exe
Bram Moolenaar <Bram@vim.org>
parents:
14941
diff
changeset
|
1043 $(MAKE) -C tee clean |
6326 | 1044 |
1045 ########################################################################### | |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15912
diff
changeset
|
1046 INCL = vim.h alloc.h ascii.h ex_cmds.h feature.h globals.h \ |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1047 keymap.h macros.h option.h os_dos.h os_win32.h proto.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12628
diff
changeset
|
1048 spell.h structs.h term.h beval.h $(NBDEBUG_INCL) |
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12628
diff
changeset
|
1049 GUI_INCL = gui.h |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
1050 CUI_INCL = iscygpty.h |
6326 | 1051 |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1052 $(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
|
1053 $(CC) -c $(CFLAGS) $(PYTHONINC) $(PYTHON_HOME_DEF) $< -o $@ |
6326 | 1054 |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1055 $(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
|
1056 $(CC) -c $(CFLAGS) $(PYTHON3INC) $(PYTHON3_HOME_DEF) $< -o $@ |
6326 | 1057 |
1058 $(OUTDIR)/%.o : %.c $(INCL) | |
1059 $(CC) -c $(CFLAGS) $< -o $@ | |
1060 | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1061 ifeq ($(VIMDLL),yes) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1062 $(OUTDIR)/vimrcc.o: vim.rc gvim.exe.mnf version.h gui_w32_rc.h vim.ico |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1063 $(WINDRES) $(WINDRES_FLAGS) $(DEFINES) -UFEAT_GUI_MSWIN \ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1064 --input-format=rc --output-format=coff -i vim.rc -o $@ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1065 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1066 $(OUTDIR)/vimrcg.o: vim.rc gvim.exe.mnf version.h gui_w32_rc.h vim.ico |
6326 | 1067 $(WINDRES) $(WINDRES_FLAGS) $(DEFINES) \ |
1068 --input-format=rc --output-format=coff -i vim.rc -o $@ | |
1069 | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1070 $(OUTDIR)/vimrcd.o: vim.rc version.h gui_w32_rc.h \ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1071 tools.bmp tearoff.bmp vim.ico vim_error.ico \ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1072 vim_alert.ico vim_info.ico vim_quest.ico |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1073 $(WINDRES) $(WINDRES_FLAGS) $(DEFINES) -DRCDLL -DVIMDLLBASE=\\\"$(VIMDLLBASE)\\\" \ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1074 --input-format=rc --output-format=coff -i vim.rc -o $@ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1075 else |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1076 $(OUTDIR)/vimrc.o: vim.rc gvim.exe.mnf version.h gui_w32_rc.h \ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1077 tools.bmp tearoff.bmp vim.ico vim_error.ico \ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1078 vim_alert.ico vim_info.ico vim_quest.ico |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1079 $(WINDRES) $(WINDRES_FLAGS) $(DEFINES) \ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1080 --input-format=rc --output-format=coff -i vim.rc -o $@ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1081 endif |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1082 |
6326 | 1083 $(OUTDIR): |
1084 $(MKDIR) $(OUTDIR) | |
1085 | |
11782
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1086 $(OUTDIR)/gui_dwrite.o: gui_dwrite.cpp $(INCL) gui_dwrite.h |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1087 $(CC) -c $(CFLAGS) $(CXXFLAGS) gui_dwrite.cpp -o $@ |
11782
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1088 |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1089 $(OUTDIR)/gui.o: gui.c $(INCL) $(GUI_INCL) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1090 $(CC) -c $(CFLAGS) gui.c -o $@ |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1091 |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12628
diff
changeset
|
1092 $(OUTDIR)/beval.o: beval.c $(INCL) $(GUI_INCL) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1093 $(CC) -c $(CFLAGS) beval.c -o $@ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12628
diff
changeset
|
1094 |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1095 $(OUTDIR)/gui_beval.o: gui_beval.c $(INCL) $(GUI_INCL) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1096 $(CC) -c $(CFLAGS) gui_beval.c -o $@ |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1097 |
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1098 $(OUTDIR)/gui_w32.o: gui_w32.c $(INCL) $(GUI_INCL) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1099 $(CC) -c $(CFLAGS) gui_w32.c -o $@ |
6326 | 1100 |
1101 $(OUTDIR)/if_cscope.o: if_cscope.c $(INCL) if_cscope.h | |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1102 $(CC) -c $(CFLAGS) if_cscope.c -o $@ |
6326 | 1103 |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1104 $(OUTDIR)/if_mzsch.o: if_mzsch.c $(INCL) $(MZSCHEME_INCL) $(MZ_EXTRA_DEP) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1105 $(CC) -c $(CFLAGS) if_mzsch.c -o $@ |
11782
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1106 |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1107 mzscheme_base.c: |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1108 $(MZSCHEME)/mzc --c-mods mzscheme_base.c ++lib scheme/base |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1109 |
6326 | 1110 # Remove -D__IID_DEFINED__ for newer versions of the w32api |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1111 $(OUTDIR)/if_ole.o: if_ole.cpp $(INCL) if_ole.h |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1112 $(CC) -c $(CFLAGS) $(CXXFLAGS) if_ole.cpp -o $@ |
6326 | 1113 |
14925
8b1b3228c410
patch 8.1.0474: directory where if_perl.c is written is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
14820
diff
changeset
|
1114 auto/if_perl.c: if_perl.xs typemap |
11782
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1115 $(XSUBPP) -prototypes -typemap \ |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1116 $(PERLTYPEMAP) if_perl.xs -output $@ |
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1117 |
14925
8b1b3228c410
patch 8.1.0474: directory where if_perl.c is written is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
14820
diff
changeset
|
1118 $(OUTDIR)/if_perl.o: auto/if_perl.c $(INCL) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1119 $(CC) -c $(CFLAGS) auto/if_perl.c -o $@ |
14925
8b1b3228c410
patch 8.1.0474: directory where if_perl.c is written is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
14820
diff
changeset
|
1120 |
8b1b3228c410
patch 8.1.0474: directory where if_perl.c is written is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
14820
diff
changeset
|
1121 |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1122 $(OUTDIR)/if_ruby.o: if_ruby.c $(INCL) |
6326 | 1123 ifeq (16, $(RUBY)) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1124 $(CC) $(CFLAGS) -U_WIN32 -c -o $@ if_ruby.c |
6326 | 1125 endif |
1126 | |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
1127 $(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
|
1128 $(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
|
1129 |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1130 $(OUTDIR)/main.o: main.c $(INCL) $(CUI_INCL) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1131 $(CC) -c $(CFLAGS) main.c -o $@ |
9363
f9dda6450c76
commit https://github.com/vim/vim/commit/97ff9b9cffd97219d888874b9b3811d55e99c78f
Christian Brabandt <cb@256bit.org>
parents:
9203
diff
changeset
|
1132 |
6326 | 1133 $(OUTDIR)/netbeans.o: netbeans.c $(INCL) $(NBDEBUG_INCL) $(NBDEBUG_SRC) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1134 $(CC) -c $(CFLAGS) netbeans.c -o $@ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1135 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1136 $(OUTDIR)/os_w32exec.o: os_w32exe.c $(INCL) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1137 $(CC) -c $(CFLAGS) -UFEAT_GUI_MSWIN os_w32exe.c -o $@ |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1138 |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1139 $(OUTDIR)/os_w32exeg.o: os_w32exe.c $(INCL) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1140 $(CC) -c $(CFLAGS) os_w32exe.c -o $@ |
6326 | 1141 |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1142 $(OUTDIR)/os_win32.o: os_win32.c $(INCL) $(MZSCHEME_INCL) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1143 $(CC) -c $(CFLAGS) os_win32.c -o $@ |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1144 |
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1145 $(OUTDIR)/regexp.o: regexp.c regexp_nfa.c $(INCL) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1146 $(CC) -c $(CFLAGS) regexp.c -o $@ |
6326 | 1147 |
11782
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1148 $(OUTDIR)/terminal.o: terminal.c $(INCL) $(TERM_DEPS) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1149 $(CC) -c $(CFLAGS) terminal.c -o $@ |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14958
diff
changeset
|
1150 |
11782
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1151 |
12210
b9b06aa0b6d9
patch 8.0.0985: libvterm has its own idea of character width
Christian Brabandt <cb@256bit.org>
parents:
11782
diff
changeset
|
1152 CCCTERM = $(CC) -c $(CFLAGS) -Ilibvterm/include -DINLINE="" \ |
b9b06aa0b6d9
patch 8.0.0985: libvterm has its own idea of character width
Christian Brabandt <cb@256bit.org>
parents:
11782
diff
changeset
|
1153 -DVSNPRINTF=vim_vsnprintf \ |
b9b06aa0b6d9
patch 8.0.0985: libvterm has its own idea of character width
Christian Brabandt <cb@256bit.org>
parents:
11782
diff
changeset
|
1154 -DIS_COMBINING_FUNCTION=utf_iscomposing_uint \ |
b9b06aa0b6d9
patch 8.0.0985: libvterm has its own idea of character width
Christian Brabandt <cb@256bit.org>
parents:
11782
diff
changeset
|
1155 -DWCWIDTH_FUNCTION=utf_uint2cells |
b9b06aa0b6d9
patch 8.0.0985: libvterm has its own idea of character width
Christian Brabandt <cb@256bit.org>
parents:
11782
diff
changeset
|
1156 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1157 $(OUTDIR)/%.o : libvterm/src/%.c $(TERM_DEPS) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1158 $(CCCTERM) $< -o $@ |
6326 | 1159 |
11782
112427b2de52
patch 8.0.0773: mixing 32 and 64 bit libvterm builds fails
Christian Brabandt <cb@256bit.org>
parents:
11774
diff
changeset
|
1160 |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1161 $(OUTDIR)/%.o : xdiff/%.c $(XDIFF_DEPS) |
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
1162 $(CC) -c $(CFLAGS) $< -o $@ |
14696
195e8b1fcbbf
patch 8.1.0360: using an external diff program is slow and inflexible
Christian Brabandt <cb@256bit.org>
parents:
14222
diff
changeset
|
1163 |
6326 | 1164 |
1165 pathdef.c: $(INCL) | |
1166 ifneq (sh.exe, $(SHELL)) | |
1167 @echo creating pathdef.c | |
1168 @echo '/* pathdef.c */' > pathdef.c | |
1169 @echo '#include "vim.h"' >> pathdef.c | |
1170 @echo 'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' >> pathdef.c | |
1171 @echo 'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' >> pathdef.c | |
1172 @echo 'char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)";' >> pathdef.c | |
14958
b898f9093199
patch 8.1.0490: MS-Windows: doesn't handle missing glibwinpthread-1.dll
Bram Moolenaar <Bram@vim.org>
parents:
14943
diff
changeset
|
1173 @echo 'char_u *all_lflags = (char_u *)"$(LINK) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(LUA_LIB) $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(PYTHON3LIB) $(RUBYLIB)";' >> pathdef.c |
6326 | 1174 @echo 'char_u *compiled_user = (char_u *)"$(USERNAME)";' >> pathdef.c |
1175 @echo 'char_u *compiled_sys = (char_u *)"$(USERDOMAIN)";' >> pathdef.c | |
1176 else | |
1177 @echo creating pathdef.c | |
1178 @echo /* pathdef.c */ > pathdef.c | |
1179 @echo #include "vim.h" >> pathdef.c | |
1180 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)"; >> pathdef.c | |
1181 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)"; >> pathdef.c | |
1182 @echo char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)"; >> pathdef.c | |
1183 @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 | |
1184 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> pathdef.c | |
1185 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> pathdef.c | |
1186 endif | |
12525
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1187 |
626fb8e8bb8a
patch 8.0.1141: MS-Windows build dependencies are incomplete
Christian Brabandt <cb@256bit.org>
parents:
12489
diff
changeset
|
1188 # vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0: |