Mercurial > vim
annotate src/config.mk.in @ 18681:a13370d92f9d v8.1.2332
patch 8.1.2332: missing file in refactoring
Commit: https://github.com/vim/vim/commit/556ae8ea28b4e3e9fc47ad130795009a3080146e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Nov 21 22:27:22 2019 +0100
patch 8.1.2332: missing file in refactoring
Problem: Missing file in refactoring.
Solution: Update missing file.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 21 Nov 2019 22:30:03 +0100 |
parents | df141c730008 |
children | 5ddd4df27068 |
rev | line source |
---|---|
7 | 1 # |
2 # config.mk.in -- autoconf template for Vim on Unix vim:ts=8:sw=8: | |
3 # | |
4 # DO NOT EDIT config.mk!! It will be overwritten by configure. | |
5 # Edit Makefile and run "make" or run ./configure with other arguments. | |
6 # | |
7 # Configure does not edit the makefile directly. This method is not the | |
8 # standard use of GNU autoconf, but it has two advantages: | |
9 # a) The user can override every choice made by configure. | |
10 # b) Modifications to the makefile are not lost when configure is run. | |
11 # | |
12 # I hope this is worth being nonstandard. jw. | |
13 | |
14 @SET_MAKE@ | |
15 | |
16 VIMNAME = @VIMNAME@ | |
17 EXNAME = @EXNAME@ | |
18 VIEWNAME = @VIEWNAME@ | |
19 | |
20 CC = @CC@ | |
21 DEFS = @DEFS@ | |
22 CFLAGS = @CFLAGS@ | |
23 CPPFLAGS = @CPPFLAGS@ | |
24 srcdir = @srcdir@ | |
25 VPATH = @srcdir@ | |
26 LDFLAGS = @LDFLAGS@ | |
27 LIBS = @LIBS@ | |
28 TAGPRG = @TAGPRG@ | |
29 | |
30 CPP = @CPP@ | |
31 CPP_MM = @CPP_MM@ | |
549 | 32 DEPEND_CFLAGS_FILTER = @DEPEND_CFLAGS_FILTER@ |
2629 | 33 LINK_AS_NEEDED = @LINK_AS_NEEDED@ |
7 | 34 X_CFLAGS = @X_CFLAGS@ |
35 X_LIBS_DIR = @X_LIBS@ | |
36 X_PRE_LIBS = @X_PRE_LIBS@ | |
37 X_EXTRA_LIBS = @X_EXTRA_LIBS@ | |
38 X_LIBS = @X_LIB@ | |
39 | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
40 LUA_LIBS = @LUA_LIBS@ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
41 LUA_SRC = @LUA_SRC@ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
42 LUA_OBJ = @LUA_OBJ@ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
43 LUA_CFLAGS = @LUA_CFLAGS@ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
44 LUA_PRO = @LUA_PRO@ |
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2303
diff
changeset
|
45 |
14 | 46 MZSCHEME_LIBS = @MZSCHEME_LIBS@ |
47 MZSCHEME_SRC = @MZSCHEME_SRC@ | |
48 MZSCHEME_OBJ = @MZSCHEME_OBJ@ | |
49 MZSCHEME_CFLAGS = @MZSCHEME_CFLAGS@ | |
50 MZSCHEME_PRO = @MZSCHEME_PRO@ | |
6143 | 51 MZSCHEME_EXTRA = @MZSCHEME_EXTRA@ |
1894 | 52 MZSCHEME_MZC = @MZSCHEME_MZC@ |
14 | 53 |
7 | 54 PERL = @vi_cv_path_perl@ |
55 PERLLIB = @vi_cv_perllib@ | |
6143 | 56 PERL_XSUBPP = @vi_cv_perl_xsubpp@ |
7 | 57 PERL_LIBS = @PERL_LIBS@ |
58 SHRPENV = @shrpenv@ | |
59 PERL_SRC = @PERL_SRC@ | |
60 PERL_OBJ = @PERL_OBJ@ | |
61 PERL_PRO = @PERL_PRO@ | |
62 PERL_CFLAGS = @PERL_CFLAGS@ | |
63 | |
64 PYTHON_SRC = @PYTHON_SRC@ | |
65 PYTHON_OBJ = @PYTHON_OBJ@ | |
66 PYTHON_CFLAGS = @PYTHON_CFLAGS@ | |
67 PYTHON_LIBS = @PYTHON_LIBS@ | |
68 | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
69 PYTHON3_SRC = @PYTHON3_SRC@ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
70 PYTHON3_OBJ = @PYTHON3_OBJ@ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
71 PYTHON3_CFLAGS = @PYTHON3_CFLAGS@ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
72 PYTHON3_LIBS = @PYTHON3_LIBS@ |
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
73 |
7 | 74 TCL = @vi_cv_path_tcl@ |
75 TCL_SRC = @TCL_SRC@ | |
76 TCL_OBJ = @TCL_OBJ@ | |
77 TCL_PRO = @TCL_PRO@ | |
78 TCL_CFLAGS = @TCL_CFLAGS@ | |
79 TCL_LIBS = @TCL_LIBS@ | |
80 | |
81 NETBEANS_SRC = @NETBEANS_SRC@ | |
82 NETBEANS_OBJ = @NETBEANS_OBJ@ | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
83 CHANNEL_SRC = @CHANNEL_SRC@ |
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7380
diff
changeset
|
84 CHANNEL_OBJ = @CHANNEL_OBJ@ |
11621
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11382
diff
changeset
|
85 TERM_SRC = @TERM_SRC@ |
b8299e742f41
patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents:
11382
diff
changeset
|
86 TERM_OBJ = @TERM_OBJ@ |
18418
2329061e6289
patch 8.1.2203: running libvterm tests without the +terminal feature
Bram Moolenaar <Bram@vim.org>
parents:
16289
diff
changeset
|
87 TERM_TEST = @TERM_TEST@ |
7 | 88 |
89 RUBY = @vi_cv_path_ruby@ | |
90 RUBY_SRC = @RUBY_SRC@ | |
91 RUBY_OBJ = @RUBY_OBJ@ | |
92 RUBY_PRO = @RUBY_PRO@ | |
93 RUBY_CFLAGS = @RUBY_CFLAGS@ | |
94 RUBY_LIBS = @RUBY_LIBS@ | |
95 | |
96 AWK = @AWK@ | |
97 | |
98 STRIP = @STRIP@ | |
99 | |
100 EXEEXT = @EXEEXT@ | |
8893
d5d2e48666bd
commit https://github.com/vim/vim/commit/839e954aaa72ef62f65416d177f829e681c15466
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
101 CROSS_COMPILING = @CROSS_COMPILING@ |
7 | 102 |
103 COMPILEDBY = @compiledby@ | |
104 | |
105 INSTALLVIMDIFF = @dovimdiff@ | |
106 INSTALLGVIMDIFF = @dogvimdiff@ | |
284 | 107 INSTALL_LANGS = @INSTALL_LANGS@ |
108 INSTALL_TOOL_LANGS = @INSTALL_TOOL_LANGS@ | |
7 | 109 |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2200
diff
changeset
|
110 ### sed command to fix quotes while creating pathdef.c |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2200
diff
changeset
|
111 QUOTESED = @QUOTESED@ |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2200
diff
changeset
|
112 |
7 | 113 ### Line break character as octal number for "tr" |
114 NL = @line_break@ | |
115 | |
116 ### Top directory for everything | |
117 prefix = @prefix@ | |
118 | |
119 ### Top directory for the binary | |
120 exec_prefix = @exec_prefix@ | |
121 | |
122 ### Prefix for location of data files | |
123 BINDIR = @bindir@ | |
124 | |
1624 | 125 ### For autoconf 2.60 and later (avoid a warning) |
126 datarootdir = @datarootdir@ | |
127 | |
7 | 128 ### Prefix for location of data files |
129 DATADIR = @datadir@ | |
130 | |
131 ### Prefix for location of man pages | |
132 MANDIR = @mandir@ | |
133 | |
134 ### Do we have a GUI | |
135 GUI_INC_LOC = @GUI_INC_LOC@ | |
136 GUI_LIB_LOC = @GUI_LIB_LOC@ | |
137 GUI_SRC = $(@GUITYPE@_SRC) | |
138 GUI_OBJ = $(@GUITYPE@_OBJ) | |
139 GUI_DEFS = $(@GUITYPE@_DEFS) | |
140 GUI_IPATH = $(@GUITYPE@_IPATH) | |
141 GUI_LIBS_DIR = $(@GUITYPE@_LIBS_DIR) | |
142 GUI_LIBS1 = $(@GUITYPE@_LIBS1) | |
143 GUI_LIBS2 = $(@GUITYPE@_LIBS2) | |
144 GUI_INSTALL = $(@GUITYPE@_INSTALL) | |
145 GUI_TARGETS = $(@GUITYPE@_TARGETS) | |
146 GUI_MAN_TARGETS = $(@GUITYPE@_MAN_TARGETS) | |
147 GUI_TESTTARGET = $(@GUITYPE@_TESTTARGET) | |
18 | 148 GUI_TESTARG = $(@GUITYPE@_TESTARG) |
149 GUI_BUNDLE = $(@GUITYPE@_BUNDLE) | |
7 | 150 NARROW_PROTO = @NARROW_PROTO@ |
151 GUI_X_LIBS = @GUI_X_LIBS@ | |
152 MOTIF_LIBNAME = @MOTIF_LIBNAME@ | |
153 GTK_LIBNAME = @GTK_LIBNAME@ | |
154 | |
7380
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
6143
diff
changeset
|
155 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
6143
diff
changeset
|
156 GRESOURCE_SRC = @GRESOURCE_SRC@ |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
6143
diff
changeset
|
157 GRESOURCE_OBJ = @GRESOURCE_OBJ@ |
055a0b587a3e
commit https://github.com/vim/vim/commit/36e294c00c784b9ddd05a4fdbea2e331ab2b1ca8
Christian Brabandt <cb@256bit.org>
parents:
6143
diff
changeset
|
158 |
8963
53e53aeb35ad
commit https://github.com/vim/vim/commit/4adfaabfe7e07da9546b45130cad0d266ba48611
Christian Brabandt <cb@256bit.org>
parents:
8893
diff
changeset
|
159 GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@ |
53e53aeb35ad
commit https://github.com/vim/vim/commit/4adfaabfe7e07da9546b45130cad0d266ba48611
Christian Brabandt <cb@256bit.org>
parents:
8893
diff
changeset
|
160 UPDATE_DESKTOP_DATABASE = @UPDATE_DESKTOP_DATABASE@ |
53e53aeb35ad
commit https://github.com/vim/vim/commit/4adfaabfe7e07da9546b45130cad0d266ba48611
Christian Brabandt <cb@256bit.org>
parents:
8893
diff
changeset
|
161 |
7 | 162 ### Any OS dependent extra source and object file |
163 OS_EXTRA_SRC = @OS_EXTRA_SRC@ | |
164 OS_EXTRA_OBJ = @OS_EXTRA_OBJ@ | |
165 | |
166 ### If the *.po files are to be translated to *.mo files. | |
167 MAKEMO = @MAKEMO@ | |
168 | |
5962 | 169 MSGFMT = @MSGFMT@ |
16289
b4c7e026685c
patch 8.1.1149: building desktop files fails with older msgfmt
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
170 MSGFMT_DESKTOP = @MSGFMT_DESKTOP@ |
5962 | 171 |
7 | 172 # Make sure that "make first" will run "make all" once configure has done its |
173 # work. This is needed when using the Makefile in the top directory. | |
174 first: all |