blob: 549b8177b7d299b6d69e15af2b53302cfaf9dd63 [file] [log] [blame]
Bram Moolenaare1d12892004-06-13 13:02:36 +00001# Makefile for Vim on Unix and Unix-like systems vim:ts=8:sw=8:tw=78
2#
3# This Makefile is loosely based on the GNU Makefile conventions found in
4# standards.info.
5#
6# Compiling Vim, summary:
7#
8# 3. make
9# 5. make install
10#
11# Compiling Vim, details:
12#
13# Edit this file for adjusting to your system. You should not need to edit any
14# other file for machine specific things!
15# The name of this file MUST be Makefile (note the uppercase 'M').
16#
17# 1. Edit this Makefile {{{1
18# The defaults for Vim should work on most machines, but you may want to
19# uncomment some lines or make other changes below to tune it to your
20# system, compiler or preferences. Uncommenting means that the '#' in
21# the first column of a line is removed.
22# - If you want a version of Vim that is small and starts up quickly,
23# you might want to disable the GUI, X11, Perl, Python and Tcl.
24# - Uncomment the line with --disable-gui if you have Motif, GTK and/or
25# Athena but don't want to make gvim (the GUI version of Vim with nice
26# menus and scrollbars, but makes Vim bigger and startup slower).
27# - Uncomment --disable-darwin if on Mac OS X but you want to compile a
28# Unix version.
29# - Uncomment the line "CONF_OPT_X = --without-x" if you have X11 but
30# want to disable using X11 libraries. This speeds up starting Vim,
31# but the window title will not be set and the X11 selection can not
Bram Moolenaarb07269a2011-05-19 13:41:14 +020032# be used.
Bram Moolenaar0387e652010-05-07 16:54:37 +020033# - Uncomment the line "CONF_OPT_XSMP = --disable-xsmp" if you have the
Bram Moolenaare1d12892004-06-13 13:02:36 +000034# X11 Session Management Protocol (XSMP) library (libSM) but do not
35# want to use it.
36# This can speedup Vim startup but Vim loses the ability to catch the
Bram Moolenaar9372a112005-12-06 19:59:18 +000037# user logging out from session-managers like GNOME and work
Bram Moolenaare1d12892004-06-13 13:02:36 +000038# could be lost.
39# - Uncomment one or more of these lines to include an interface;
40# each makes Vim quite a bit bigger:
Bram Moolenaar0ba04292010-07-14 23:23:17 +020041# --enable-luainterp for Lua interpreter
Bram Moolenaar6df6f472010-07-18 18:04:50 +020042# --enable-mzschemeinterp for MzScheme interpreter
Bram Moolenaare1d12892004-06-13 13:02:36 +000043# --enable-perlinterp for Perl interpreter
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +020044# --enable-python3interp for Python3 interpreter
Bram Moolenaar6df6f472010-07-18 18:04:50 +020045# --enable-pythoninterp for Python interpreter
Bram Moolenaare1d12892004-06-13 13:02:36 +000046# --enable-rubyinterp for Ruby interpreter
47# --enable-tclinterp for Tcl interpreter
48# --enable-cscope for Cscope interface
49# - Uncomment one of the lines with --with-features= to enable a set of
50# features (but not the interfaces just mentioned).
51# - Uncomment the line with --disable-acl to disable ACL support even
52# though your system supports it.
53# - Uncomment the line with --disable-gpm to disable gpm support
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000054# even though you have gpm libraries and includes.
55# - Uncomment the line with --disable-sysmouse to disable sysmouse
56# support even though you have /dev/sysmouse and includes.
Bram Moolenaare1d12892004-06-13 13:02:36 +000057# - Uncomment one of the lines with CFLAGS and/or CC if you have
58# something very special or want to tune the optimizer.
59# - Search for the name of your system to see if it needs anything
60# special.
61# - A few versions of make use '.include "file"' instead of 'include
62# file'. Adjust the include line below if yours does.
63#
64# 2. Edit feature.h {{{1
65# Only if you do not agree with the default compile features, e.g.:
66# - you want Vim to be as vi compatible as it can be
67# - you want to use Emacs tags files
68# - you want right-to-left editing (Hebrew)
69# - you want 'langmap' support (Greek)
70# - you want to remove features to make Vim smaller
71#
72# 3. "make" {{{1
73# Will first run ./configure with the options in this file. Then it will
74# start make again on this Makefile to do the compiling. You can also do
75# this in two steps with:
76# make config
77# make
78# The configuration phase creates/overwrites auto/config.h and
79# auto/config.mk.
80# The configure script is created with "make autoconf". It can detect
81# different features of your system and act accordingly. However, it is
82# not correct for all systems. Check this:
83# - If you have X windows, but configure could not find it or reported
84# another include/library directory then you wanted to use, you have
85# to set CONF_OPT_X below. You might also check the installation of
86# xmkmf.
87# - If you have --enable-gui=motif and have Motif on your system, but
88# configure reports "checking for location of gui... <not found>", you
89# have to set GUI_INC_LOC and GUI_LIB_LOC below.
90# If you changed something, do this to run configure again:
91# make reconfig
92#
93# - If you do not trust the automatic configuration code, then inspect
94# auto/config.h and auto/config.mk, before starting the actual build
95# phase. If possible edit this Makefile, rather than auto/config.mk --
96# especially look at the definition of VIMLOC below. Note that the
97# configure phase overwrites auto/config.mk and auto/config.h again.
98# - If you get error messages, find out what is wrong and try to correct
99# it in this Makefile. You may need to do "make reconfig" when you
100# change anything that configure uses (e.g. switching from an old C
101# compiler to an ANSI C compiler). Only when auto/configure does
102# something wrong you may need to change one of the other files. If
103# you find a clean way to fix the problem, consider sending a note to
104# the author of autoconf (bug-gnu-utils@prep.ai.mit.edu) or Vim
105# (Bram@vim.org). Don't bother to do that when you made a hack
106# solution for a non-standard system.
107#
108# 4. "make test" {{{1
109# This is optional. This will run Vim scripts on a number of test
110# files, and compare the produced output with the expected output.
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +0000111# If all is well, you will get the "ALL DONE" message in the end. If a
112# test fails you get "TEST FAILURE". See below (search for "/^test").
Bram Moolenaare1d12892004-06-13 13:02:36 +0000113#
114# 5. "make install" {{{1
115# If the new Vim seems to be working OK you can install it and the
116# documentation in the appropriate location. The default is
117# "/usr/local". Change "prefix" below to change the location.
118# "auto/pathdef.c" will be compiled again after changing this to make
119# the executable know where the help files are located.
120# Note that any existing executable is removed or overwritten. If you
121# want to keep it you will have to make a backup copy first.
122# The runtime files are in a different directory for each version. You
123# might want to delete an older version.
124# If you don't want to install everything, there are other targets:
125# make installvim only installs Vim, not the tools
126# make installvimbin only installs the Vim executable
Bram Moolenaare344bea2005-09-01 20:46:49 +0000127# make installruntime installs most of the runtime files
128# make installrtbase only installs the Vim help and
Bram Moolenaare1d12892004-06-13 13:02:36 +0000129# runtime files
130# make installlinks only installs the Vim binary links
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000131# make installmanlinks only installs the Vim manpage links
Bram Moolenaare1d12892004-06-13 13:02:36 +0000132# make installmacros only installs the Vim macros
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +0100133# make installpack only installs the packages
Bram Moolenaare344bea2005-09-01 20:46:49 +0000134# make installtutorbin only installs the Vim tutor program
135# make installtutor only installs the Vim tutor files
Bram Moolenaar217ad922005-03-20 22:37:15 +0000136# make installspell only installs the spell files
Bram Moolenaare1d12892004-06-13 13:02:36 +0000137# make installtools only installs xxd
138# If you install Vim, not to install for real but to prepare a package
139# or RPM, set DESTDIR to the root of the tree.
140#
141# 6. Use Vim until a new version comes out. {{{1
142#
143# 7. "make uninstall_runtime" {{{1
144# Will remove the runtime files for the current version. This is safe
145# to use while another version is being used, only version-specific
146# files will be deleted.
147# To remove the runtime files of another version:
148# make uninstall_runtime VIMRTDIR=/vim54
149# If you want to delete all installed files, use:
150# make uninstall
151# Note that this will delete files that have the same name for any
152# version, thus you might need to do a "make install" soon after this.
153# Be careful not to remove a version of Vim that is still being used!
154# To find out which files and directories will be deleted, use:
155# make -n uninstall
156# }}}
157#
Bram Moolenaara5792f52005-11-23 21:25:05 +0000158### This Makefile has been successfully tested on many systems. {{{
Bram Moolenaare1d12892004-06-13 13:02:36 +0000159### Only the ones that require special options are mentioned here.
160### Check the (*) column for remarks, listed below.
161### Later code changes may cause small problems, otherwise Vim is supposed to
162### compile and run without problems.
163
164#system: configurations: version (*) tested by:
165#------------- ------------------------ ------- - ----------
166#AIX 3.2.5 cc (not gcc) - 4.5 (M) Will Fiveash
167#AIX 4 cc +X11 -GUI 3.27 (4) Axel Kielhorn
168#AIX 4.1.4 cc +X11 +GUI 4.5 (5) Nico Bakker
169#AIX 4.2.1 cc 5.2k (C) Will Fiveash
170#AIX 4.3.3.12 xic 3.6.6 5.6 (5) David R. Favor
171#A/UX 3.1.1 gcc +X11 4.0 (6) Jim Jagielski
172#BeOS PR mwcc DR3 5.0n (T) Olaf Seibert
173#BSDI 2.1 (x86) shlicc2 gcc-2.6.3 -X11 X11R6 4.5 (1) Jos Backus
174#BSD/OS 3.0 (x86) gcc gcc-2.7.2.1 -X11 X11R6 4.6c (1) Jos Backus
175#CX/UX 6.2 cc +X11 +GUI_Mofif 5.4 (V) Kipp E. Howard
176#DG/UX 5.4* gcc 2.5.8 GUI 5.0e (H) Jonas Schlein
177#DG/UX 5.4R4.20 gcc 2.7.2 GUI 5.0s (H) Rocky Olive
178#HP-UX (most) c89 cc 5.1 (2) Bram Moolenaar
179#HP-UX_9.04 cc +X11 +Motif 5.0 (2) Carton Lao
180#Irix 6.3 (O2) cc ? 4.5 (L) Edouard Poor
181#Irix 6.4 cc ? 5.0m (S) Rick Sayre
182#Irix 6.5 cc ? 6.0 (S) David Harrison
183#Irix 64 bit 4.5 (K) Jon Wright
184#Linux 2.0 gcc-2.7.2 Infomagic Motif 4.3 (3) Ronald Rietman
185#Linux 2.0.31 gcc +X11 +GUI Athena 5.0w (U) Darren Hiebert
186#LynxOS 3.0.1 2.9-gnupro-98r2 +X11 +GUI Athena 5.7.1(O) Lorenz Hahn
187#LynxOS 3.1.0 2.9-gnupro-98r2 +X11 +GUI Athena 5.7.1(O) Lorenz Hahn
188#NEC UP4800 UNIX_SV 4.2MP cc +X11R6 Motif,Athena4.6b (Q) Lennart Schultz
189#NetBSD 1.0A gcc-2.4.5 -X11 -GUI 3.21 (X) Juergen Weigert
190#QNX 4.2 wcc386-10.6 -X11 4.2 (D) G.F. Desrochers
191#QNX 4.23 Watcom -X11 4.2 (F) John Oleynick
192#SCO Unix v3.2.5 cc +X11 Motif 3.27 (C) M. Kuperblum
193#SCO Open Server 5 gcc 2.7.2.3 +X11 +GUI Motif 5.3 (A) Glauber Ribeiro
194#SINIX-N 5.43 RM400 R4000 cc +X11 +GUI 5.0l (I) Martin Furter
195#SINIX-Z 5.42 i386 gcc 2.7.2.3 +X11 +GUI Motif 5.1 (I) Joachim Fehn
196#SINIX-Y 5.43 RM600 R4000 gcc 2.7.2.3 +X11 +GUI Motif 5.1 (I) Joachim Fehn
197#Reliant/SINIX 5.44 cc +X11 +GUI 5.5a (I) B. Pruemmer
198#SNI Targon31 TOS 4.1.11 gcc-2.4.5 +X11 -GUI 4.6c (B) Paul Slootman
199#Solaris 2.4 (Sparc) cc +X11 +GUI 3.29 (9) Glauber
200#Solaris 2.4/2.5 clcc +X11 -GUI openwin 3.20 (7) Robert Colon
201#Solaris 2.5 (sun4m) cc (SC4.0) +X11R6 +GUI (CDE) 4.6b (E) Andrew Large
202#Solaris 2.5 cc +X11 +GUI Athena 4.2 (9) Sonia Heimann
203#Solaris 2.5 gcc 2.5.6 +X11 Motif 5.0m (R) Ant. Colombo
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200204#Solaris 2.6 gcc 2.8.1 ncurses 5.3 (G) Larry W. Virden
Bram Moolenaare1d12892004-06-13 13:02:36 +0000205#Solaris with -lthread 5.5 (W) K. Nagano
206#Solaris gcc (b) Riccardo
207#SunOS 4.1.x +X11 -GUI 5.1b (J) Bram Moolenaar
208#SunOS 4.1.3_U1 (sun4c) gcc +X11 +GUI Athena 5.0w (J) Darren Hiebert
209#SUPER-UX 6.2 (NEC SX-4) cc +X11R6 Motif,Athena4.6b (P) Lennart Schultz
Bram Moolenaarc0394412017-04-20 20:20:23 +0200210#Tandem/NSK (c) Matthew Woehlke
Bram Moolenaare1d12892004-06-13 13:02:36 +0000211#Unisys 6035 cc +X11 Motif 5.3 (8) Glauber Ribeiro
212#ESIX V4.2 cc +X11 6.0 (a) Reinhard Wobst
213#Mac OS X 10.[23] gcc Carbon 6.2 (x) Bram Moolenaar
214# }}}
215
216# (*) Remarks: {{{
217#
218# (1) Uncomment line below for shlicc2
219# (2) HPUX with compile problems or wrong digraphs, uncomment line below
220# (3) Infomagic Motif needs GUI_LIB_LOC and GUI_INC_LOC set, see below.
221# And add "-lXpm" to MOTIF_LIBS2.
222# (4) For cc the optimizer must be disabled (use CFLAGS= after running
223# configure) (symptom: ":set termcap" output looks weird).
224# (5) Compiler may need extra argument, see below.
225# (6) See below for a few lines to uncomment
226# (7) See below for lines which enable the use of clcc
227# (8) Needs some EXTRA_LIBS, search for Unisys below
228# (9) Needs an extra compiler flag to compile gui_at_sb.c, see below.
229# (A) May need EXTRA_LIBS, see below
230# (B) Can't compile GUI because there is no waitpid()... Disable GUI below.
231# (C) Force the use of curses instead of termcap, see below.
232# (D) Uncomment lines below for QNX
233# (E) You might want to use termlib instead of termcap, see below.
234# (F) See below for instructions.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200235# (G) Using ncurses version 4.2 has reported to cause a crash. Use the
236# Sun curses library instead.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000237# (H) See line for EXTRA_LIBS below.
238# (I) SINIX-N 5.42 and 5.43 need some EXTRA_LIBS. Also for Reliant-Unix.
239# (J) If you get undefined symbols, see below for a solution.
240# (K) See lines to uncomment below for machines with 64 bit pointers.
241# (L) For Silicon Graphics O2 workstations remove "-lnsl" from auto/config.mk
242# (M) gcc version cygnus-2.0.1 does NOT work (symptom: "dl" deletes two
243# characters instead of one).
244# (N) SCO with decmouse.
245# (O) LynxOS needs EXTRA_LIBS, see below.
246# (P) For SuperUX 6.2 on NEC SX-4 see a few lines below to uncomment.
247# (Q) For UNIXSVR 4.2MP on NEC UP4800 see below for lines to uncomment.
248# (R) For Solaris 2.5 (or 2.5.1) with gcc > 2.5.6, uncomment line below.
249# (S) For Irix 6.x with MipsPro compiler, use -OPT:Olimit. See line below.
250# (T) See ../doc/os_beos.txt.
251# (U) Must uncomment CONF_OPT_PYTHON option below to disable Python
252# detection, since the configure script runs into an error when it
253# detects Python (probably because of the bash shell).
254# (V) See lines to uncomment below.
255# (X) Need to use the .include "auto/config.mk" line below
256# (Y) See line with c89 below
257# (Z) See lines with cc or c89 below
258# (a) See line with EXTRA_LIBS below.
259# (b) When using gcc with the Solaris linker, make sure you don't use GNU
260# strip, otherwise the binary may not run: "Cannot find ELF".
Bram Moolenaar311d9822007-02-27 15:48:28 +0000261# (c) Add -lfloss to EXTRA_LIBS, see below.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000262# (x) When you get warnings for precompiled header files, run
263# "sudo fixPrecomps". Also see CONF_OPT_DARWIN below.
264# }}}
265
266
267#DO NOT CHANGE the next line, we need it for configure to find the compiler
268#instead of using the default from the "make" program.
269#Use a line further down to change the value for CC.
270CC=
271
272# Change and use these defines if configure cannot find your Motif stuff.
273# Unfortunately there is no "standard" location for Motif. {{{
274# These defines can contain a single directory (recommended) or a list of
275# directories (for when you are working with several systems). The LAST
276# directory that exists is used.
277# When changed, run "make reconfig" next!
278#GUI_INC_LOC = -I/usr/include/Motif2.0 -I/usr/include/Motif1.2
279#GUI_LIB_LOC = -L/usr/lib/Motif2.0 -L/usr/lib/Motif1.2
280### Use these two lines for Infomagic Motif (3)
281#GUI_INC_LOC = -I/usr/X11R6/include
282#GUI_LIB_LOC = -L/usr/X11R6/lib
283# }}}
284
Bram Moolenaar08b7bae2015-12-30 17:56:05 +0100285# Defaults used when auto/config.mk does not exist.
286srcdir = .
287VIMNAME = vim
288EXNAME = ex
289VIEWNAME = view
290
Bram Moolenaare1d12892004-06-13 13:02:36 +0000291######################## auto/config.mk ######################## {{{1
292# At this position auto/config.mk is included. When starting from the
Bram Moolenaar542512a2011-02-15 15:28:09 +0100293# toplevel Makefile it is almost empty. After running auto/configure it
294# contains settings that have been discovered for your system. Settings below
295# this include override settings in auto/config.mk!
Bram Moolenaare1d12892004-06-13 13:02:36 +0000296
Bram Moolenaar542512a2011-02-15 15:28:09 +0100297# Note: If make fails because auto/config.mk does not exist (it is not
298# included in the repository), do:
299# cp config.mk.dist auto/config.mk
Bram Moolenaare1d12892004-06-13 13:02:36 +0000300
301# (X) How to include auto/config.mk depends on the version of "make" you have,
302# if the current choice doesn't work, try the other one.
303
304include auto/config.mk
305#.include "auto/config.mk"
306CClink = $(CC)
307
308#}}}
309
310# Include the configuration choices first, so we can override everything
311# below. As shipped, this file contains a target that causes to run
312# configure. Once configure was run, this file contains a list of
313# make variables with predefined values instead. Thus any second invocation
Bram Moolenaara5792f52005-11-23 21:25:05 +0000314# of make, will build Vim.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000315
316# CONFIGURE - configure arguments {{{1
317# You can give a lot of options to configure.
318# Change this to your desire and do 'make config' afterwards
319
Bram Moolenaarbb1969b2019-01-17 15:45:25 +0100320# examples you can uncomment:
Bram Moolenaar9d302ad2018-12-21 11:48:51 +0100321#CONF_ARGS1 = --exec-prefix=/usr
322#CONF_ARGS2 = --with-vim-name=vim8 --with-ex-name=ex8 --with-view-name=view8
323#CONF_ARGS3 = --with-global-runtime=/etc/vim,/usr/share/vim
324#CONF_ARGS4 = --with-local-dir=/usr/share
325#CONF_ARGS5 = --without-local-dir
Bram Moolenaare1d12892004-06-13 13:02:36 +0000326
327# Use this one if you distribute a modified version of Vim.
Bram Moolenaar3ac55c82018-12-22 14:59:03 +0100328#CONF_ARGS6 = --with-modified-by="John Doe"
Bram Moolenaare1d12892004-06-13 13:02:36 +0000329
330# GUI - For creating Vim with GUI (gvim) (B)
331# Uncomment this line when you don't want to get the GUI version, although you
332# have GTK, Motif and/or Athena. Also use --without-x if you don't want X11
333# at all.
334#CONF_OPT_GUI = --disable-gui
335
336# Uncomment one of these lines if you have that GUI but don't want to use it.
Bram Moolenaar24b23172007-05-06 12:54:06 +0000337# The automatic check will use another one that can be found.
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200338# Gnome is disabled by default, because it may cause trouble.
339#
340# When both GTK+ 2 and GTK+ 3 are possible then GTK+ 2 will be selected.
341# To use GTK+ 3 instead use --enable-gui=gtk3 (see below).
Bram Moolenaare1d12892004-06-13 13:02:36 +0000342#CONF_OPT_GUI = --disable-gtk2-check
Bram Moolenaaref839562017-10-28 20:28:23 +0200343#CONF_OPT_GUI = --enable-gnome-check
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200344#CONF_OPT_GUI = --disable-gtk3-check
Bram Moolenaare1d12892004-06-13 13:02:36 +0000345#CONF_OPT_GUI = --disable-motif-check
346#CONF_OPT_GUI = --disable-athena-check
347#CONF_OPT_GUI = --disable-nextaw-check
348
349# Uncomment one of these lines to select a specific GUI to use.
350# When using "yes" or nothing, configure will use the first one found: GTK+,
351# Motif or Athena.
352#
353# GTK versions that are known not to work 100% are rejected.
354# Use "--disable-gtktest" to accept them anyway.
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200355# For GTK 1 use Vim 7.2.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000356#
Bram Moolenaar24b23172007-05-06 12:54:06 +0000357# GNOME means GTK with Gnome support. If using GTK and --enable-gnome-check
358# is used then GNOME will automatically be used if it is found. If you have
359# GNOME, but do not want to use it (e.g., want a GTK-only version), then use
360# --enable-gui=gtk or leave out --enable-gnome-check.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000361#
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200362# GNOME makes sense only for GTK+ 2. Avoid use of --enable-gnome-check with
363# GTK+ 3 build, as the functionality of GNOME is already incooperated into
364# GTK+ 3.
365#
Bram Moolenaare1d12892004-06-13 13:02:36 +0000366# If the selected GUI isn't found, the GUI is disabled automatically
Bram Moolenaare1d12892004-06-13 13:02:36 +0000367#CONF_OPT_GUI = --enable-gui=gtk2
368#CONF_OPT_GUI = --enable-gui=gtk2 --disable-gtktest
Bram Moolenaare1d12892004-06-13 13:02:36 +0000369#CONF_OPT_GUI = --enable-gui=gnome2
370#CONF_OPT_GUI = --enable-gui=gnome2 --disable-gtktest
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000371#CONF_OPT_GUI = --enable-gui=gtk3
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200372#CONF_OPT_GUI = --enable-gui=gtk3 --disable-gtktest
Bram Moolenaare1d12892004-06-13 13:02:36 +0000373#CONF_OPT_GUI = --enable-gui=motif
374#CONF_OPT_GUI = --enable-gui=motif --with-motif-lib="-static -lXm -shared"
375#CONF_OPT_GUI = --enable-gui=athena
376#CONF_OPT_GUI = --enable-gui=nextaw
377
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200378# Uncomment this line to run an individual test with gvim.
Bram Moolenaar00b24be2016-07-23 22:04:47 +0200379#GUI_TESTARG = GUI_FLAG=-g
380
Bram Moolenaare1d12892004-06-13 13:02:36 +0000381# DARWIN - detecting Mac OS X
382# Uncomment this line when you want to compile a Unix version of Vim on
383# Darwin. None of the Mac specific options or files will be used.
384#CONF_OPT_DARWIN = --disable-darwin
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000385
386# Select the architecture supported. Default is to build for the current
387# platform. Use "both" for a universal binary. That probably doesn't work
388# when including Perl, Python, etc.
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +0200389# NOTE: ppc probably doesn't work anymore,
390#CONF_OPT_DARWIN = --with-mac-arch=intel
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000391#CONF_OPT_DARWIN = --with-mac-arch=ppc
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000392#CONF_OPT_DARWIN = --with-mac-arch=both
Bram Moolenaare1d12892004-06-13 13:02:36 +0000393
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +0200394# Uncomment the next line to fail if one of the requested language interfaces
395# cannot be configured. Without this Vim will be build anyway, without
396# the failing interfaces.
397#CONF_OPT_FAIL = --enable-fail-if-missing
398
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200399# LUA
Bram Moolenaar2334b6d2010-07-22 21:32:16 +0200400# Uncomment one of these when you want to include the Lua interface.
401# First one is for static linking, second one for dynamic loading.
Bram Moolenaar2446ec92021-10-26 12:00:01 +0100402# Debian package is "lua5.3" and "liblua5.3-dev" or "lua5.4" and
403# "liblua5.4-dev".
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200404# Use --with-luajit if you want to use LuaJIT instead of Lua.
405# Set PATH environment variable to find lua or luajit executable.
Bram Moolenaarc0394412017-04-20 20:20:23 +0200406# This requires at least "normal" features, "tiny" and "small" don't work.
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000407#CONF_OPT_LUA = --enable-luainterp
Bram Moolenaar2a9c9f62019-07-28 14:17:56 +0200408#CONF_OPT_LUA = --enable-luainterp=dynamic
Bram Moolenaare855ccf2013-07-28 13:32:15 +0200409#CONF_OPT_LUA = --enable-luainterp --with-luajit
410#CONF_OPT_LUA = --enable-luainterp=dynamic --with-luajit
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200411# Lua installation dir (when not set uses $LUA_PREFIX or defaults to /usr)
412#CONF_OPT_LUA_PREFIX = --with-lua-prefix=/usr/local
413
414# MZSCHEME
415# Uncomment this when you want to include the MzScheme interface.
Bram Moolenaarf48ee3c2019-12-06 22:18:20 +0100416# You may have to build racket from source to make this work.
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200417# NOTE: does not work well together with valgrind.
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200418#CONF_OPT_MZSCHEME = --enable-mzschemeinterp
419# PLT/mrscheme/drscheme Home dir; the PLTHOME environment variable also works
Bram Moolenaarf48ee3c2019-12-06 22:18:20 +0100420#CONF_OPT_PLTHOME = --with-plthome=/usr/local
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200421#CONF_OPT_PLTHOME = --with-plthome=/usr/local/plt
422#CONF_OPT_PLTHOME = --with-plthome=/usr/local/drscheme
423#CONF_OPT_PLTHOME = --with-plthome=/home/me/mz
424
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000425# PERL
Bram Moolenaare06c1882010-07-21 22:05:20 +0200426# Uncomment one of these when you want to include the Perl interface.
427# First one is for static linking, second one for dynamic loading.
Bram Moolenaar2446ec92021-10-26 12:00:01 +0100428# Debian package is "libperl-dev"
Bram Moolenaare1d12892004-06-13 13:02:36 +0000429# The Perl option sometimes causes problems, because it adds extra flags
430# to the command line. If you see strange flags during compilation, check in
431# auto/config.mk where they come from. If it's PERL_CFLAGS, try commenting
432# the next line.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200433# When you get an error for a missing "perl.exp" file, try creating an empty
Bram Moolenaare1d12892004-06-13 13:02:36 +0000434# one: "touch perl.exp".
Bram Moolenaarc0394412017-04-20 20:20:23 +0200435# This requires at least "normal" features, "tiny" and "small" don't work.
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000436#CONF_OPT_PERL = --enable-perlinterp
Bram Moolenaare06c1882010-07-21 22:05:20 +0200437#CONF_OPT_PERL = --enable-perlinterp=dynamic
Bram Moolenaare1d12892004-06-13 13:02:36 +0000438
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000439# PYTHON
Bram Moolenaarc0394412017-04-20 20:20:23 +0200440# Uncomment lines here when you want to include the Python interface.
Bram Moolenaar2446ec92021-10-26 12:00:01 +0100441# Debian package is "libpython3-dev".
Bram Moolenaarc0394412017-04-20 20:20:23 +0200442# This requires at least "normal" features, "tiny" and "small" don't work.
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +0200443# Python 3 is preferred, Python 2 (often referred to as "Python") has been
444# deprecated for a long time.
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000445# NOTE: This may cause threading to be enabled, which has side effects (such
446# as using different libraries and debugging becomes more difficult).
Bram Moolenaarfff341e2016-03-13 13:27:36 +0100447# For Python3 support make a symbolic link in /usr/local/bin:
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200448# ln -s python3 python3.1
449# If both python2.x and python3.x are enabled then the linking will be via
450# dlopen(), dlsym(), dlclose(), i.e. pythonX.Y.so must be available
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200451# However, this may still cause problems, such as "import termios" failing.
452# Build two separate versions of Vim in that case.
Bram Moolenaarbc6fcbe2020-07-21 22:34:41 +0200453#CONF_OPT_PYTHON = --enable-pythoninterp
Bram Moolenaar825ccf42018-05-15 22:34:58 +0200454#CONF_OPT_PYTHON = --enable-pythoninterp --with-python-command=python2.7
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200455#CONF_OPT_PYTHON = --enable-pythoninterp=dynamic
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000456#CONF_OPT_PYTHON3 = --enable-python3interp
Bram Moolenaar825ccf42018-05-15 22:34:58 +0200457#CONF_OPT_PYTHON3 = --enable-python3interp --with-python3-command=python3.6
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200458#CONF_OPT_PYTHON3 = --enable-python3interp=dynamic
Bram Moolenaare1d12892004-06-13 13:02:36 +0000459
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000460# RUBY
Bram Moolenaare1d12892004-06-13 13:02:36 +0000461# Uncomment this when you want to include the Ruby interface.
Bram Moolenaar3ca71f12010-10-27 16:49:47 +0200462# First one for static linking, second one for loading when used.
Bram Moolenaar2446ec92021-10-26 12:00:01 +0100463# Debian package is "ruby-dev".
Bram Moolenaarc0394412017-04-20 20:20:23 +0200464# This requires at least "normal" features, "tiny" and "small" don't work.
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000465#CONF_OPT_RUBY = --enable-rubyinterp
Bram Moolenaar8dbafd02020-04-29 23:11:32 +0200466#CONF_OPT_RUBY = --enable-rubyinterp=dynamic
Bram Moolenaar182c5be2010-06-25 05:37:59 +0200467#CONF_OPT_RUBY = --enable-rubyinterp --with-ruby-command=ruby1.9.1
Bram Moolenaare1d12892004-06-13 13:02:36 +0000468
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200469# TCL
470# Uncomment this when you want to include the Tcl interface.
Bram Moolenaar8a5115c2016-01-09 19:41:11 +0100471# First one is for static linking, second one for dynamic loading.
Bram Moolenaar2446ec92021-10-26 12:00:01 +0100472# Debian package is "tcl-dev".
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000473#CONF_OPT_TCL = --enable-tclinterp
Bram Moolenaar8dbafd02020-04-29 23:11:32 +0200474#CONF_OPT_TCL = --enable-tclinterp=dynamic
Bram Moolenaar6df6f472010-07-18 18:04:50 +0200475#CONF_OPT_TCL = --enable-tclinterp --with-tclsh=tclsh8.4
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000476
477# CSCOPE
Bram Moolenaare1d12892004-06-13 13:02:36 +0000478# Uncomment this when you want to include the Cscope interface.
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000479#CONF_OPT_CSCOPE = --enable-cscope
Bram Moolenaare1d12892004-06-13 13:02:36 +0000480
Bram Moolenaare1d12892004-06-13 13:02:36 +0000481# NETBEANS - NetBeans interface. Only works with Motif, GTK, and gnome.
Bram Moolenaar1c321dc2019-02-01 20:42:22 +0100482# Motif version must have XPM libraries (see |netbeans-xpm|).
Bram Moolenaare1d12892004-06-13 13:02:36 +0000483# Uncomment this when you do not want the netbeans interface.
484#CONF_OPT_NETBEANS = --disable-netbeans
485
Bram Moolenaar0e7f88e2016-01-24 20:41:51 +0100486# CHANNEL - inter process communication. Same conditions as NetBeans.
487# Uncomment this when you do not want inter process communication.
488#CONF_OPT_CHANNEL = --disable-channel
489
Bram Moolenaare4f25e42017-07-07 11:54:15 +0200490# TERMINAL - Terminal emulator support, :terminal command. Requires the
Bram Moolenaaref839562017-10-28 20:28:23 +0200491# channel feature. The default is enable for when using "huge" features.
492# Uncomment the first line when you want terminal emulator support for
493# not-huge builds. Uncomment the second line when you don't want terminal
494# emulator support in the huge build.
Bram Moolenaare4f25e42017-07-07 11:54:15 +0200495#CONF_OPT_TERMINAL = --enable-terminal
Bram Moolenaaref839562017-10-28 20:28:23 +0200496#CONF_OPT_TERMINAL = --disable-terminal
Bram Moolenaare4f25e42017-07-07 11:54:15 +0200497
Bram Moolenaare1d12892004-06-13 13:02:36 +0000498# MULTIBYTE - To edit multi-byte characters.
Bram Moolenaar2be7cb72019-01-12 16:10:51 +0100499# This is now always enabled.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000500
Bram Moolenaar14184a32019-02-16 15:10:30 +0100501# When building with at least "big" features, right-left and Arabic
Bram Moolenaar5c5697f2018-12-12 20:34:09 +0100502# features are enabled. Use this to disable them.
Bram Moolenaar14184a32019-02-16 15:10:30 +0100503#CONF_OPT_MULTIBYTE = --disable-rightleft --disable-arabic
Bram Moolenaar5c5697f2018-12-12 20:34:09 +0100504
Bram Moolenaare1d12892004-06-13 13:02:36 +0000505# NLS - National Language Support
506# Uncomment this when you do not want to support translated messages, even
507# though configure can find support for it.
508#CONF_OPT_NLS = --disable-nls
509
Bram Moolenaara5792f52005-11-23 21:25:05 +0000510# XIM - X Input Method. Special character input support for X11 (Chinese,
511# Japanese, special symbols, etc). Also needed for dead-key support.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000512# When omitted it's automatically enabled for the X-windows GUI.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000513#CONF_OPT_INPUT = --enable-xim
514#CONF_OPT_INPUT = --disable-xim
Bram Moolenaare1d12892004-06-13 13:02:36 +0000515
516# FONTSET - X fontset support for output of languages with many characters.
517# Uncomment this when you want to output a multibyte language.
518#CONF_OPT_OUTPUT = --enable-fontset
519
520# ACL - Uncomment this when you do not want to include ACL support, even
521# though your system does support it. E.g., when it's buggy.
522#CONF_OPT_ACL = --disable-acl
523
524# gpm - For mouse support on Linux console via gpm
525# Uncomment this when you do not want to include gpm support, even
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000526# though you have gpm libraries and includes.
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +0200527# For Debian/Ubuntu gpm support requires the libgpm-dev package.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000528#CONF_OPT_GPM = --disable-gpm
529
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000530# sysmouse - For mouse support on FreeBSD and DragonFly console via sysmouse
531# Uncomment this when you do not want do include sysmouse support, even
532# though you have /dev/sysmouse and includes.
533#CONF_OPT_SYSMOUSE = --disable-sysmouse
534
Bram Moolenaar21606672019-06-14 20:40:58 +0200535# libcanberra - For sound support. Default is on for big features.
536# Uncomment one of the two to chose otherwise.
537# CONF_OPT_CANBERRA = --enable-canberra
538# CONF_OPT_CANBERRA = --disable-canberra
539
Bram Moolenaar75aa92a2021-10-14 16:27:19 +0100540# libsodium - For enhanced encryption. Default is on.
541# Uncomment the next line to not use libsodium
542# CONF_OPT_SODIUM = --disable-libsodium
543
Bram Moolenaare1d12892004-06-13 13:02:36 +0000544# FEATURES - For creating Vim with more or less features
545# Uncomment one of these lines when you want to include few to many features.
Bram Moolenaar2e230142016-01-24 20:54:37 +0100546# The default is "huge" for most systems.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000547#CONF_OPT_FEAT = --with-features=tiny
548#CONF_OPT_FEAT = --with-features=small
549#CONF_OPT_FEAT = --with-features=normal
550#CONF_OPT_FEAT = --with-features=big
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000551#CONF_OPT_FEAT = --with-features=huge
Bram Moolenaare1d12892004-06-13 13:02:36 +0000552
553# COMPILED BY - For including a specific e-mail address for ":version".
554#CONF_OPT_COMPBY = "--with-compiledby=John Doe <JohnDoe@yahoo.com>"
555
556# X WINDOWS DISABLE - For creating a plain Vim without any X11 related fancies
557# (otherwise Vim configure will try to include xterm titlebar access)
558# Also disable the GUI above, otherwise it will be included anyway.
559# When both GUI and X11 have been disabled this may save about 15% of the
560# code and make Vim startup quicker.
561#CONF_OPT_X = --without-x
562
563# X WINDOWS DIRECTORY - specify X directories
Bram Moolenaara5792f52005-11-23 21:25:05 +0000564# If configure can't find you X stuff, or if you have multiple X11 derivatives
Bram Moolenaare1d12892004-06-13 13:02:36 +0000565# installed, you may wish to specify which one to use.
566# Select nothing to let configure choose.
567# This here selects openwin (as found on sun).
568#XROOT = /usr/openwin
569#CONF_OPT_X = --x-include=$(XROOT)/include --x-libraries=$(XROOT)/lib
570
571# X11 Session Management Protocol support
572# Vim will try to use XSMP to catch the user logging out if there are unsaved
573# files. Uncomment this line to disable that (it prevents vim trying to open
574# communications with the session manager).
575#CONF_OPT_XSMP = --disable-xsmp
576
577# You may wish to include xsmp but use exclude xsmp-interact if the logout
578# XSMP functionality does not work well with your session-manager (at time of
579# writing, this would be early GNOME-1 gnome-session: it 'freezes' other
580# applications after Vim has cancelled a logout (until Vim quits). This
581# *might* be the Vim code, but is more likely a bug in early GNOME-1.
582# This disables the dialog that asks you if you want to save files or not.
583#CONF_OPT_XSMP = --disable-xsmp-interact
584
Bram Moolenaare42a6d22017-11-12 19:21:51 +0100585# If you want to always automatically add a servername, also in the terminal.
586#CONF_OPT_AUTOSERVE = --enable-autoservername
587
Bram Moolenaare1d12892004-06-13 13:02:36 +0000588# COMPILER - Name of the compiler {{{1
589# The default from configure will mostly be fine, no need to change this, just
590# an example. If a compiler is defined here, configure will use it rather than
591# probing for one. It is dangerous to change this after configure was run.
592# Make will use your choice then -- but beware: Many things may change with
593# another compiler. It is wise to run 'make reconfig' to start all over
594# again.
595#CC = cc
596#CC = gcc
Bram Moolenaar1a3eb8e2014-03-25 15:34:48 +0100597#CC = clang
Bram Moolenaare1d12892004-06-13 13:02:36 +0000598
599# COMPILER FLAGS - change as you please. Either before running {{{1
600# configure or afterwards. For examples see below.
601# When using -g with some older versions of Linux you might get a
602# statically linked executable.
603# When not defined, configure will try to use -O2 -g for gcc and -O for cc.
604#CFLAGS = -g
605#CFLAGS = -O
606
607# Optimization limits - depends on the compiler. Automatic check in configure
608# doesn't work very well, because many compilers only give a warning for
609# unrecognized arguments.
610#CFLAGS = -O -OPT:Olimit=2600
611#CFLAGS = -O -Olimit 2000
612#CFLAGS = -O -FOlimit,2000
613
614# Often used for GCC: mixed optimizing, lot of optimizing, debugging
615#CFLAGS = -g -O2 -fno-strength-reduce -Wall -Wshadow -Wmissing-prototypes
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000616#CFLAGS = -g -O2 -fno-strength-reduce -Wall -Wmissing-prototypes
Bram Moolenaardf177f62005-02-22 08:39:57 +0000617#CFLAGS = -g -Wall -Wmissing-prototypes
Bram Moolenaare1d12892004-06-13 13:02:36 +0000618#CFLAGS = -O6 -fno-strength-reduce -Wall -Wshadow -Wmissing-prototypes
619#CFLAGS = -g -DDEBUG -Wall -Wshadow -Wmissing-prototypes
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000620#CFLAGS = -g -O2 '-DSTARTUPTIME="vimstartup"' -fno-strength-reduce -Wall -Wmissing-prototypes
Bram Moolenaare1d12892004-06-13 13:02:36 +0000621
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +0000622# Use this with GCC to check for mistakes, unused arguments, etc.
Bram Moolenaar1c321dc2019-02-01 20:42:22 +0100623# Note: If you use -Wextra and get warnings in GTK code about function
Bram Moolenaar6efa46f2020-09-02 19:23:06 +0200624# parameters, you can add -Wno-cast-function-type (but not with clang)
Bram Moolenaarbc6fcbe2020-07-21 22:34:41 +0200625#CFLAGS = -g -Wall -Wextra -Wshadow -Wmissing-prototypes -Wunreachable-code -Wno-cast-function-type -Wno-deprecated-declarations -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000626#CFLAGS = -g -Wall -Wextra -Wshadow -Wmissing-prototypes -Wunreachable-code -Wno-deprecated-declarations -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
Bram Moolenaare4f25e42017-07-07 11:54:15 +0200627# Add -Wpedantic to find // comments and other C99 constructs.
628# Better disable Perl and Python to avoid a lot of warnings.
Bram Moolenaar825ccf42018-05-15 22:34:58 +0200629#CFLAGS = -g -Wall -Wextra -Wshadow -Wmissing-prototypes -Wpedantic -Wunreachable-code -Wunused-result -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
Bram Moolenaared8ce052020-04-29 21:04:15 +0200630#CFLAGS = -g -O2 -Wall -Wextra -Wshadow -Wmissing-prototypes -Wpedantic -Wunreachable-code -Wno-cast-function-type -Wunused-result -Wno-deprecated-declarations -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
Bram Moolenaarcfc0eee2010-05-17 21:37:47 +0200631#PYTHON_CFLAGS_EXTRA = -Wno-missing-field-initializers
632#MZSCHEME_CFLAGS_EXTRA = -Wno-unreachable-code -Wno-unused-parameter
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +0000633
Bram Moolenaare1d12892004-06-13 13:02:36 +0000634# EFENCE - Electric-Fence malloc debugging: catches memory accesses beyond
635# allocated memory (and makes every malloc()/free() very slow).
636# Electric Fence is free (search ftp sites).
Bram Moolenaar53180ce2005-07-05 21:48:14 +0000637# You may want to set the EF_PROTECT_BELOW environment variable to check the
638# other side of allocated memory.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000639# On FreeBSD you might need to enlarge the number of mmaps allowed. Do this
640# as root: sysctl -w vm.max_proc_mmap=30000
641#EXTRA_LIBS = /usr/local/lib/libefence.a
642
Bram Moolenaar7db77842014-03-27 17:40:59 +0100643# Autoconf binary.
644AUTOCONF = autoconf
645
Bram Moolenaare1d12892004-06-13 13:02:36 +0000646# PURIFY - remove the # to use the "purify" program (hoi Nia++!)
647#PURIFY = purify
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000648
Bram Moolenaarb9644432016-07-19 12:33:44 +0200649# VALGRIND - remove the # to use valgrind for memory leaks and access errors.
Bram Moolenaarc0394412017-04-20 20:20:23 +0200650# Used for the unittest targets.
Bram Moolenaarb9644432016-07-19 12:33:44 +0200651# VALGRIND = valgrind --tool=memcheck --leak-check=yes --num-callers=25 --log-file=valgrind.$@
652
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000653# NBDEBUG - debugging the netbeans interface.
654#EXTRA_DEFS = -DNBDEBUG
655
Bram Moolenaare1d12892004-06-13 13:02:36 +0000656# }}}
657
658# LINT - for running lint
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +0000659# For standard Unix lint
660LINT = lint
661LINT_OPTIONS = -beprxzF
662# For splint
663# It doesn't work well, crashes on include files and non-ascii characters.
664#LINT = splint
665#LINT_OPTIONS = +unixlib -weak -macrovarprefixexclude -showfunc -linelen 9999
Bram Moolenaare1d12892004-06-13 13:02:36 +0000666
667# PROFILING - Uncomment the next two lines to do profiling with gcc and gprof.
668# Might not work with GUI or Perl.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200669# After running Vim see the profile result with: gprof vim gmon.out | vim -
Bram Moolenaare1d12892004-06-13 13:02:36 +0000670# Need to recompile everything after changing this: "make clean" "make".
Bram Moolenaar02f07e02008-03-12 12:17:28 +0000671#PROFILE_CFLAGS = -pg -g -DWE_ARE_PROFILING
Bram Moolenaare1d12892004-06-13 13:02:36 +0000672#PROFILE_LIBS = -pg
Bram Moolenaar792f0e32018-02-27 17:27:13 +0100673
674# GCC 5 and later need the -no-pie argument.
675#PROFILE_LIBS = -pg -no-pie
676
677# For unknown reasons adding "-lc" fixes a linking problem with some versions
678# of GCC. That's probably a bug in the "-pg" implementation.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000679#PROFILE_LIBS = -pg -lc
Bram Moolenaare1d12892004-06-13 13:02:36 +0000680
Bram Moolenaar096c8bb2015-12-29 14:26:57 +0100681
682# TEST COVERAGE - Uncomment the two lines below the explanation to get code
683# coverage information. (provided by Yegappan Lakshmanan)
684# 1. make clean, run configure and build Vim as usual.
685# 2. Generate the baseline code coverage information:
Bram Moolenaarc0394412017-04-20 20:20:23 +0200686# $ lcov -c -i -b . -d objects -o objects/coverage_base.info
Bram Moolenaar096c8bb2015-12-29 14:26:57 +0100687# 3. Run "make test" to run the unit tests. The code coverage information will
688# be generated in the src/objects directory.
689# 4. Generate the code coverage information from the tests:
Bram Moolenaarc0394412017-04-20 20:20:23 +0200690# $ lcov -c -b . -d objects/ -o objects/coverage_test.info
Bram Moolenaar096c8bb2015-12-29 14:26:57 +0100691# 5. Combine the baseline and test code coverage data:
Bram Moolenaarc0394412017-04-20 20:20:23 +0200692# $ lcov -a objects/coverage_base.info -a objects/coverage_test.info -o objects/coverage_total.info
Bram Moolenaar096c8bb2015-12-29 14:26:57 +0100693# 6. Process the test coverage data and generate a report in html:
Bram Moolenaarc0394412017-04-20 20:20:23 +0200694# $ genhtml objects/coverage_total.info -o objects
Bram Moolenaar096c8bb2015-12-29 14:26:57 +0100695# 7. Open the objects/index.html file in a web browser to view the coverage
696# information.
697#
Bram Moolenaar096c8bb2015-12-29 14:26:57 +0100698# LDFLAGS=--coverage
Bram Moolenaarb4151682020-05-11 22:13:28 +0200699# PROFILE_CFLAGS=-g -O0 -fprofile-arcs -ftest-coverage -DWE_ARE_PROFILING -DUSE_GCOV_FLUSH
700# Alternate flags
701# PROFILE_CFLAGS=-g -O0 --coverage -DWE_ARE_PROFILING -DUSE_GCOV_FLUSH
Bram Moolenaar096c8bb2015-12-29 14:26:57 +0100702
703
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +0200704# Uncomment the next lines to compile Vim with the address sanitizer (asan) and
705# with the undefined sanitizer. Works with gcc.
706# You should also use -DEXITFREE to avoid false reports.
Bram Moolenaar6efa46f2020-09-02 19:23:06 +0200707# May make Vim twice as slow. Errors are reported on stderr.
Bram Moolenaar70b5a5f2015-06-21 13:44:13 +0200708# More at: https://code.google.com/p/address-sanitizer/
Bram Moolenaar25b70c72020-04-01 16:34:17 +0200709# Useful environment variables:
710# $ export ASAN_OPTIONS="print_stacktrace=1 log_path=asan"
Bram Moolenaar95a467e2020-04-23 14:41:46 +0200711# $ export LSAN_OPTIONS="suppressions=`pwd`/testdir/lsan-suppress.txt"
712# When running tests output can be found in testdir/asan.*
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +0200713#SANITIZER_CFLAGS = -g -O0 -fsanitize-recover=all \
714# -fsanitize=address -fsanitize=undefined \
715# -fno-omit-frame-pointer
Bram Moolenaar6efa46f2020-09-02 19:23:06 +0200716
717# Similarly when compiling with clang and using ubsan.
718# $ export UBSAN_OPTIONS="print_stacktrace=1 log_path=ubsan"
719# $ export LSAN_OPTIONS="suppressions=`pwd`/testdir/lsan-suppress.txt"
720# When running tests output can be found in testdir/ubsan.*
721#SANITIZER_CFLAGS = -g -O0 -fsanitize-recover=all -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer
722
Bram Moolenaar70b5a5f2015-06-21 13:44:13 +0200723SANITIZER_LIBS = $(SANITIZER_CFLAGS)
724
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000725# MEMORY LEAK DETECTION
726# Requires installing the ccmalloc library.
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000727# Configuration is in the .ccmalloc or ~/.ccmalloc file.
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000728# Doesn't work very well, since memory linked to from global variables
Bram Moolenaar56718732006-03-15 22:53:57 +0000729# (in libraries) is also marked as leaked memory.
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000730#LEAK_CFLAGS = -DEXITFREE
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100731#LEAK_LIBS = -lccmalloc
Bram Moolenaar0a5fe212005-06-24 23:01:23 +0000732
Bram Moolenaar95f09602016-11-10 20:01:45 +0100733# Uncomment this line to have Vim call abort() when an internal error is
734# detected. Useful when using a tool to find errors.
Bram Moolenaar8d95d702021-12-20 22:12:53 +0000735#ABORT_CFLAGS = -DABORT_ON_INTERNAL_ERROR
Bram Moolenaar95f09602016-11-10 20:01:45 +0100736
Bram Moolenaar2446ec92021-10-26 12:00:01 +0100737####################################################
738### Specific systems, check if yours is listed ### {{{
739####################################################
Bram Moolenaare1d12892004-06-13 13:02:36 +0000740
741### Uncomment things here only if the values chosen by configure are wrong.
Bram Moolenaar3f7d0902016-11-12 21:13:42 +0100742### It's better to adjust configure.ac and "make autoconf", if you can!
743### Then send the required changes to configure.ac to the bugs list.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000744
745### (1) BSD/OS 2.0.1, 2.1 or 3.0 using shared libraries
746###
747#CC = shlicc2
748#CFLAGS = -O2 -g -m486 -Wall -Wshadow -Wmissing-prototypes -fno-builtin
749
750### (2) HP-UX with a non-ANSI cc, use the c89 ANSI compiler
751### The first probably works on all systems
752### The second should work a bit better on newer systems
753### The third should work a bit better on HPUX 11.11
754### Information provided by: Richard Allen <ra@rhi.hi.is>
755#CC = c89 -D_HPUX_SOURCE
756#CC = c89 -O +Onolimit +ESlit -D_HPUX_SOURCE
757#CC = c89 -O +Onolimit +ESlit +e -D_HPUX_SOURCE
758
759### (2) For HP-UX: Enable the use of a different set of digraphs. Use this
760### when the default (ISO) digraphs look completely wrong.
761### After changing this do "touch digraph.c; make".
762#EXTRA_DEFS = -DHPUX_DIGRAPHS
763
764### (2) For HP-UX: 9.04 cpp default macro definition table of 128000 bytes
765### is too small to compile many routines. It produces too much defining
766### and no space errors.
767### Uncomment the following to specify a larger macro definition table.
768#CFLAGS = -Wp,-H256000
769
770### (2) For HP-UX 10.20 using the HP cc, with X11R6 and Motif 1.2, with
771### libraries in /usr/lib instead of /lib (avoiding transition links).
772### Information provided by: David Green
773#XROOT = /usr
774#CONF_OPT_X = --x-include=$(XROOT)/include/X11R6 --x-libraries=$(XROOT)/lib/X11R6
775#GUI_INC_LOC = -I/usr/include/Motif1.2
776#GUI_LIB_LOC = -L/usr/lib/Motif1.2_R6
777
778### (5) AIX 4.1.4 with cc
779#CFLAGS = -O -qmaxmem=8192
780
781### AIX with c89 (Walter Briscoe)
782#CC = c89
783#CPPFLAGS = -D_ALL_SOURCE
784
785### AIX 4.3.3.12 with xic 3.6.6 (David R. Favor)
786# needed to avoid a problem where strings.h gets included
787#CFLAGS = -qsrcmsg -O2 -qmaxmem=8192 -D__STR31__
788
Bram Moolenaare1d12892004-06-13 13:02:36 +0000789### (7) Solaris 2.4/2.5 with Centerline compiler
790#CC = clcc
791#X_LIBS_DIR = -L/usr/openwin/lib -R/usr/openwin/lib
792#CFLAGS = -O
793
794### (9) Solaris 2.x with cc (SunPro), using Athena.
795### Only required for compiling gui_at_sb.c.
796### Symptom: "identifier redeclared: vim_XawScrollbarSetThumb"
797### Use one of the lines (either Full ANSI or no ANSI at all)
798#CFLAGS = $(CFLAGS) -Xc
799#CFLAGS = $(CFLAGS) -Xs
800
801### Solaris 2.3 with X11 and specific cc
802#CC=/opt/SUNWspro/bin/cc -O -Xa -v -R/usr/openwin/lib
803
804### Solaris with /usr/ucb/cc (it is rejected by autoconf as "cc")
805#CC = /usr/ucb/cc
806#EXTRA_LIBS = -R/usr/ucblib
807
Bram Moolenaarbb1969b2019-01-17 15:45:25 +0100808### Solaris with Forte Developer and NetBeans.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000809# The Xpm library is available from http://koala.ilog.fr/ftp/pub/xpm.
810#CC = cc
811#XPM_DIR = /usr/local/xpm/xpm-3.4k-solaris
812#XPM_LIB = -L$(XPM_DIR)/lib -R$(XPM_DIR)/lib -lXpm
813#XPM_IPATH = -I$(XPM_DIR)/include
814#EXTRA_LIBS = $(XPM_LIB)
815#EXTRA_IPATHS = $(XPM_IPATH)
816#EXTRA_DEFS = -xCC -DHAVE_X11_XPM_H
817
Bram Moolenaare1d12892004-06-13 13:02:36 +0000818### (R) for Solaris 2.5 (or 2.5.1) with gcc > 2.5.6 you might need this:
819#LDFLAGS = -lw -ldl -lXmu
820#GUI_LIB_LOC = -L/usr/local/lib
821
822### (8) Unisys 6035 (Glauber Ribeiro)
823#EXTRA_LIBS = -lnsl -lsocket -lgen
824
825### When builtin functions cause problems with gcc (for Sun 4.1.x)
826#CFLAGS = -O2 -Wall -traditional -Wno-implicit
827
828### Apollo DOMAIN (with SYSTYPE = bsd4.3) (TESTED for version 3.0)
829#EXTRA_DEFS = -DDOMAIN
830#CFLAGS= -O -A systype,bsd4.3
831
832### Coherent 4.2.10 on Intel 386 platform
833#EXTRA_DEFS = -Dvoid=int
834#EXTRA_LIBS = -lterm -lsocket
835
836### SCO 3.2, with different library name for terminfo
837#EXTRA_LIBS = -ltinfo
838
839### UTS2 for Amdahl UTS 2.1.x
840#EXTRA_DEFS = -DUTS2
841#EXTRA_LIBS = -lsocket
842
843### UTS4 for Amdahl UTS 4.x
844#EXTRA_DEFS = -DUTS4 -Xa
845
846### USL for Unix Systems Laboratories (SYSV 4.2)
847#EXTRA_DEFS = -DUSL
848
Bram Moolenaare1d12892004-06-13 13:02:36 +0000849### (6) A/UX 3.1.1 with gcc (Jim Jagielski)
850#CC= gcc -D_POSIX_SOURCE
851#CFLAGS= -O2
852#EXTRA_LIBS = -lposix -lbsd -ltermcap -lX11
853
854### (A) Some versions of SCO Open Server 5 (Jan Christiaan van Winkel)
855### Also use the CONF_TERM_LIB below!
856#EXTRA_LIBS = -lgen
857
858### (D) QNX (by G.F. Desrochers)
859#CFLAGS = -g -O -mf -4
860
861### (F) QNX (by John Oleynick)
862# 1. If you don't have an X server: Comment out CONF_OPT_GUI and uncomment
863# CONF_OPT_X = --without-x.
864# 2. make config
865# 3. edit auto/config.mk and remove -ldir and -ltermcap from LIBS. It doesn't
866# have -ldir (does config find it somewhere?) and -ltermcap has at
867# least one problem so I use termlib.o instead. The problem with
868# termcap is that it segfaults if you call it with the name of
869# a non-existent terminal type.
870# 4. edit auto/config.h and add #define USE_TMPNAM
871# 5. add termlib.o to OBJ
872# 6. make
873
874### (H) for Data general DG/UX 5.4.2 and 5.4R3.10 (Jonas J. Schlein)
875#EXTRA_LIBS = -lgen
876
877### (I) SINIX-N 5.42 or 5.43 RM400 R4000 (also SINIX-Y and SINIX-Z)
878#EXTRA_LIBS = -lgen -lnsl
879### For SINIX-Y this is needed for the right prototype of gettimeofday()
880#EXTRA_DEFS = -D_XPG_IV
881
882### (I) Reliant-Unix (aka SINIX) 5.44 with standard cc
883# Use both "-F O3" lines for optimization or the "-g" line for debugging
884#EXTRA_LIBS = -lgen -lsocket -lnsl -lSM -lICE
885#CFLAGS = -F O3 -DSINIXN
886#LDFLAGS = -F O3
887#CFLAGS = -g -DSINIXN
888
889### (P) SCO 3.2.42, with different termcap names for some useful keys DJB
890#EXTRA_DEFS = -DSCOKEYS -DNETTERM_MOUSE -DDEC_MOUSE -DXTERM_MOUSE -DHAVE_GETTIMEOFDAY
891#EXTRA_LIBS = -lsocket -ltermcap -lmalloc -lc_s
892
893### (P) SuperUX 6.2 on NEC SX-4 (Lennart Schultz)
894#GUI_INC_LOC = -I/usr/include
895#GUI_LIB_LOC = -L/usr/lib
896#EXTRA_LIBS = -lgen
897
898### (Q) UNIXSVR 4.2MP on NEC UP4800 (Lennart Schultz)
899#GUI_INC_LOC = -I/usr/necccs/include
900#GUI_LIB_LOC = -L/usr/necccs/lib/X11R6
901#XROOT = /usr/necccs
902#CONF_OPT_X = --x-include=$(XROOT)/include --x-libraries=$(XROOT)/lib/X11R6
903#EXTRA_LIBS = -lsocket -lgen
904
905### Irix 4.0 & 5.2 (Silicon Graphics Machines, __sgi will be defined)
906# Not needed for Irix 5.3, Ives Aerts reported
907#EXTRA_LIBS = -lmalloc -lc_s
908# Irix 4.0, when regexp and regcmp cannot be found when linking:
909#EXTRA_LIBS = -lmalloc -lc_s -lPW
910
911### (S) Irix 6.x (MipsPro compiler): Uses different Olimit flag:
912# Note: This newer option style is used with the MipsPro compilers ONLY if
913# you are compiling an "n32" or "64" ABI binary (use either a -n32
914# flag or a -64 flag for CFLAGS). If you explicitly use a -o32 flag,
915# then the CFLAGS option format will be the typical style (i.e.
916# -Olimit 3000).
917#CFLAGS = -OPT:Olimit=3000 -O
918
919### (S) Irix 6.5 with MipsPro C compiler. Try this as a test to see new
920# compiler features! Beware, the optimization is EXTREMELY thorough
921# and takes quite a long time.
922# Note: See the note above. Here, the -mips3 option automatically
923# enables either the "n32" or "64" ABI, depending on what machine you
924# are compiling on (n32 is explicitly enabled here, just to make sure).
925#CFLAGS = -OPT:Olimit=3500 -O -n32 -mips3 -IPA:aggr_cprop=ON -INLINE:dfe=ON:list=ON:must=screen_char,out_char,ui_write,out_flush
926#LDFLAGS= -OPT:Olimit=3500 -O -n32 -mips3 -IPA:aggr_cprop=ON -INLINE:dfe=ON:list=ON:must=screen_char,out_char,ui_write,out_flush
927
928### (K) for SGI Irix machines with 64 bit pointers ("uname -s" says IRIX64)
929### Suggested by Jon Wright <jon@gate.sinica.edu.tw>.
930### Tested on R8000 IRIX6.1 Power Indigo2.
931### Check /etc/compiler.defaults for your compiler settings.
932# either (for 64 bit pointers) uncomment the following line
933#GUI_LIB_LOC = -L/usr/lib64
934# then
935# 1) make config
936# 2) edit auto/config.mk and delete the -lelf entry in the LIBS line
937# 3) make
938#
939# or (for 32bit pointers) uncomment the following line
940#EXTRA_DEFS = -n32
941#GUI_LIB_LOC = -L/usr/lib32
942# then
943# 1) make config
944# 2) edit auto/config.mk, add -n32 to LDFLAGS
945# 3) make
Bram Moolenaarc4ea3f42008-06-04 13:28:18 +0000946#
947#Alternatively: use -o32 instead of -n32.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000948###
949
950### (C) On SCO Unix v3.2.5 (and probably other versions) the termcap library,
951### which is found by configure, doesn't work correctly. Symptom is the
952### error message "Termcap entry too long". Uncomment the next line.
953### On AIX 4.2.1 (and other versions probably), libtermcap is reported
954### not to display properly.
955### after changing this, you need to do "make reconfig".
956#CONF_TERM_LIB = --with-tlib=curses
957
958### (E) If you want to use termlib library instead of the automatically found
959### one. After changing this, you need to do "make reconfig".
960#CONF_TERM_LIB = --with-tlib=termlib
961
962### (a) ESIX V4.2 (Reinhard Wobst)
963#EXTRA_LIBS = -lnsl -lsocket -lgen -lXIM -lXmu -lXext
964
Bram Moolenaar311d9822007-02-27 15:48:28 +0000965### (c) Tandem/NSK (Matthew Woehlke)
966#EXTRA_LIBS = -lfloss
967
Bram Moolenaare1d12892004-06-13 13:02:36 +0000968### If you want to use ncurses library instead of the automatically found one
969### after changing this, you need to do "make reconfig".
970#CONF_TERM_LIB = --with-tlib=ncurses
971
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100972### For GCC on MS-Windows, the ".exe" suffix will be added.
Bram Moolenaare1d12892004-06-13 13:02:36 +0000973#EXEEXT = .exe
974#LNKEXT = .exe
975
976### (O) For LynxOS 2.5.0, tested on PC.
977#EXTRA_LIBS = -lXext -lSM -lICE -lbsd
978### For LynxOS 3.0.1, tested on PPC
979#EXTRA_LIBS= -lXext -lSM -lICE -lnetinet -lXmu -liberty -lX11
980### For LynxOS 3.1.0, tested on PC
981#EXTRA_LIBS= -lXext -lSM -lICE -lnetinet -lXmu
982
983
984### (V) For CX/UX 6.2 (on Harris/Concurrent NightHawk 4800, 5800). Remove
985### -Qtarget if only in a 5800 environment. (Kipp E. Howard)
986#CFLAGS = -O -Qtarget=m88110compat
987#EXTRA_LIBS = -lgen
988
Bram Moolenaar77c19352012-06-13 19:19:41 +0200989# The value of QUOTESED comes from auto/config.mk.
990# Uncomment the next line to use the default value.
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +0200991# QUOTESED = sed -e 's/[\\"]/\\&/g' -e 's/\\"/"/' -e 's/\\";$$/";/' -e 's/ */ /g'
Bram Moolenaar77c19352012-06-13 19:19:41 +0200992
Bram Moolenaare1d12892004-06-13 13:02:36 +0000993##################### end of system specific lines ################### }}}
994
995### Names of the programs and targets {{{1
996VIMTARGET = $(VIMNAME)$(EXEEXT)
997EXTARGET = $(EXNAME)$(LNKEXT)
998VIEWTARGET = $(VIEWNAME)$(LNKEXT)
999GVIMNAME = g$(VIMNAME)
1000GVIMTARGET = $(GVIMNAME)$(LNKEXT)
1001GVIEWNAME = g$(VIEWNAME)
1002GVIEWTARGET = $(GVIEWNAME)$(LNKEXT)
1003RVIMNAME = r$(VIMNAME)
1004RVIMTARGET = $(RVIMNAME)$(LNKEXT)
1005RVIEWNAME = r$(VIEWNAME)
1006RVIEWTARGET = $(RVIEWNAME)$(LNKEXT)
1007RGVIMNAME = r$(GVIMNAME)
1008RGVIMTARGET = $(RGVIMNAME)$(LNKEXT)
1009RGVIEWNAME = r$(GVIEWNAME)
1010RGVIEWTARGET = $(RGVIEWNAME)$(LNKEXT)
1011VIMDIFFNAME = $(VIMNAME)diff
1012GVIMDIFFNAME = g$(VIMDIFFNAME)
1013VIMDIFFTARGET = $(VIMDIFFNAME)$(LNKEXT)
1014GVIMDIFFTARGET = $(GVIMDIFFNAME)$(LNKEXT)
1015EVIMNAME = e$(VIMNAME)
1016EVIMTARGET = $(EVIMNAME)$(LNKEXT)
1017EVIEWNAME = e$(VIEWNAME)
1018EVIEWTARGET = $(EVIEWNAME)$(LNKEXT)
1019
1020### Names of the tools that are also made {{{1
1021TOOLS = xxd/xxd$(EXEEXT)
1022
1023### Installation directories. The defaults come from configure. {{{1
1024#
1025### prefix the top directory for the data (default "/usr/local")
1026#
1027# Uncomment the next line to install Vim in your home directory.
1028#prefix = $(HOME)
1029
1030### exec_prefix is the top directory for the executable (default $(prefix))
1031#
1032# Uncomment the next line to install the Vim executable in "/usr/machine/bin"
1033#exec_prefix = /usr/machine
1034
1035### BINDIR dir for the executable (default "$(exec_prefix)/bin")
1036### MANDIR dir for the manual pages (default "$(prefix)/man")
1037### DATADIR dir for the other files (default "$(prefix)/lib" or
1038# "$(prefix)/share")
1039# They may be different when using different architectures for the
1040# executable and a common directory for the other files.
1041#
1042# Uncomment the next line to install Vim in "/usr/bin"
1043#BINDIR = /usr/bin
1044# Uncomment the next line to install Vim manuals in "/usr/share/man/man1"
1045#MANDIR = /usr/share/man
1046# Uncomment the next line to install Vim help files in "/usr/share/vim"
1047#DATADIR = /usr/share
1048
1049### DESTDIR root of the installation tree. This is prepended to the other
1050# directories. This directory must exist.
1051#DESTDIR = ~/pkg/vim
1052
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001053### Directory of the man pages
1054MAN1DIR = /man1
Bram Moolenaare1d12892004-06-13 13:02:36 +00001055
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001056### Vim version (adjusted by a script)
Bram Moolenaarbb76f242016-09-12 14:24:39 +02001057VIMMAJOR = 8
Bram Moolenaar98056532019-12-12 14:18:35 +01001058VIMMINOR = 2
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001059
Bram Moolenaare1d12892004-06-13 13:02:36 +00001060### Location of Vim files (should not need to be changed, and {{{1
1061### some things might not work when they are changed!)
1062VIMDIR = /vim
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001063VIMRTDIR = /vim$(VIMMAJOR)$(VIMMINOR)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001064HELPSUBDIR = /doc
1065COLSUBDIR = /colors
1066SYNSUBDIR = /syntax
1067INDSUBDIR = /indent
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001068AUTOSUBDIR = /autoload
Bram Moolenaare1d12892004-06-13 13:02:36 +00001069PLUGSUBDIR = /plugin
1070FTPLUGSUBDIR = /ftplugin
1071LANGSUBDIR = /lang
1072COMPSUBDIR = /compiler
1073KMAPSUBDIR = /keymap
1074MACROSUBDIR = /macros
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +01001075PACKSUBDIR = /pack
Bram Moolenaare1d12892004-06-13 13:02:36 +00001076TOOLSSUBDIR = /tools
1077TUTORSUBDIR = /tutor
Bram Moolenaar217ad922005-03-20 22:37:15 +00001078SPELLSUBDIR = /spell
Bram Moolenaare1d12892004-06-13 13:02:36 +00001079PRINTSUBDIR = /print
1080PODIR = po
1081
1082### VIMLOC common root of the Vim files (all versions)
1083### VIMRTLOC common root of the runtime Vim files (this version)
1084### VIMRCLOC compiled-in location for global [g]vimrc files (all versions)
1085### VIMRUNTIMEDIR compiled-in location for runtime files (optional)
1086### HELPSUBLOC location for help files
1087### COLSUBLOC location for colorscheme files
1088### SYNSUBLOC location for syntax files
1089### INDSUBLOC location for indent files
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001090### AUTOSUBLOC location for standard autoload files
Bram Moolenaare1d12892004-06-13 13:02:36 +00001091### PLUGSUBLOC location for standard plugin files
1092### FTPLUGSUBLOC location for ftplugin files
1093### LANGSUBLOC location for language files
1094### COMPSUBLOC location for compiler files
1095### KMAPSUBLOC location for keymap files
1096### MACROSUBLOC location for macro files
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +01001097### PACKSUBLOC location for packages
Bram Moolenaare1d12892004-06-13 13:02:36 +00001098### TOOLSSUBLOC location for tools files
1099### TUTORSUBLOC location for tutor files
Bram Moolenaar217ad922005-03-20 22:37:15 +00001100### SPELLSUBLOC location for spell files
Bram Moolenaare1d12892004-06-13 13:02:36 +00001101### PRINTSUBLOC location for PostScript files (prolog, latin1, ..)
1102### SCRIPTLOC location for script files (menu.vim, bugreport.vim, ..)
1103### You can override these if you want to install them somewhere else.
1104### Edit feature.h for compile-time settings.
1105VIMLOC = $(DATADIR)$(VIMDIR)
1106VIMRTLOC = $(DATADIR)$(VIMDIR)$(VIMRTDIR)
1107VIMRCLOC = $(VIMLOC)
1108HELPSUBLOC = $(VIMRTLOC)$(HELPSUBDIR)
1109COLSUBLOC = $(VIMRTLOC)$(COLSUBDIR)
1110SYNSUBLOC = $(VIMRTLOC)$(SYNSUBDIR)
1111INDSUBLOC = $(VIMRTLOC)$(INDSUBDIR)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001112AUTOSUBLOC = $(VIMRTLOC)$(AUTOSUBDIR)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001113PLUGSUBLOC = $(VIMRTLOC)$(PLUGSUBDIR)
1114FTPLUGSUBLOC = $(VIMRTLOC)$(FTPLUGSUBDIR)
1115LANGSUBLOC = $(VIMRTLOC)$(LANGSUBDIR)
1116COMPSUBLOC = $(VIMRTLOC)$(COMPSUBDIR)
1117KMAPSUBLOC = $(VIMRTLOC)$(KMAPSUBDIR)
1118MACROSUBLOC = $(VIMRTLOC)$(MACROSUBDIR)
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +01001119PACKSUBLOC = $(VIMRTLOC)$(PACKSUBDIR)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001120TOOLSSUBLOC = $(VIMRTLOC)$(TOOLSSUBDIR)
1121TUTORSUBLOC = $(VIMRTLOC)$(TUTORSUBDIR)
Bram Moolenaar217ad922005-03-20 22:37:15 +00001122SPELLSUBLOC = $(VIMRTLOC)$(SPELLSUBDIR)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001123PRINTSUBLOC = $(VIMRTLOC)$(PRINTSUBDIR)
1124SCRIPTLOC = $(VIMRTLOC)
1125
1126### Only set VIMRUNTIMEDIR when VIMRTLOC is set to a different location and
1127### the runtime directory is not below it.
1128#VIMRUNTIMEDIR = $(VIMRTLOC)
1129
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02001130### Name of the defaults/evim/mswin file target.
1131VIM_DEFAULTS_FILE = $(DESTDIR)$(SCRIPTLOC)/defaults.vim
Bram Moolenaare1d12892004-06-13 13:02:36 +00001132EVIM_FILE = $(DESTDIR)$(SCRIPTLOC)/evim.vim
1133MSWIN_FILE = $(DESTDIR)$(SCRIPTLOC)/mswin.vim
1134
1135### Name of the menu file target.
1136SYS_MENU_FILE = $(DESTDIR)$(SCRIPTLOC)/menu.vim
1137SYS_SYNMENU_FILE = $(DESTDIR)$(SCRIPTLOC)/synmenu.vim
1138SYS_DELMENU_FILE = $(DESTDIR)$(SCRIPTLOC)/delmenu.vim
1139
1140### Name of the bugreport file target.
1141SYS_BUGR_FILE = $(DESTDIR)$(SCRIPTLOC)/bugreport.vim
1142
1143### Name of the file type detection file target.
1144SYS_FILETYPE_FILE = $(DESTDIR)$(SCRIPTLOC)/filetype.vim
1145
1146### Name of the file type detection file target.
1147SYS_FTOFF_FILE = $(DESTDIR)$(SCRIPTLOC)/ftoff.vim
1148
1149### Name of the file type detection script file target.
1150SYS_SCRIPTS_FILE = $(DESTDIR)$(SCRIPTLOC)/scripts.vim
1151
1152### Name of the ftplugin-on file target.
1153SYS_FTPLUGIN_FILE = $(DESTDIR)$(SCRIPTLOC)/ftplugin.vim
1154
1155### Name of the ftplugin-off file target.
1156SYS_FTPLUGOF_FILE = $(DESTDIR)$(SCRIPTLOC)/ftplugof.vim
1157
1158### Name of the indent-on file target.
1159SYS_INDENT_FILE = $(DESTDIR)$(SCRIPTLOC)/indent.vim
1160
1161### Name of the indent-off file target.
1162SYS_INDOFF_FILE = $(DESTDIR)$(SCRIPTLOC)/indoff.vim
1163
1164### Name of the option window script file target.
1165SYS_OPTWIN_FILE = $(DESTDIR)$(SCRIPTLOC)/optwin.vim
1166
1167# Program to install the program in the target directory. Could also be "mv".
1168INSTALL_PROG = cp
1169
1170# Program to install the data in the target directory. Cannot be "mv"!
1171INSTALL_DATA = cp
1172INSTALL_DATA_R = cp -r
1173
Bram Moolenaar3ca71f12010-10-27 16:49:47 +02001174### Program to run on installed binary. Use the second one to disable strip.
Bram Moolenaare1d12892004-06-13 13:02:36 +00001175#STRIP = strip
Bram Moolenaar3ca71f12010-10-27 16:49:47 +02001176#STRIP = /bin/true
Bram Moolenaare1d12892004-06-13 13:02:36 +00001177
1178### Permissions for binaries {{{1
1179BINMOD = 755
1180
1181### Permissions for man page
1182MANMOD = 644
1183
1184### Permissions for help files
1185HELPMOD = 644
1186
1187### Permissions for Perl and shell scripts
1188SCRIPTMOD = 755
1189
1190### Permission for Vim script files (menu.vim, bugreport.vim, ..)
1191VIMSCRIPTMOD = 644
1192
1193### Permissions for all directories that are created
1194DIRMOD = 755
1195
1196### Permissions for all other files that are created
1197FILEMOD = 644
1198
1199# Where to copy the man and help files from
1200HELPSOURCE = ../runtime/doc
1201
1202# Where to copy the script files from (menu, bugreport)
1203SCRIPTSOURCE = ../runtime
1204
1205# Where to copy the colorscheme files from
1206COLSOURCE = ../runtime/colors
1207
1208# Where to copy the syntax files from
1209SYNSOURCE = ../runtime/syntax
1210
1211# Where to copy the indent files from
1212INDSOURCE = ../runtime/indent
1213
1214# Where to copy the standard plugin files from
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001215AUTOSOURCE = ../runtime/autoload
1216
1217# Where to copy the standard plugin files from
Bram Moolenaare1d12892004-06-13 13:02:36 +00001218PLUGSOURCE = ../runtime/plugin
1219
1220# Where to copy the ftplugin files from
1221FTPLUGSOURCE = ../runtime/ftplugin
1222
1223# Where to copy the macro files from
1224MACROSOURCE = ../runtime/macros
1225
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +01001226# Where to copy the package files from
1227PACKSOURCE = ../runtime/pack
1228
Bram Moolenaare1d12892004-06-13 13:02:36 +00001229# Where to copy the tools files from
1230TOOLSSOURCE = ../runtime/tools
1231
1232# Where to copy the tutor files from
1233TUTORSOURCE = ../runtime/tutor
1234
Bram Moolenaar217ad922005-03-20 22:37:15 +00001235# Where to copy the spell files from
1236SPELLSOURCE = ../runtime/spell
1237
Bram Moolenaare1d12892004-06-13 13:02:36 +00001238# Where to look for language specific files
1239LANGSOURCE = ../runtime/lang
1240
1241# Where to look for compiler files
1242COMPSOURCE = ../runtime/compiler
1243
1244# Where to look for keymap files
1245KMAPSOURCE = ../runtime/keymap
1246
1247# Where to look for print resource files
1248PRINTSOURCE = ../runtime/print
1249
1250# If you are using Linux, you might want to use this to make vim the
1251# default vi editor, it will create a link from vi to Vim when doing
1252# "make install". An existing file will be overwritten!
1253# When not using it, some make programs can't handle an undefined $(LINKIT).
Bram Moolenaarc4ea3f42008-06-04 13:28:18 +00001254#LINKIT = ln -f -s $(DEST_BIN)/$(VIMTARGET) $(DESTDIR)/usr/bin/vi
Bram Moolenaare1d12892004-06-13 13:02:36 +00001255LINKIT = @echo >/dev/null
1256
1257###
1258### GRAPHICAL USER INTERFACE (GUI). {{{1
1259### 'configure --enable-gui' can enable one of these for you if you did set
1260### a corresponding CONF_OPT_GUI above and have X11.
1261### Override configures choice by uncommenting all the following lines.
1262### As they are, the GUI is disabled. Replace "NONE" with "ATHENA" or "MOTIF"
1263### for enabling the Athena or Motif GUI.
1264#GUI_SRC = $(NONE_SRC)
1265#GUI_OBJ = $(NONE_OBJ)
1266#GUI_DEFS = $(NONE_DEFS)
1267#GUI_IPATH = $(NONE_IPATH)
1268#GUI_LIBS_DIR = $(NONE_LIBS_DIR)
1269#GUI_LIBS1 = $(NONE_LIBS1)
1270#GUI_LIBS2 = $(NONE_LIBS2)
1271#GUI_INSTALL = $(NONE_INSTALL)
1272#GUI_TARGETS = $(NONE_TARGETS)
1273#GUI_MAN_TARGETS= $(NONE_MAN_TARGETS)
1274#GUI_TESTTARGET = $(NONE_TESTTARGET)
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00001275#GUI_BUNDLE = $(NONE_BUNDLE)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001276
1277# Without a GUI install the normal way.
1278NONE_INSTALL = install_normal
1279
1280### GTK GUI
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001281GTK_SRC = gui.c gui_gtk.c gui_gtk_x11.c gui_gtk_f.c \
Bram Moolenaar36e294c2015-12-29 18:55:46 +01001282 gui_beval.c $(GRESOURCE_SRC)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001283GTK_OBJ = objects/gui.o objects/gui_gtk.o objects/gui_gtk_x11.o \
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001284 objects/gui_gtk_f.o \
Bram Moolenaar36e294c2015-12-29 18:55:46 +01001285 objects/gui_beval.o $(GRESOURCE_OBJ)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001286GTK_DEFS = -DFEAT_GUI_GTK $(NARROW_PROTO)
1287GTK_IPATH = $(GUI_INC_LOC)
1288GTK_LIBS_DIR = $(GUI_LIB_LOC)
1289GTK_LIBS1 =
1290GTK_LIBS2 = $(GTK_LIBNAME)
Bram Moolenaarb64bb6e2008-06-20 19:29:35 +00001291GTK_INSTALL = install_normal install_gui_extra
Bram Moolenaare1d12892004-06-13 13:02:36 +00001292GTK_TARGETS = installglinks
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001293GTK_MAN_TARGETS = yes
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001294GTK_TESTTARGET = gui
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00001295GTK_BUNDLE =
Bram Moolenaare1d12892004-06-13 13:02:36 +00001296
1297### Motif GUI
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001298MOTIF_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c \
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001299 gui_xmdlg.c gui_xmebw.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00001300MOTIF_OBJ = objects/gui.o objects/gui_motif.o objects/gui_x11.o \
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001301 objects/gui_beval.o \
Bram Moolenaarb7fcef52005-01-02 11:31:05 +00001302 objects/gui_xmdlg.o objects/gui_xmebw.o
Bram Moolenaare1d12892004-06-13 13:02:36 +00001303MOTIF_DEFS = -DFEAT_GUI_MOTIF $(NARROW_PROTO)
1304MOTIF_IPATH = $(GUI_INC_LOC)
1305MOTIF_LIBS_DIR = $(GUI_LIB_LOC)
1306MOTIF_LIBS1 =
1307MOTIF_LIBS2 = $(MOTIF_LIBNAME) -lXt
Bram Moolenaarb64bb6e2008-06-20 19:29:35 +00001308MOTIF_INSTALL = install_normal install_gui_extra
Bram Moolenaare1d12892004-06-13 13:02:36 +00001309MOTIF_TARGETS = installglinks
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001310MOTIF_MAN_TARGETS = yes
Bram Moolenaare1d12892004-06-13 13:02:36 +00001311MOTIF_TESTTARGET = gui
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00001312MOTIF_BUNDLE =
Bram Moolenaare1d12892004-06-13 13:02:36 +00001313
1314### Athena GUI
1315### Use Xaw3d to make the menus look a little bit nicer
1316#XAW_LIB = -lXaw3d
1317XAW_LIB = -lXaw
1318
1319### When using Xaw3d, uncomment/comment the following lines to also get the
1320### scrollbars from Xaw3d.
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001321#ATHENA_SRC = gui.c gui_athena.c gui_x11.c gui_beval.c gui_at_fs.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00001322#ATHENA_OBJ = objects/gui.o objects/gui_athena.o objects/gui_x11.o \
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001323# objects/gui_beval.o objects/gui_at_fs.o
Bram Moolenaare1d12892004-06-13 13:02:36 +00001324#ATHENA_DEFS = -DFEAT_GUI_ATHENA $(NARROW_PROTO) \
1325# -Dvim_scrollbarWidgetClass=scrollbarWidgetClass \
1326# -Dvim_XawScrollbarSetThumb=XawScrollbarSetThumb
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001327ATHENA_SRC = gui.c gui_athena.c gui_x11.c gui_beval.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001328 gui_at_sb.c gui_at_fs.c
1329ATHENA_OBJ = objects/gui.o objects/gui_athena.o objects/gui_x11.o \
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001330 objects/gui_beval.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001331 objects/gui_at_sb.o objects/gui_at_fs.o
1332ATHENA_DEFS = -DFEAT_GUI_ATHENA $(NARROW_PROTO)
1333
1334ATHENA_IPATH = $(GUI_INC_LOC)
1335ATHENA_LIBS_DIR = $(GUI_LIB_LOC)
1336ATHENA_LIBS1 = $(XAW_LIB)
1337ATHENA_LIBS2 = -lXt
Bram Moolenaarb64bb6e2008-06-20 19:29:35 +00001338ATHENA_INSTALL = install_normal install_gui_extra
Bram Moolenaare1d12892004-06-13 13:02:36 +00001339ATHENA_TARGETS = installglinks
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001340ATHENA_MAN_TARGETS = yes
Bram Moolenaare1d12892004-06-13 13:02:36 +00001341ATHENA_TESTTARGET = gui
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00001342ATHENA_BUNDLE =
Bram Moolenaare1d12892004-06-13 13:02:36 +00001343
1344### neXtaw GUI
1345NEXTAW_LIB = -lneXtaw
1346
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001347NEXTAW_SRC = gui.c gui_athena.c gui_x11.c gui_beval.c gui_at_fs.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00001348NEXTAW_OBJ = objects/gui.o objects/gui_athena.o objects/gui_x11.o \
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001349 objects/gui_beval.o objects/gui_at_fs.o
Bram Moolenaare1d12892004-06-13 13:02:36 +00001350NEXTAW_DEFS = -DFEAT_GUI_ATHENA -DFEAT_GUI_NEXTAW $(NARROW_PROTO)
1351
1352NEXTAW_IPATH = $(GUI_INC_LOC)
1353NEXTAW_LIBS_DIR = $(GUI_LIB_LOC)
1354NEXTAW_LIBS1 = $(NEXTAW_LIB)
1355NEXTAW_LIBS2 = -lXt
Bram Moolenaarb64bb6e2008-06-20 19:29:35 +00001356NEXTAW_INSTALL = install_normal install_gui_extra
Bram Moolenaare1d12892004-06-13 13:02:36 +00001357NEXTAW_TARGETS = installglinks
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001358NEXTAW_MAN_TARGETS = yes
Bram Moolenaare1d12892004-06-13 13:02:36 +00001359NEXTAW_TESTTARGET = gui
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00001360NEXTAW_BUNDLE =
Bram Moolenaare1d12892004-06-13 13:02:36 +00001361
1362### (J) Sun OpenWindows 3.2 (SunOS 4.1.x) or earlier that produce these ld
1363# errors: ld: Undefined symbol
1364# _get_wmShellWidgetClass
1365# _get_applicationShellWidgetClass
1366# then you need to get patches 100512-02 and 100573-03 from Sun. In the
1367# meantime, uncomment the following GUI_X_LIBS definition as a workaround:
1368#GUI_X_LIBS = -Bstatic -lXmu -Bdynamic -lXext
1369# If you also get cos, sin etc. as undefined symbols, try uncommenting this
1370# too:
1371#EXTRA_LIBS = /usr/openwin/lib/libXmu.sa -lm
1372
Bram Moolenaare1d12892004-06-13 13:02:36 +00001373# PHOTON GUI
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001374PHOTONGUI_SRC = gui.c gui_photon.c
1375PHOTONGUI_OBJ = objects/gui.o objects/gui_photon.o
Bram Moolenaare1d12892004-06-13 13:02:36 +00001376PHOTONGUI_DEFS = -DFEAT_GUI_PHOTON
1377PHOTONGUI_IPATH =
1378PHOTONGUI_LIBS_DIR =
1379PHOTONGUI_LIBS1 = -lph -lphexlib
1380PHOTONGUI_LIBS2 =
Bram Moolenaarb64bb6e2008-06-20 19:29:35 +00001381PHOTONGUI_INSTALL = install_normal install_gui_extra
Bram Moolenaare1d12892004-06-13 13:02:36 +00001382PHOTONGUI_TARGETS = installglinks
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001383PHOTONGUI_MAN_TARGETS = yes
Bram Moolenaare1d12892004-06-13 13:02:36 +00001384PHOTONGUI_TESTTARGET = gui
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00001385PHOTONGUI_BUNDLE =
Bram Moolenaare1d12892004-06-13 13:02:36 +00001386
Bram Moolenaarb3f74062020-02-26 16:16:53 +01001387### Haiku GUI
1388HAIKUGUI_SRC = gui.c gui_haiku.cc
1389HAIKUGUI_OBJ = objects/gui.o objects/gui_haiku.o
1390HAIKUGUI_DEFS = -DFEAT_GUI_HAIKU
1391HAIKUGUI_IPATH =
1392HAIKUGUI_LIBS_DIR =
1393HAIKUGUI_LIBS1 = -lbe -lroot -ltracker -ltranslation -lsupc++ -lstdc++
1394HAIKUGUI_LIBS2 =
1395HAIKUGUI_INSTALL = install_normal install_haiku_extra
1396HAIKUGUI_TARGETS = installglinks_haiku
1397HAIKUGUI_MAN_TARGETS =
1398HAIKUGUI_TESTTARGET = gui
1399HAIKUGUI_BUNDLE =
1400
Bram Moolenaare1d12892004-06-13 13:02:36 +00001401# All GUI files
Bram Moolenaarbeae4082020-04-23 15:41:49 +02001402ALL_GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_motif.c gui_xmdlg.c gui_xmebw.c gui_athena.c gui_gtk_x11.c gui_x11.c gui_at_sb.c gui_at_fs.c gui_haiku.cc
1403ALL_GUI_PRO = gui.pro gui_gtk.pro gui_motif.pro gui_xmdlg.pro gui_athena.pro gui_gtk_x11.pro gui_x11.pro gui_w32.pro gui_photon.pro gui_haiku.pro
Bram Moolenaare1d12892004-06-13 13:02:36 +00001404
1405# }}}
1406
Bram Moolenaare4f25e42017-07-07 11:54:15 +02001407TERM_DEPS = \
1408 libvterm/include/vterm.h \
1409 libvterm/include/vterm_keycodes.h \
1410 libvterm/src/rect.h \
1411 libvterm/src/utf8.h \
1412 libvterm/src/vterm_internal.h
1413
Bram Moolenaar9ef2a302018-03-17 15:55:26 +01001414TERM_SRC = libvterm/src/*.c
1415
Bram Moolenaare828b762018-09-10 17:51:58 +02001416XDIFF_SRC = \
1417 xdiff/xdiffi.c \
1418 xdiff/xemit.c \
1419 xdiff/xprepare.c \
1420 xdiff/xutils.c \
1421 xdiff/xhistogram.c \
1422 xdiff/xpatience.c \
1423
1424XDIFF_OBJS = \
1425 objects/xdiffi.o \
1426 objects/xemit.o \
1427 objects/xprepare.o \
1428 objects/xutils.o \
1429 objects/xhistogram.o \
1430 objects/xpatience.o \
1431
1432XDIFF_INCL = \
1433 xdiff/xdiff.h \
1434 xdiff/xdiffi.h \
1435 xdiff/xemit.h \
1436 xdiff/xinclude.h \
1437 xdiff/xmacros.h \
1438 xdiff/xprepare.h \
1439 xdiff/xtypes.h \
1440 xdiff/xutils.h \
1441
Bram Moolenaare1d12892004-06-13 13:02:36 +00001442### Command to create dependencies based on #include "..."
1443### prototype headers are ignored due to -DPROTO, system
1444### headers #include <...> are ignored if we use the -MM option, as
1445### e.g. provided by gcc-cpp.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001446### Include FEAT_GUI to get dependency on gui.h
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00001447### Need to change "-I /<path>" to "-isystem /<path>" for GCC 3.x.
1448CPP_DEPEND = $(CC) -I$(srcdir) -M$(CPP_MM) \
1449 `echo "$(DEPEND_CFLAGS)" $(DEPEND_CFLAGS_FILTER)`
Bram Moolenaare1d12892004-06-13 13:02:36 +00001450
1451# flags for cproto
1452# This is for cproto 3 patchlevel 8 or below
1453# __inline, __attribute__ and __extension__ are not recognized by cproto
Bram Moolenaard5cdbeb2005-10-10 20:59:28 +00001454# G_IMPLEMENT_INLINES is to avoid functions defined in glib/gutils.h.
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001455#NO_ATTR = -D__inline= -D__inline__= -DG_IMPLEMENT_INLINES \
1456# -D"__attribute__\\(x\\)=" -D"__asm__\\(x\\)=" \
1457# -D__extension__= -D__restrict="" \
1458# -D__gnuc_va_list=char -D__builtin_va_list=char
Bram Moolenaare1d12892004-06-13 13:02:36 +00001459#
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001460# This is for cproto 3 patchlevel 9 or above (currently 4.6, 4.7g)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001461# __inline and __attribute__ are now recognized by cproto
Bram Moolenaar75aa92a2021-10-14 16:27:19 +01001462# __attribute() is not recognized and used in X11/Intrinsic.h
Bram Moolenaare1d12892004-06-13 13:02:36 +00001463# -D"foo()=" is not supported by all compilers so do not use it
Bram Moolenaar75aa92a2021-10-14 16:27:19 +01001464NO_ATTR = -D"__attribute\\(x\\)="
Bram Moolenaare1d12892004-06-13 13:02:36 +00001465#
Bram Moolenaare1d12892004-06-13 13:02:36 +00001466# Use this for cproto 3 patchlevel 6 or below (use "cproto -V" to check):
Bram Moolenaaref269542016-01-19 13:22:12 +01001467# PROTO_FLAGS = -f4 -d -E"$(CPP)" $(NO_ATTR)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001468#
1469# Use this for cproto 3 patchlevel 7 or above (use "cproto -V" to check):
Bram Moolenaaref269542016-01-19 13:22:12 +01001470PROTO_FLAGS = -d -E"$(CPP)" $(NO_ATTR)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001471
1472
1473################################################
1474## no changes required below this line ##
1475################################################
1476
1477SHELL = /bin/sh
1478
Bram Moolenaar1d4be822017-04-21 23:00:02 +02001479# We would normally use "mkdir -p" but it doesn't work properly everywhere.
1480# Using AC_PROG_MKDIR_P in configure.ac has a problem with the "auto"
1481# directory. Always use the install-sh script, it's slower but reliable.
1482MKDIR_P = $(SHELL) install-sh -c -d
1483
Bram Moolenaare1d12892004-06-13 13:02:36 +00001484.SUFFIXES:
Bram Moolenaar9372a112005-12-06 19:59:18 +00001485.SUFFIXES: .c .o .pro
Bram Moolenaare1d12892004-06-13 13:02:36 +00001486
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02001487VTERM_CFLAGS = -Ilibvterm/include
1488
Bram Moolenaare1d12892004-06-13 13:02:36 +00001489PRE_DEFS = -Iproto $(DEFS) $(GUI_DEFS) $(GUI_IPATH) $(CPPFLAGS) $(EXTRA_IPATHS)
Bram Moolenaar8a5115c2016-01-09 19:41:11 +01001490POST_DEFS = $(X_CFLAGS) $(MZSCHEME_CFLAGS) $(EXTRA_DEFS)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001491
Bram Moolenaar0a1b17b2019-02-16 13:45:09 +01001492ALL_CFLAGS = $(PRE_DEFS) $(CFLAGS) $(PROFILE_CFLAGS) $(SANITIZER_CFLAGS) $(LEAK_CFLAGS) $(ABORT_CFLAGS) $(POST_DEFS)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001493
ichizok8bb3fe42021-12-28 15:51:45 +00001494ALL_IF_CFLAGS = $(LUA_CFLAGS) $(PERL_CFLAGS) $(PYTHON_CFLAGS) $(PYTHON3_CFLAGS) $(RUBY_CFLAGS) $(TCL_CFLAGS)
1495ALL_IF_CFLAGS_EXTRA = $(LUA_CFLAGS_EXTRA) $(PERL_CFLAGS_EXTRA) $(PYTHON_CFLAGS_EXTRA) $(PYTHON3_CFLAGS_EXTRA) $(RUBY_CFLAGS_EXTRA) $(TCL_CFLAGS_EXTRA)
1496
Bram Moolenaare224ffa2006-03-01 00:01:28 +00001497# Exclude $CFLAGS for osdef.sh, for Mac 10.4 some flags don't work together
1498# with "-E".
1499OSDEF_CFLAGS = $(PRE_DEFS) $(POST_DEFS)
1500
ichizok8bb3fe42021-12-28 15:51:45 +00001501LINT_CFLAGS = -DLINT -I. $(PRE_DEFS) $(POST_DEFS) $(ALL_IF_CFLAGS) $(VTERM_CFLAGS) \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02001502 -Dinline= -D__extension__= -Dalloca=alloca
Bram Moolenaar051b7822005-05-19 21:00:46 +00001503
Bram Moolenaar54612582019-11-21 17:13:31 +01001504LINT_EXTRA = -D"__attribute__(x)="
Bram Moolenaare1d12892004-06-13 13:02:36 +00001505
1506DEPEND_CFLAGS = -DPROTO -DDEPEND -DFEAT_GUI $(LINT_CFLAGS)
1507
Bram Moolenaard2142212013-01-30 17:41:50 +01001508# Note: MZSCHEME_LIBS must come before LIBS, because LIBS adds -lm which is
1509# needed by racket.
Bram Moolenaare1d12892004-06-13 13:02:36 +00001510ALL_LIB_DIRS = $(GUI_LIBS_DIR) $(X_LIBS_DIR)
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001511ALL_LIBS = \
1512 $(GUI_LIBS1) \
1513 $(GUI_X_LIBS) \
1514 $(GUI_LIBS2) \
1515 $(X_PRE_LIBS) \
1516 $(X_LIBS) \
1517 $(X_EXTRA_LIBS) \
Bram Moolenaard2142212013-01-30 17:41:50 +01001518 $(MZSCHEME_LIBS) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001519 $(LIBS) \
1520 $(EXTRA_LIBS) \
1521 $(LUA_LIBS) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001522 $(PERL_LIBS) \
1523 $(PYTHON_LIBS) \
1524 $(PYTHON3_LIBS) \
1525 $(TCL_LIBS) \
1526 $(RUBY_LIBS) \
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001527 $(PROFILE_LIBS) \
Bram Moolenaar70b5a5f2015-06-21 13:44:13 +02001528 $(SANITIZER_LIBS) \
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001529 $(LEAK_LIBS)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001530
1531# abbreviations
1532DEST_BIN = $(DESTDIR)$(BINDIR)
1533DEST_VIM = $(DESTDIR)$(VIMLOC)
1534DEST_RT = $(DESTDIR)$(VIMRTLOC)
1535DEST_HELP = $(DESTDIR)$(HELPSUBLOC)
1536DEST_COL = $(DESTDIR)$(COLSUBLOC)
1537DEST_SYN = $(DESTDIR)$(SYNSUBLOC)
1538DEST_IND = $(DESTDIR)$(INDSUBLOC)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001539DEST_AUTO = $(DESTDIR)$(AUTOSUBLOC)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001540DEST_PLUG = $(DESTDIR)$(PLUGSUBLOC)
1541DEST_FTP = $(DESTDIR)$(FTPLUGSUBLOC)
1542DEST_LANG = $(DESTDIR)$(LANGSUBLOC)
1543DEST_COMP = $(DESTDIR)$(COMPSUBLOC)
1544DEST_KMAP = $(DESTDIR)$(KMAPSUBLOC)
1545DEST_MACRO = $(DESTDIR)$(MACROSUBLOC)
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +01001546DEST_PACK = $(DESTDIR)$(PACKSUBLOC)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001547DEST_TOOLS = $(DESTDIR)$(TOOLSSUBLOC)
1548DEST_TUTOR = $(DESTDIR)$(TUTORSUBLOC)
Bram Moolenaar217ad922005-03-20 22:37:15 +00001549DEST_SPELL = $(DESTDIR)$(SPELLSUBLOC)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001550DEST_SCRIPT = $(DESTDIR)$(SCRIPTLOC)
1551DEST_PRINT = $(DESTDIR)$(PRINTSUBLOC)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001552DEST_MAN_TOP = $(DESTDIR)$(MANDIR)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001553
1554# We assume that the ".../man/xx/man1/" directory is for latin1 manual pages.
1555# Some systems use UTF-8, but these should find the ".../man/xx.UTF-8/man1/"
1556# directory first.
Bram Moolenaar217ad922005-03-20 22:37:15 +00001557# FreeBSD uses ".../man/xx.ISO8859-1/man1" for latin1, use that one too.
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001558DEST_MAN = $(DEST_MAN_TOP)$(MAN1DIR)
Bram Moolenaar08505312018-07-07 22:26:54 +02001559DEST_MAN_DA = $(DEST_MAN_TOP)/da$(MAN1DIR)
1560DEST_MAN_DA_I = $(DEST_MAN_TOP)/da.ISO8859-1$(MAN1DIR)
1561DEST_MAN_DA_U = $(DEST_MAN_TOP)/da.UTF-8$(MAN1DIR)
1562DEST_MAN_DE = $(DEST_MAN_TOP)/de$(MAN1DIR)
1563DEST_MAN_DE_I = $(DEST_MAN_TOP)/de.ISO8859-1$(MAN1DIR)
1564DEST_MAN_DE_U = $(DEST_MAN_TOP)/de.UTF-8$(MAN1DIR)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001565DEST_MAN_FR = $(DEST_MAN_TOP)/fr$(MAN1DIR)
1566DEST_MAN_FR_I = $(DEST_MAN_TOP)/fr.ISO8859-1$(MAN1DIR)
1567DEST_MAN_FR_U = $(DEST_MAN_TOP)/fr.UTF-8$(MAN1DIR)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001568DEST_MAN_IT = $(DEST_MAN_TOP)/it$(MAN1DIR)
Bram Moolenaar217ad922005-03-20 22:37:15 +00001569DEST_MAN_IT_I = $(DEST_MAN_TOP)/it.ISO8859-1$(MAN1DIR)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001570DEST_MAN_IT_U = $(DEST_MAN_TOP)/it.UTF-8$(MAN1DIR)
Bram Moolenaar48483db2013-08-03 17:21:26 +02001571DEST_MAN_JA_U = $(DEST_MAN_TOP)/ja$(MAN1DIR)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001572DEST_MAN_PL = $(DEST_MAN_TOP)/pl$(MAN1DIR)
1573DEST_MAN_PL_I = $(DEST_MAN_TOP)/pl.ISO8859-2$(MAN1DIR)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001574DEST_MAN_PL_U = $(DEST_MAN_TOP)/pl.UTF-8$(MAN1DIR)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001575DEST_MAN_RU = $(DEST_MAN_TOP)/ru.KOI8-R$(MAN1DIR)
1576DEST_MAN_RU_U = $(DEST_MAN_TOP)/ru.UTF-8$(MAN1DIR)
Bram Moolenaarf09715b2020-05-31 14:25:22 +02001577DEST_MAN_TR = $(DEST_MAN_TOP)/tr$(MAN1DIR)
1578DEST_MAN_TR_I = $(DEST_MAN_TOP)/tr.ISO8859-9$(MAN1DIR)
1579DEST_MAN_TR_U = $(DEST_MAN_TOP)/tr.UTF-8$(MAN1DIR)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001580
Bram Moolenaarec504012019-01-11 17:30:16 +01001581# stuff common to all systems
Bram Moolenaarf3dc2352018-07-04 23:05:34 +02001582include Make_all.mak
1583
Bram Moolenaarec504012019-01-11 17:30:16 +01001584# get the list of tests
1585include testdir/Make_all.mak
1586
Bram Moolenaare1d12892004-06-13 13:02:36 +00001587# BASIC_SRC: files that are always used
1588# GUI_SRC: extra GUI files for current configuration
1589# ALL_GUI_SRC: all GUI files for Unix
1590#
1591# SRC: files used for current configuration
Bram Moolenaare1d12892004-06-13 13:02:36 +00001592# ALL_SRC: source files used for make depend and make lint
1593
Bram Moolenaare1d12892004-06-13 13:02:36 +00001594BASIC_SRC = \
Yegappan Lakshmanancbae5802021-08-06 21:51:55 +02001595 alloc.c \
Bram Moolenaar75464dc2016-07-02 20:27:50 +02001596 arabic.c \
Bram Moolenaar4ad62152019-08-17 14:38:55 +02001597 arglist.c \
Bram Moolenaar3e460fd2019-01-26 16:21:07 +01001598 autocmd.c \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001599 beval.c \
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001600 blob.c \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001601 blowfish.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001602 buffer.c \
Bram Moolenaarec28d152019-05-11 18:36:34 +02001603 change.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001604 charset.c \
Bram Moolenaar14c01f82019-10-09 22:53:08 +02001605 cindent.c \
Bram Moolenaarf87a0402020-04-05 20:21:03 +02001606 clientserver.c \
Bram Moolenaar45fffdf2020-03-24 21:42:01 +01001607 clipboard.c \
Bram Moolenaar66b51422019-08-18 21:44:12 +02001608 cmdexpand.c \
Bram Moolenaard7663c22019-08-06 21:59:57 +02001609 cmdhist.c \
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001610 crypt.c \
1611 crypt_zip.c \
Bram Moolenaareead75c2019-04-21 11:35:00 +02001612 debugger.c \
Bram Moolenaarcd524592016-07-17 14:57:05 +02001613 dict.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001614 diff.c \
1615 digraph.c \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001616 drawline.c \
1617 drawscreen.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001618 edit.c \
1619 eval.c \
Bram Moolenaar261f3462019-09-07 15:45:32 +02001620 evalbuffer.c \
Bram Moolenaar73dad1e2016-07-17 22:13:49 +02001621 evalfunc.c \
Bram Moolenaar0522ba02019-08-27 22:48:30 +02001622 evalvars.c \
Bram Moolenaar261f3462019-09-07 15:45:32 +02001623 evalwindow.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001624 ex_cmds.c \
1625 ex_cmds2.c \
1626 ex_docmd.c \
1627 ex_eval.c \
1628 ex_getln.c \
1629 fileio.c \
Bram Moolenaarb005cd82019-09-04 15:54:55 +02001630 filepath.c \
Bram Moolenaar5fd0f502019-02-13 23:13:28 +01001631 findfile.c \
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +02001632 float.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001633 fold.c \
1634 getchar.c \
Bram Moolenaarf15c8b62020-06-01 14:34:43 +02001635 gui_xim.c \
Bram Moolenaar58d98232005-07-23 22:25:46 +00001636 hardcopy.c \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001637 hashtab.c \
Bram Moolenaarf868ba82020-07-21 21:07:20 +02001638 help.c \
Bram Moolenaarf9cc9f22019-07-14 21:29:22 +02001639 highlight.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001640 if_cscope.c \
1641 if_xcmdsrv.c \
Bram Moolenaar4b471622019-01-31 13:48:09 +01001642 indent.c \
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001643 insexpand.c \
Bram Moolenaar520e1e42016-01-23 19:46:28 +01001644 json.c \
Bram Moolenaarda861d62016-07-17 15:46:27 +02001645 list.c \
Bram Moolenaar054f14b2020-07-22 19:11:19 +02001646 locale.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001647 main.c \
Bram Moolenaarb66bab32019-08-01 14:28:24 +02001648 map.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001649 mark.c \
Bram Moolenaar06cf97e2020-06-28 13:17:26 +02001650 match.c \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001651 mbyte.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001652 memfile.c \
1653 memline.c \
1654 menu.c \
1655 message.c \
1656 misc1.c \
1657 misc2.c \
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001658 mouse.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001659 move.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001660 normal.c \
1661 ops.c \
1662 option.c \
Bram Moolenaardac13472019-09-16 21:06:21 +02001663 optionstr.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001664 os_unix.c \
1665 auto/pathdef.c \
Bram Moolenaar30e8e732019-09-27 13:08:36 +02001666 popupmenu.c \
Bram Moolenaar4d784b22019-05-25 19:51:39 +02001667 popupwin.c \
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +02001668 profiler.c \
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001669 pty.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001670 quickfix.c \
1671 regexp.c \
Bram Moolenaar4aea03e2019-09-25 22:37:17 +02001672 register.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001673 screen.c \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001674 scriptfile.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001675 search.c \
Bram Moolenaar84538072019-07-28 14:15:42 +02001676 session.c \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001677 sha256.c \
Bram Moolenaarbbea4702019-01-01 13:20:31 +01001678 sign.c \
Bram Moolenaar427f5b62019-06-09 13:43:51 +02001679 sound.c \
Bram Moolenaar217ad922005-03-20 22:37:15 +00001680 spell.c \
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001681 spellfile.c \
Bram Moolenaar46a426c2019-09-27 12:41:56 +02001682 spellsuggest.c \
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02001683 strings.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001684 syntax.c \
1685 tag.c \
1686 term.c \
Bram Moolenaare4f25e42017-07-07 11:54:15 +02001687 terminal.c \
Bram Moolenaarecaa70e2019-07-14 14:55:39 +02001688 testing.c \
Bram Moolenaar11abd092020-05-01 14:26:37 +02001689 textformat.c \
Bram Moolenaared8ce052020-04-29 21:04:15 +02001690 textobject.c \
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001691 textprop.c \
Bram Moolenaar0a8fed62020-02-14 13:22:17 +01001692 time.c \
Bram Moolenaar367d59e2020-05-30 17:06:14 +02001693 typval.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001694 ui.c \
1695 undo.c \
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001696 usercmd.c \
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001697 userfunc.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001698 version.c \
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001699 vim9cmds.c, \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001700 vim9compile.c \
1701 vim9execute.c \
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001702 vim9expr.c, \
1703 vim9instr.c, \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001704 vim9script.c \
Bram Moolenaara7cc9e62020-08-09 15:25:14 +02001705 vim9type.c \
Bram Moolenaardefa0672019-07-21 19:25:37 +02001706 viminfo.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001707 window.c \
Bram Moolenaar473952e2019-09-28 16:30:04 +02001708 bufwrite.c \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001709 $(OS_EXTRA_SRC)
1710
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001711SRC = $(BASIC_SRC) \
1712 $(GUI_SRC) \
Bram Moolenaare4f25e42017-07-07 11:54:15 +02001713 $(TERM_SRC) \
Bram Moolenaare828b762018-09-10 17:51:58 +02001714 $(XDIFF_SRC) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001715 $(LUA_SRC) \
1716 $(MZSCHEME_SRC) \
1717 $(PERL_SRC) \
1718 $(PYTHON_SRC) $(PYTHON3_SRC) \
1719 $(TCL_SRC) \
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001720 $(RUBY_SRC)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001721
Bram Moolenaar54612582019-11-21 17:13:31 +01001722EXTRA_SRC = if_lua.c if_mzsch.c auto/if_perl.c if_perlsfio.c \
Bram Moolenaar85b11762016-02-27 18:13:23 +01001723 if_python.c if_python3.c if_tcl.c if_ruby.c \
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001724 gui_beval.c netbeans.c job.c channel.c \
Bram Moolenaar36e294c2015-12-29 18:55:46 +01001725 $(GRESOURCE_SRC)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001726
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001727# Unittest files
Bram Moolenaar56ead342016-02-02 18:20:08 +01001728JSON_TEST_SRC = json_test.c
1729JSON_TEST_TARGET = json_test$(EXEEXT)
Bram Moolenaar4019cf92017-01-28 16:39:34 +01001730KWORD_TEST_SRC = kword_test.c
1731KWORD_TEST_TARGET = kword_test$(EXEEXT)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001732MEMFILE_TEST_SRC = memfile_test.c
1733MEMFILE_TEST_TARGET = memfile_test$(EXEEXT)
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001734MESSAGE_TEST_SRC = message_test.c
1735MESSAGE_TEST_TARGET = message_test$(EXEEXT)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001736
Bram Moolenaar4019cf92017-01-28 16:39:34 +01001737UNITTEST_SRC = $(JSON_TEST_SRC) $(KWORD_TEST_SRC) $(MEMFILE_TEST_SRC) $(MESSAGE_TEST_SRC)
1738UNITTEST_TARGETS = $(JSON_TEST_TARGET) $(KWORD_TEST_TARGET) $(MEMFILE_TEST_TARGET) $(MESSAGE_TEST_TARGET)
1739RUN_UNITTESTS = run_json_test run_kword_test run_memfile_test run_message_test
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001740
Bram Moolenaare1d12892004-06-13 13:02:36 +00001741# All sources, also the ones that are not configured
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01001742ALL_LOCAL_SRC = $(BASIC_SRC) $(ALL_GUI_SRC) $(UNITTEST_SRC) $(EXTRA_SRC)
1743ALL_SRC = $(ALL_LOCAL_SRC) $(TERM_SRC) $(XDIFF_SRC)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001744
1745# Which files to check with lint. Select one of these three lines. ALL_SRC
1746# checks more, but may not work well for checking a GUI that wasn't configured.
1747# The perl sources also don't work well with lint.
Bram Moolenaar54612582019-11-21 17:13:31 +01001748LINT_SRC = $(BASIC_SRC) $(GUI_SRC) \
Bram Moolenaar0e7f88e2016-01-24 20:41:51 +01001749 $(PYTHON_SRC) $(PYTHON3_SRC) $(TCL_SRC) \
Bram Moolenaare4f25e42017-07-07 11:54:15 +02001750 $(NETBEANS_SRC) $(CHANNEL_SRC) $(TERM_SRC)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001751#LINT_SRC = $(SRC)
1752#LINT_SRC = $(ALL_SRC)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001753#LINT_SRC = $(BASIC_SRC)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001754
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001755OBJ_COMMON = \
Yegappan Lakshmanancbae5802021-08-06 21:51:55 +02001756 objects/alloc.o \
Bram Moolenaar75464dc2016-07-02 20:27:50 +02001757 objects/arabic.o \
Bram Moolenaar4ad62152019-08-17 14:38:55 +02001758 objects/arglist.o \
Bram Moolenaar3e460fd2019-01-26 16:21:07 +01001759 objects/autocmd.o \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001760 objects/beval.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001761 objects/buffer.o \
Bram Moolenaarec28d152019-05-11 18:36:34 +02001762 objects/change.o \
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001763 objects/blob.o \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001764 objects/blowfish.o \
Bram Moolenaar14c01f82019-10-09 22:53:08 +02001765 objects/cindent.o \
Bram Moolenaarf87a0402020-04-05 20:21:03 +02001766 objects/clientserver.o \
Bram Moolenaar45fffdf2020-03-24 21:42:01 +01001767 objects/clipboard.o \
Bram Moolenaar66b51422019-08-18 21:44:12 +02001768 objects/cmdexpand.o \
Bram Moolenaard7663c22019-08-06 21:59:57 +02001769 objects/cmdhist.o \
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001770 objects/crypt.o \
1771 objects/crypt_zip.o \
Bram Moolenaareead75c2019-04-21 11:35:00 +02001772 objects/debugger.o \
Bram Moolenaarcd524592016-07-17 14:57:05 +02001773 objects/dict.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001774 objects/diff.o \
1775 objects/digraph.o \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001776 objects/drawline.o \
1777 objects/drawscreen.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001778 objects/edit.o \
1779 objects/eval.o \
Bram Moolenaar261f3462019-09-07 15:45:32 +02001780 objects/evalbuffer.o \
Bram Moolenaar73dad1e2016-07-17 22:13:49 +02001781 objects/evalfunc.o \
Bram Moolenaar0522ba02019-08-27 22:48:30 +02001782 objects/evalvars.o \
Bram Moolenaar261f3462019-09-07 15:45:32 +02001783 objects/evalwindow.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001784 objects/ex_cmds.o \
1785 objects/ex_cmds2.o \
1786 objects/ex_docmd.o \
1787 objects/ex_eval.o \
1788 objects/ex_getln.o \
1789 objects/fileio.o \
Bram Moolenaarb005cd82019-09-04 15:54:55 +02001790 objects/filepath.o \
Bram Moolenaar5fd0f502019-02-13 23:13:28 +01001791 objects/findfile.o \
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +02001792 objects/float.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001793 objects/fold.o \
1794 objects/getchar.o \
Bram Moolenaarf15c8b62020-06-01 14:34:43 +02001795 objects/gui_xim.o \
Bram Moolenaar58d98232005-07-23 22:25:46 +00001796 objects/hardcopy.o \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001797 objects/hashtab.o \
Bram Moolenaarf868ba82020-07-21 21:07:20 +02001798 objects/help.o \
Bram Moolenaarf9cc9f22019-07-14 21:29:22 +02001799 objects/highlight.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001800 objects/if_cscope.o \
1801 objects/if_xcmdsrv.o \
Bram Moolenaar4b471622019-01-31 13:48:09 +01001802 objects/indent.o \
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001803 objects/insexpand.o \
Bram Moolenaarda861d62016-07-17 15:46:27 +02001804 objects/list.o \
Bram Moolenaar054f14b2020-07-22 19:11:19 +02001805 objects/locale.o \
Bram Moolenaarb66bab32019-08-01 14:28:24 +02001806 objects/map.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001807 objects/mark.o \
Bram Moolenaar06cf97e2020-06-28 13:17:26 +02001808 objects/match.o \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001809 objects/mbyte.o \
Bram Moolenaar04b08c32016-02-02 19:01:55 +01001810 objects/memline.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001811 objects/menu.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001812 objects/misc1.o \
1813 objects/misc2.o \
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001814 objects/mouse.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001815 objects/move.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001816 objects/normal.o \
1817 objects/ops.o \
1818 objects/option.o \
Bram Moolenaardac13472019-09-16 21:06:21 +02001819 objects/optionstr.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001820 objects/os_unix.o \
1821 objects/pathdef.o \
Bram Moolenaar30e8e732019-09-27 13:08:36 +02001822 objects/popupmenu.o \
Bram Moolenaar4d784b22019-05-25 19:51:39 +02001823 objects/popupwin.o \
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +02001824 objects/profiler.o \
Bram Moolenaar6ed80692017-07-22 20:53:21 +02001825 objects/pty.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001826 objects/quickfix.o \
1827 objects/regexp.o \
Bram Moolenaar4aea03e2019-09-25 22:37:17 +02001828 objects/register.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001829 objects/screen.o \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001830 objects/scriptfile.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001831 objects/search.o \
Bram Moolenaar84538072019-07-28 14:15:42 +02001832 objects/session.o \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001833 objects/sha256.o \
Bram Moolenaarbbea4702019-01-01 13:20:31 +01001834 objects/sign.o \
Bram Moolenaar427f5b62019-06-09 13:43:51 +02001835 objects/sound.o \
Bram Moolenaar217ad922005-03-20 22:37:15 +00001836 objects/spell.o \
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001837 objects/spellfile.o \
Bram Moolenaar46a426c2019-09-27 12:41:56 +02001838 objects/spellsuggest.o \
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02001839 objects/strings.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001840 objects/syntax.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001841 objects/tag.o \
1842 objects/term.o \
Bram Moolenaare4f25e42017-07-07 11:54:15 +02001843 objects/terminal.o \
Bram Moolenaarecaa70e2019-07-14 14:55:39 +02001844 objects/testing.o \
Bram Moolenaar11abd092020-05-01 14:26:37 +02001845 objects/textformat.o \
Bram Moolenaared8ce052020-04-29 21:04:15 +02001846 objects/textobject.o \
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001847 objects/textprop.o \
Bram Moolenaar0a8fed62020-02-14 13:22:17 +01001848 objects/time.o \
Bram Moolenaar367d59e2020-05-30 17:06:14 +02001849 objects/typval.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001850 objects/ui.o \
1851 objects/undo.o \
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001852 objects/usercmd.o \
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001853 objects/userfunc.o \
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001854 objects/version.o \
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001855 objects/vim9cmds.o \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001856 objects/vim9compile.o \
1857 objects/vim9execute.o \
Bram Moolenaardc7c3662021-12-20 15:04:29 +00001858 objects/vim9expr.o \
1859 objects/vim9instr.o \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001860 objects/vim9script.o \
Bram Moolenaara7cc9e62020-08-09 15:25:14 +02001861 objects/vim9type.o \
Bram Moolenaardefa0672019-07-21 19:25:37 +02001862 objects/viminfo.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001863 objects/window.o \
Bram Moolenaar473952e2019-09-28 16:30:04 +02001864 objects/bufwrite.o \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001865 $(GUI_OBJ) \
Bram Moolenaare4f25e42017-07-07 11:54:15 +02001866 $(TERM_OBJ) \
Bram Moolenaar0ba04292010-07-14 23:23:17 +02001867 $(LUA_OBJ) \
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001868 $(MZSCHEME_OBJ) \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001869 $(PERL_OBJ) \
1870 $(PYTHON_OBJ) \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001871 $(PYTHON3_OBJ) \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001872 $(TCL_OBJ) \
1873 $(RUBY_OBJ) \
1874 $(OS_EXTRA_OBJ) \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001875 $(NETBEANS_OBJ) \
Bram Moolenaar0e7f88e2016-01-24 20:41:51 +01001876 $(CHANNEL_OBJ) \
Bram Moolenaar67ffb412022-01-08 13:36:57 +00001877 $(XDIFF_OBJS_USED)
Bram Moolenaare1d12892004-06-13 13:02:36 +00001878
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001879# The files included by tests are not in OBJ_COMMON.
Bram Moolenaar0df3c7f2016-12-09 19:57:14 +01001880OBJ_MAIN = \
Bram Moolenaar4019cf92017-01-28 16:39:34 +01001881 objects/charset.o \
Bram Moolenaar04b08c32016-02-02 19:01:55 +01001882 objects/json.o \
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001883 objects/main.o \
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001884 objects/memfile.o \
1885 objects/message.o
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001886
Bram Moolenaar0df3c7f2016-12-09 19:57:14 +01001887OBJ = $(OBJ_COMMON) $(OBJ_MAIN)
1888
Bram Moolenaar327054d2016-12-01 21:46:14 +01001889OBJ_JSON_TEST = \
Bram Moolenaar4019cf92017-01-28 16:39:34 +01001890 objects/charset.o \
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001891 objects/memfile.o \
1892 objects/message.o \
1893 objects/json_test.o
Bram Moolenaar04b08c32016-02-02 19:01:55 +01001894
Bram Moolenaar327054d2016-12-01 21:46:14 +01001895JSON_TEST_OBJ = $(OBJ_COMMON) $(OBJ_JSON_TEST)
1896
Bram Moolenaar4019cf92017-01-28 16:39:34 +01001897OBJ_KWORD_TEST = \
1898 objects/json.o \
1899 objects/memfile.o \
1900 objects/message.o \
1901 objects/kword_test.o
1902
1903KWORD_TEST_OBJ = $(OBJ_COMMON) $(OBJ_KWORD_TEST)
1904
Bram Moolenaar327054d2016-12-01 21:46:14 +01001905OBJ_MEMFILE_TEST = \
Bram Moolenaar4019cf92017-01-28 16:39:34 +01001906 objects/charset.o \
Bram Moolenaar04b08c32016-02-02 19:01:55 +01001907 objects/json.o \
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001908 objects/message.o \
Bram Moolenaar04b08c32016-02-02 19:01:55 +01001909 objects/memfile_test.o
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001910
Bram Moolenaar327054d2016-12-01 21:46:14 +01001911MEMFILE_TEST_OBJ = $(OBJ_COMMON) $(OBJ_MEMFILE_TEST)
1912
1913OBJ_MESSAGE_TEST = \
Bram Moolenaar4019cf92017-01-28 16:39:34 +01001914 objects/charset.o \
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02001915 objects/json.o \
1916 objects/memfile.o \
1917 objects/message_test.o
1918
Bram Moolenaar327054d2016-12-01 21:46:14 +01001919MESSAGE_TEST_OBJ = $(OBJ_COMMON) $(OBJ_MESSAGE_TEST)
1920
Bram Moolenaar0df3c7f2016-12-09 19:57:14 +01001921ALL_OBJ = $(OBJ_COMMON) \
1922 $(OBJ_MAIN) \
1923 $(OBJ_JSON_TEST) \
Bram Moolenaar4019cf92017-01-28 16:39:34 +01001924 $(OBJ_KWORD_TEST) \
Bram Moolenaar0df3c7f2016-12-09 19:57:14 +01001925 $(OBJ_MEMFILE_TEST) \
1926 $(OBJ_MESSAGE_TEST)
Bram Moolenaar327054d2016-12-01 21:46:14 +01001927
1928
Bram Moolenaare1d12892004-06-13 13:02:36 +00001929PRO_AUTO = \
Yegappan Lakshmanancbae5802021-08-06 21:51:55 +02001930 alloc.pro \
Bram Moolenaar75464dc2016-07-02 20:27:50 +02001931 arabic.pro \
Bram Moolenaar4ad62152019-08-17 14:38:55 +02001932 arglist.pro \
Bram Moolenaar3e460fd2019-01-26 16:21:07 +01001933 autocmd.pro \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001934 beval.pro \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001935 blowfish.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001936 buffer.pro \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001937 bufwrite.pro \
Bram Moolenaarec28d152019-05-11 18:36:34 +02001938 change.pro \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001939 channel.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001940 charset.pro \
Bram Moolenaar14c01f82019-10-09 22:53:08 +02001941 cindent.pro \
Bram Moolenaarf87a0402020-04-05 20:21:03 +02001942 clientserver.pro \
Bram Moolenaar45fffdf2020-03-24 21:42:01 +01001943 clipboard.pro \
Bram Moolenaar66b51422019-08-18 21:44:12 +02001944 cmdexpand.pro \
Bram Moolenaard7663c22019-08-06 21:59:57 +02001945 cmdhist.pro \
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001946 crypt.pro \
1947 crypt_zip.pro \
Bram Moolenaareead75c2019-04-21 11:35:00 +02001948 debugger.pro \
Bram Moolenaarcd524592016-07-17 14:57:05 +02001949 dict.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001950 diff.pro \
1951 digraph.pro \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001952 drawline.pro \
1953 drawscreen.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001954 edit.pro \
1955 eval.pro \
Bram Moolenaar261f3462019-09-07 15:45:32 +02001956 evalbuffer.pro \
Bram Moolenaar73dad1e2016-07-17 22:13:49 +02001957 evalfunc.pro \
Bram Moolenaar0522ba02019-08-27 22:48:30 +02001958 evalvars.pro \
Bram Moolenaar261f3462019-09-07 15:45:32 +02001959 evalwindow.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001960 ex_cmds.pro \
1961 ex_cmds2.pro \
1962 ex_docmd.pro \
1963 ex_eval.pro \
1964 ex_getln.pro \
1965 fileio.pro \
Bram Moolenaarb005cd82019-09-04 15:54:55 +02001966 filepath.pro \
Bram Moolenaar5fd0f502019-02-13 23:13:28 +01001967 findfile.pro \
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +02001968 float.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001969 fold.pro \
1970 getchar.pro \
Bram Moolenaarf15c8b62020-06-01 14:34:43 +02001971 gui_xim.pro \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001972 gui_beval.pro \
Bram Moolenaar58d98232005-07-23 22:25:46 +00001973 hardcopy.pro \
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001974 hashtab.pro \
Bram Moolenaarf868ba82020-07-21 21:07:20 +02001975 help.pro \
Bram Moolenaarf9cc9f22019-07-14 21:29:22 +02001976 highlight.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001977 if_cscope.pro \
Bram Moolenaard99df422016-01-29 23:20:40 +01001978 if_lua.pro \
Bram Moolenaar4349c572016-01-30 13:28:28 +01001979 if_mzsch.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001980 if_python.pro \
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02001981 if_python3.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001982 if_ruby.pro \
Bram Moolenaard99df422016-01-29 23:20:40 +01001983 if_xcmdsrv.pro \
Bram Moolenaar4b471622019-01-31 13:48:09 +01001984 indent.pro \
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001985 insexpand.pro \
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02001986 job.pro \
Bram Moolenaar520e1e42016-01-23 19:46:28 +01001987 json.pro \
Bram Moolenaarda861d62016-07-17 15:46:27 +02001988 list.pro \
Bram Moolenaar054f14b2020-07-22 19:11:19 +02001989 locale.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001990 main.pro \
Bram Moolenaarb66bab32019-08-01 14:28:24 +02001991 map.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001992 mark.pro \
Bram Moolenaar06cf97e2020-06-28 13:17:26 +02001993 match.pro \
Bram Moolenaar4349c572016-01-30 13:28:28 +01001994 mbyte.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00001995 memfile.pro \
1996 memline.pro \
1997 menu.pro \
1998 message.pro \
1999 misc1.pro \
2000 misc2.pro \
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002001 mouse.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002002 move.pro \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002003 netbeans.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002004 normal.pro \
2005 ops.pro \
2006 option.pro \
Bram Moolenaardac13472019-09-16 21:06:21 +02002007 optionstr.pro \
Bram Moolenaar3e96c3d2016-01-29 23:46:21 +01002008 os_mac_conv.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002009 os_unix.pro \
Bram Moolenaar30e8e732019-09-27 13:08:36 +02002010 popupmenu.pro \
Bram Moolenaar4d784b22019-05-25 19:51:39 +02002011 popupwin.pro \
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +02002012 profiler.pro \
Bram Moolenaard99df422016-01-29 23:20:40 +01002013 pty.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002014 quickfix.pro \
2015 regexp.pro \
Bram Moolenaar4aea03e2019-09-25 22:37:17 +02002016 register.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002017 screen.pro \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002018 scriptfile.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002019 search.pro \
Bram Moolenaar84538072019-07-28 14:15:42 +02002020 session.pro \
Bram Moolenaar40e6a712010-05-16 22:32:54 +02002021 sha256.pro \
Bram Moolenaarbbea4702019-01-01 13:20:31 +01002022 sign.pro \
Bram Moolenaar427f5b62019-06-09 13:43:51 +02002023 sound.pro \
Bram Moolenaar217ad922005-03-20 22:37:15 +00002024 spell.pro \
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002025 spellfile.pro \
Bram Moolenaar46a426c2019-09-27 12:41:56 +02002026 spellsuggest.pro \
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02002027 strings.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002028 syntax.pro \
2029 tag.pro \
2030 term.pro \
Bram Moolenaare4f25e42017-07-07 11:54:15 +02002031 terminal.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002032 termlib.pro \
Bram Moolenaarecaa70e2019-07-14 14:55:39 +02002033 testing.pro \
Bram Moolenaar11abd092020-05-01 14:26:37 +02002034 textformat.pro \
Bram Moolenaared8ce052020-04-29 21:04:15 +02002035 textobject.pro \
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002036 textprop.pro \
Bram Moolenaar0a8fed62020-02-14 13:22:17 +01002037 time.pro \
Bram Moolenaar367d59e2020-05-30 17:06:14 +02002038 typval.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002039 ui.pro \
2040 undo.pro \
Bram Moolenaarac9fb182019-04-27 13:04:13 +02002041 usercmd.pro \
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002042 userfunc.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002043 version.pro \
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002044 vim9cmds.pro \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002045 vim9compile.pro \
2046 vim9execute.pro \
Bram Moolenaardc7c3662021-12-20 15:04:29 +00002047 vim9expr.pro \
2048 vim9instr.pro \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002049 vim9script.pro \
Bram Moolenaara7cc9e62020-08-09 15:25:14 +02002050 vim9type.pro \
Bram Moolenaardefa0672019-07-21 19:25:37 +02002051 viminfo.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002052 window.pro \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002053 $(ALL_GUI_PRO) \
2054 $(TCL_PRO)
2055
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002056# Resources used for the Mac are in one directory.
2057RSRC_DIR = os_mac_rsrc
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002058
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002059PRO_MANUAL = os_amiga.pro os_win32.pro \
Bram Moolenaar041c7102020-05-30 18:14:57 +02002060 os_mswin.pro winclip.pro os_vms.pro $(PERL_PRO)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002061
2062# Default target is making the executable and tools
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00002063all: $(VIMTARGET) $(TOOLS) languages $(GUI_BUNDLE)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002064
2065tools: $(TOOLS)
2066
2067# Run configure with all the setting from above.
2068#
2069# Note: auto/config.h doesn't depend on configure, because running configure
2070# doesn't always update auto/config.h. The timestamp isn't changed if the
2071# file contents didn't change (to avoid recompiling everything). Including a
2072# dependency on auto/config.h would cause running configure each time when
2073# auto/config.h isn't updated. The dependency on auto/config.mk should make
2074# sure configure is run when it's needed.
2075#
Bram Moolenaar7b129a52014-05-22 14:54:26 +02002076# Remove the config.cache every time, once in a while it causes problems that
2077# are very hard to figure out.
2078#
Bram Moolenaare1d12892004-06-13 13:02:36 +00002079config auto/config.mk: auto/configure config.mk.in config.h.in
Bram Moolenaar7b129a52014-05-22 14:54:26 +02002080 -rm -f auto/config.cache
Bram Moolenaarb96c69d2014-04-29 20:04:09 +02002081 if test "X$(MAKECMDGOALS)" != "Xclean" \
2082 -a "X$(MAKECMDGOALS)" != "Xdistclean" \
2083 -a "X$(MAKECMDGOALS)" != "Xautoconf" \
2084 -a "X$(MAKECMDGOALS)" != "Xreconfig"; then \
Bram Moolenaar1a3eb8e2014-03-25 15:34:48 +01002085 GUI_INC_LOC="$(GUI_INC_LOC)" GUI_LIB_LOC="$(GUI_LIB_LOC)" \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002086 CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" \
2087 LDFLAGS="$(LDFLAGS)" $(CONF_SHELL) srcdir="$(srcdir)" \
2088 ./configure $(CONF_OPT_GUI) $(CONF_OPT_X) $(CONF_OPT_XSMP) \
Bram Moolenaare42a6d22017-11-12 19:21:51 +01002089 $(CONF_OPT_AUTOSERVE) $(CONF_OPT_DARWIN) $(CONF_OPT_FAIL) \
Bram Moolenaarf788a062011-12-14 20:51:25 +01002090 $(CONF_OPT_PERL) $(CONF_OPT_PYTHON) $(CONF_OPT_PYTHON3) \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002091 $(CONF_OPT_TCL) $(CONF_OPT_RUBY) $(CONF_OPT_NLS) \
2092 $(CONF_OPT_CSCOPE) $(CONF_OPT_MULTIBYTE) $(CONF_OPT_INPUT) \
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01002093 $(CONF_OPT_OUTPUT) $(CONF_OPT_GPM) \
Bram Moolenaar85b11762016-02-27 18:13:23 +01002094 $(CONF_OPT_FEAT) $(CONF_TERM_LIB) \
Bram Moolenaar0e7f88e2016-01-24 20:41:51 +01002095 $(CONF_OPT_COMPBY) $(CONF_OPT_ACL) $(CONF_OPT_NETBEANS) \
Bram Moolenaare4f25e42017-07-07 11:54:15 +02002096 $(CONF_OPT_CHANNEL) $(CONF_OPT_TERMINAL) \
Bram Moolenaar39b5d8b2018-12-22 17:27:15 +01002097 $(CONF_ARGS) $(CONF_ARGS1) $(CONF_ARGS2) $(CONF_ARGS3) \
2098 $(CONF_ARGS4) $(CONF_ARGS5) $(CONF_ARGS6) \
Bram Moolenaar3ac55c82018-12-22 14:59:03 +01002099 $(CONF_OPT_MZSCHEME) $(CONF_OPT_PLTHOME) \
Bram Moolenaar0ba04292010-07-14 23:23:17 +02002100 $(CONF_OPT_LUA) $(CONF_OPT_LUA_PREFIX) \
Bram Moolenaar75aa92a2021-10-14 16:27:19 +01002101 $(CONF_OPT_SYSMOUSE) $(CONF_OPT_CANBERRA) $(CONF_OPT_SODIUM); \
Bram Moolenaar1a3eb8e2014-03-25 15:34:48 +01002102 fi
Bram Moolenaare1d12892004-06-13 13:02:36 +00002103
2104# Use "make reconfig" to rerun configure without cached values.
2105# When config.h changes, most things will be recompiled automatically.
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002106# Invoke $(MAKE) to run config with the empty auto/config.mk.
2107# Invoke $(MAKE) to build all with the filled auto/config.mk.
2108reconfig: scratch clean
2109 $(MAKE) -f Makefile config
2110 $(MAKE) -f Makefile all
Bram Moolenaare1d12892004-06-13 13:02:36 +00002111
2112# Run autoconf to produce auto/configure.
2113# Note:
2114# - DO NOT RUN autoconf MANUALLY! It will overwrite ./configure instead of
2115# producing auto/configure.
2116# - autoconf is not run automatically, because a patch usually changes both
Bram Moolenaar3f7d0902016-11-12 21:13:42 +01002117# configure.ac and auto/configure but can't update the timestamps. People
Bram Moolenaare1d12892004-06-13 13:02:36 +00002118# who do not have (the correct version of) autoconf would run into trouble.
2119#
2120# Two tricks are required to make autoconf put its output in the "auto" dir:
2121# - Temporarily move the ./configure script to ./configure.save. Don't
2122# overwrite it, it's probably the result of an aborted autoconf.
2123# - Use sed to change ./config.log to auto/config.log in the configure script.
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002124# Autoconf 2.5x (2.59 at least) produces a few more files that we need to take
2125# care of:
2126# - configure.lineno: has the line numbers replaced with $LINENO. That
2127# improves patches a LOT, thus use it instead (until someone says it doesn't
2128# work on some system).
2129# - autom4te.cache directory is created and not cleaned up. Delete it.
2130# - Uses ">config.log" instead of "./config.log".
Bram Moolenaare1d12892004-06-13 13:02:36 +00002131autoconf:
2132 if test ! -f configure.save; then mv configure configure.save; fi
Bram Moolenaar7db77842014-03-27 17:40:59 +01002133 $(AUTOCONF)
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002134 sed -e 's+>config.log+>auto/config.log+' -e 's+\./config.log+auto/config.log+' configure > auto/configure
Bram Moolenaare1d12892004-06-13 13:02:36 +00002135 chmod 755 auto/configure
2136 mv -f configure.save configure
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002137 -rm -rf autom4te.cache
Bram Moolenaare1d12892004-06-13 13:02:36 +00002138 -rm -f auto/config.status auto/config.cache
2139
Bram Moolenaar6de5e122017-04-20 21:55:44 +02002140# Run vim script to generate the Ex command lookup table.
2141# This only needs to be run when a command name has been added or changed.
2142# If this fails because you don't have Vim yet, first build and install Vim
2143# without changes.
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01002144cmdidxs: ex_cmds.h
Bram Moolenaar9b24dfc2020-01-12 15:46:08 +01002145 vim --clean -X --not-a-term -u create_cmdidxs.vim
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01002146
Yegappan Lakshmanan4dc0dd82022-01-29 13:06:40 +00002147# Run vim script to generate the normal/visual mode command lookup table.
2148# This only needs to be run when a new normal/visual mode command has been
2149# added. If this fails because you don't have Vim yet:
2150# - change nv_cmds[] in normal.c to add the new normal/visual mode command.
2151# - build Vim
2152# - run "make nvcmdidxs" using the new Vim to generate nv_cmdidxs.h
2153# - rebuild Vim to use the newly generated nv_cmdidxs.h file.
2154nvcmdidxs: normal.c
2155 ./$(VIMTARGET) --clean -X --not-a-term -u create_nvcmdidxs.vim
2156
Bram Moolenaare1d12892004-06-13 13:02:36 +00002157
2158# The normal command to compile a .c file to its .o file.
Bram Moolenaar6e78e272017-01-17 19:20:15 +01002159# Without or with ALL_CFLAGS.
2160CCC_NF = $(CC) -c -I$(srcdir)
2161CCC = $(CCC_NF) $(ALL_CFLAGS)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002162
2163
2164# Link the target for normal use or debugging.
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002165# A shell script is used to try linking without unnecessary libraries.
Bram Moolenaare1d12892004-06-13 13:02:36 +00002166$(VIMTARGET): auto/config.mk objects $(OBJ) version.c version.h
2167 $(CCC) version.c -o objects/version.o
Bram Moolenaar8f1dde52020-06-05 23:16:29 +02002168 @$(BUILD_DATE_MSG)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002169 @LINK="$(PURIFY) $(SHRPENV) $(CClink) $(ALL_LIB_DIRS) $(LDFLAGS) \
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01002170 -o $(VIMTARGET) $(OBJ) $(ALL_LIBS)" \
Bram Moolenaar22e193d2010-11-03 22:32:24 +01002171 MAKE="$(MAKE)" LINK_AS_NEEDED=$(LINK_AS_NEEDED) \
2172 sh $(srcdir)/link.sh
Bram Moolenaare1d12892004-06-13 13:02:36 +00002173
2174xxd/xxd$(EXEEXT): xxd/xxd.c
Bram Moolenaarda5a4972012-03-28 17:17:48 +02002175 cd xxd; CC="$(CC)" CFLAGS="$(CPPFLAGS) $(CFLAGS)" LDFLAGS="$(LDFLAGS)" \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002176 $(MAKE) -f Makefile
2177
2178# Build the language specific files if they were unpacked.
2179# Generate the converted .mo files separately, it's no problem if this fails.
2180languages:
2181 @if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
Bram Moolenaar58d98232005-07-23 22:25:46 +00002182 cd $(PODIR); \
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002183 CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix); \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002184 fi
2185 -@if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002186 cd $(PODIR); \
2187 CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix) converted; \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002188 fi
2189
2190# Update the *.po files for changes in the sources. Only run manually.
2191update-po:
2192 cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix) update-po
2193
2194# Generate function prototypes. This is not needed to compile vim, but if
2195# you want to use it, cproto is out there on the net somewhere -- Webb
2196#
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002197# When generating os_amiga.pro and os_win32.pro there will be a
Bram Moolenaare1d12892004-06-13 13:02:36 +00002198# few include files that can not be found, that's OK.
2199
2200proto: $(PRO_AUTO) $(PRO_MANUAL)
2201
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002202# Filter out arguments that cproto doesn't support.
Bram Moolenaarb1031382014-11-12 15:45:21 +01002203# Don't pass "-pthread", "-fwrapv" and similar arguments to cproto, it sees
2204# them as a list of individual flags.
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002205# The -E"gcc -E" argument must be separate to avoid problems with shell
2206# quoting.
Bram Moolenaarde2bd372018-09-21 13:56:25 +02002207# Strip -O2, it may cause cproto to write stderr to the file "2".
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002208CPROTO = cproto $(PROTO_FLAGS) -DPROTO \
Bram Moolenaarde2bd372018-09-21 13:56:25 +02002209 `echo '$(LINT_CFLAGS)' | sed -e 's/ -[a-z-]\+//g' -e 's/ -O[^ ]\+//g'`
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002210
Bram Moolenaare1d12892004-06-13 13:02:36 +00002211### Would be nice if this would work for "normal" make.
2212### Currently it only works for (Free)BSD make.
2213#$(PRO_AUTO): $$(*F).c
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002214# $(CPROTO) -DFEAT_GUI $(*F).c > $@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002215
2216# Always define FEAT_GUI. This may generate a few warnings if it's also
2217# defined in auto/config.h, you can ignore that.
2218.c.pro:
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002219 $(CPROTO) -DFEAT_GUI $< > proto/$@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002220 echo "/* vim: set ft=c : */" >> proto/$@
2221
2222os_amiga.pro: os_amiga.c
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002223 $(CPROTO) -DAMIGA -UHAVE_CONFIG_H -DBPTR=char* $< > proto/$@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002224 echo "/* vim: set ft=c : */" >> proto/$@
2225
Bram Moolenaare1d12892004-06-13 13:02:36 +00002226os_win32.pro: os_win32.c
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002227 $(CPROTO) -DWIN32 -UHAVE_CONFIG_H $< > proto/$@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002228 echo "/* vim: set ft=c : */" >> proto/$@
2229
2230os_mswin.pro: os_mswin.c
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002231 $(CPROTO) -DWIN32 -UHAVE_CONFIG_H $< > proto/$@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002232 echo "/* vim: set ft=c : */" >> proto/$@
2233
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002234winclip.pro: winclip.c
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01002235 $(CPROTO) -DWIN32 -UHAVE_CONFIG_H $< > proto/$@
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002236 echo "/* vim: set ft=c : */" >> proto/$@
2237
Bram Moolenaare1d12892004-06-13 13:02:36 +00002238os_vms.pro: os_vms.c
2239# must use os_vms_conf.h for auto/config.h
2240 mv auto/config.h auto/config.h.save
2241 cp os_vms_conf.h auto/config.h
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002242 $(CPROTO) -DVMS -UFEAT_GUI_ATHENA -UFEAT_GUI_NEXTAW -UFEAT_GUI_MOTIF -UFEAT_GUI_GTK $< > proto/$@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002243 echo "/* vim: set ft=c : */" >> proto/$@
2244 rm auto/config.h
2245 mv auto/config.h.save auto/config.h
2246
2247# if_perl.pro is special: Use the generated if_perl.c for input and remove
2248# prototypes for local functions.
2249if_perl.pro: auto/if_perl.c
Bram Moolenaar69f787a2010-07-11 20:52:58 +02002250 $(CPROTO) -DFEAT_GUI auto/if_perl.c | sed "/_VI/d" > proto/$@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002251
Bram Moolenaar36e294c2015-12-29 18:55:46 +01002252gui_gtk_gresources.pro: auto/gui_gtk_gresources.c
2253 $(CPROTO) -DFEAT_GUI $< > proto/$@
2254 echo "/* vim: set ft=c : */" >> proto/$@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002255
2256notags:
2257 -rm -f tags
2258
2259# Note: tags is made for the currently configured version, can't include both
2260# Motif and Athena GUI
2261# You can ignore error messages for missing files.
2262tags TAGS: notags
Bram Moolenaar6dc67032018-12-19 21:05:57 +01002263 $(TAGPRG) $(TAGS_FILES)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002264
2265# Make a highlight file for types. Requires Exuberant ctags and awk
2266types: types.vim
Bram Moolenaar6dc67032018-12-19 21:05:57 +01002267types.vim: $(TAGS_FILES)
2268 ctags --c-kinds=gstu -o- $(TAGS_FILES) |\
Bram Moolenaare1d12892004-06-13 13:02:36 +00002269 awk 'BEGIN{printf("syntax keyword Type\t")}\
2270 {printf("%s ", $$1)}END{print ""}' > $@
Bram Moolenaar56ead342016-02-02 18:20:08 +01002271 echo "syn keyword Constant OK FAIL TRUE FALSE MAYBE" >> $@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002272
Bram Moolenaarc3e539f2016-07-16 20:37:56 +02002273# TESTING
2274#
2275# Execute the test scripts and the unittests.
Bram Moolenaar9c0cec62019-06-06 13:38:15 +02002276# Do the scripttests first, so that the summary shows last.
Bram Moolenaar823edd12019-10-23 22:35:36 +02002277test check: unittests $(TERM_TEST) scripttests
Bram Moolenaarc3e539f2016-07-16 20:37:56 +02002278
Bram Moolenaare1d12892004-06-13 13:02:36 +00002279# Execute the test scripts. Run these after compiling Vim, before installing.
2280# This doesn't depend on $(VIMTARGET), because that won't work when configure
2281# wasn't run yet. Restart make to build it instead.
2282#
2283# This will produce a lot of garbage on your screen, including a few error
2284# messages. Don't worry about that.
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +00002285# If everything is alright, the final message will be "ALL DONE". If not you
2286# get "TEST FAILURE".
Bram Moolenaare1d12892004-06-13 13:02:36 +00002287#
Bram Moolenaarc3e539f2016-07-16 20:37:56 +02002288scripttests:
Bram Moolenaare1d12892004-06-13 13:02:36 +00002289 $(MAKE) -f Makefile $(VIMTARGET)
Bram Moolenaar4ca8d5f2013-07-09 14:58:10 +02002290 if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
Bram Moolenaar316059c2006-01-14 21:18:42 +00002291 cd $(PODIR); $(MAKE) -f Makefile check VIM=../$(VIMTARGET); \
2292 fi
Bram Moolenaarc236c162008-07-13 17:41:49 +00002293 -if test $(VIMTARGET) != vim -a ! -r vim; then \
Bram Moolenaar5a305422006-04-28 22:38:25 +00002294 ln -s $(VIMTARGET) vim; \
2295 fi
Bram Moolenaarefa304d2014-04-01 14:08:28 +02002296 cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
Bram Moolenaarc3e539f2016-07-16 20:37:56 +02002297
Bram Moolenaaraf6c12c2016-05-28 13:40:10 +02002298# Run the tests with the GUI. Assumes vim/gvim was already built
2299testgui:
2300 cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) GUI_FLAG=-g $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2301
Bram Moolenaarb96a32e2020-08-13 18:59:55 +02002302testtiny:
2303 cd testdir; $(MAKE) -f Makefile tiny VIMPROG=../$(VIMTARGET) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2304
Bram Moolenaarfda37292014-11-05 14:27:36 +01002305benchmark:
2306 cd testdir; $(MAKE) -f Makefile benchmark VIMPROG=../$(VIMTARGET) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2307
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01002308unittesttargets:
2309 $(MAKE) -f Makefile $(UNITTEST_TARGETS)
2310
Bram Moolenaar8dd17612018-04-10 19:24:04 +02002311# Swap these lines to run individual tests with gvim instead of vim.
2312VIMTESTTARGET = $(VIMTARGET)
2313# VIMTESTTARGET = $(GVIMTARGET)
2314
Bram Moolenaarc3e539f2016-07-16 20:37:56 +02002315# Execute the unittests one by one.
Bram Moolenaarb9644432016-07-19 12:33:44 +02002316unittest unittests: $(RUN_UNITTESTS)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002317
Bram Moolenaar56ead342016-02-02 18:20:08 +01002318run_json_test: $(JSON_TEST_TARGET)
Bram Moolenaarb9644432016-07-19 12:33:44 +02002319 $(VALGRIND) ./$(JSON_TEST_TARGET) || exit 1; echo $* passed;
Bram Moolenaar56ead342016-02-02 18:20:08 +01002320
Bram Moolenaar4019cf92017-01-28 16:39:34 +01002321run_kword_test: $(KWORD_TEST_TARGET)
2322 $(VALGRIND) ./$(KWORD_TEST_TARGET) || exit 1; echo $* passed;
2323
Bram Moolenaar56ead342016-02-02 18:20:08 +01002324run_memfile_test: $(MEMFILE_TEST_TARGET)
Bram Moolenaarb9644432016-07-19 12:33:44 +02002325 $(VALGRIND) ./$(MEMFILE_TEST_TARGET) || exit 1; echo $* passed;
Bram Moolenaar56ead342016-02-02 18:20:08 +01002326
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02002327run_message_test: $(MESSAGE_TEST_TARGET)
Bram Moolenaarb9644432016-07-19 12:33:44 +02002328 $(VALGRIND) ./$(MESSAGE_TEST_TARGET) || exit 1; echo $* passed;
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02002329
Bram Moolenaar471f6582018-12-15 14:24:39 +01002330# Run the libvterm tests.
Bram Moolenaar476268c2020-12-03 21:24:07 +01002331# This works only on GNU make, not on BSD make.
Bram Moolenaar76ab5442021-01-30 20:35:28 +01002332# Libtool requires "gcc".
Bram Moolenaar471f6582018-12-15 14:24:39 +01002333test_libvterm:
Bram Moolenaar476268c2020-12-03 21:24:07 +01002334 @if $(MAKE) --version 2>/dev/null | grep -qs "GNU Make"; then \
Bram Moolenaar76ab5442021-01-30 20:35:28 +01002335 if test -x "/usr/bin/gcc"; then \
2336 cd libvterm; $(MAKE) -f Makefile test CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"; \
2337 fi \
Bram Moolenaar8b321d62018-12-15 15:39:28 +01002338 fi
Bram Moolenaar471f6582018-12-15 14:24:39 +01002339
Bram Moolenaarb96a32e2020-08-13 18:59:55 +02002340# Run individual OLD style test.
2341# These do not depend on the executable, compile it when needed.
2342$(SCRIPTS_TINY):
Bram Moolenaar8dd17612018-04-10 19:24:04 +02002343 cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
Bram Moolenaar3f12a242015-12-05 20:56:57 +01002344
Bram Moolenaar53f0c962017-10-22 14:23:59 +02002345# Run individual NEW style test.
2346# These do not depend on the executable, compile it when needed.
Bram Moolenaara7f6c3c2019-09-27 15:34:16 +02002347# Set $TEST_FILTER to select what test function to invoke, e.g.:
2348# export TEST_FILTER=Test_terminal_wipe_buffer
2349# A partial match also works:
2350# export TEST_FILTER=wipe_buffer
Bram Moolenaarec5929d2020-04-07 20:53:39 +02002351$(NEW_TESTS) test_vim9:
Bram Moolenaarec504012019-01-11 17:30:16 +01002352 cd testdir; $(MAKE) $@ VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
Bram Moolenaar3f12a242015-12-05 20:56:57 +01002353
2354newtests:
Bram Moolenaar8dd17612018-04-10 19:24:04 +02002355 cd testdir; rm -f $@.res test.log messages; $(MAKE) -f Makefile newtestssilent VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
Bram Moolenaarc0662462015-12-30 15:49:05 +01002356 @if test -f testdir/test.log; then \
2357 cat testdir/test.log; \
2358 fi
Bram Moolenaar096c8bb2015-12-29 14:26:57 +01002359 cat testdir/messages
Bram Moolenaard2470e92013-05-21 13:30:21 +02002360
Bram Moolenaare1d12892004-06-13 13:02:36 +00002361testclean:
2362 cd testdir; $(MAKE) -f Makefile clean
Bram Moolenaar316059c2006-01-14 21:18:42 +00002363 if test -d $(PODIR); then \
2364 cd $(PODIR); $(MAKE) checkclean; \
2365 fi
Bram Moolenaare1d12892004-06-13 13:02:36 +00002366
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01002367# Unittests
2368# It's build just like Vim to satisfy all dependencies.
Bram Moolenaar56ead342016-02-02 18:20:08 +01002369$(JSON_TEST_TARGET): auto/config.mk objects $(JSON_TEST_OBJ)
2370 $(CCC) version.c -o objects/version.o
2371 @LINK="$(PURIFY) $(SHRPENV) $(CClink) $(ALL_LIB_DIRS) $(LDFLAGS) \
2372 -o $(JSON_TEST_TARGET) $(JSON_TEST_OBJ) $(ALL_LIBS)" \
2373 MAKE="$(MAKE)" LINK_AS_NEEDED=$(LINK_AS_NEEDED) \
2374 sh $(srcdir)/link.sh
2375
Bram Moolenaar4019cf92017-01-28 16:39:34 +01002376$(KWORD_TEST_TARGET): auto/config.mk objects $(KWORD_TEST_OBJ)
2377 $(CCC) version.c -o objects/version.o
2378 @LINK="$(PURIFY) $(SHRPENV) $(CClink) $(ALL_LIB_DIRS) $(LDFLAGS) \
2379 -o $(KWORD_TEST_TARGET) $(KWORD_TEST_OBJ) $(ALL_LIBS)" \
2380 MAKE="$(MAKE)" LINK_AS_NEEDED=$(LINK_AS_NEEDED) \
2381 sh $(srcdir)/link.sh
2382
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01002383$(MEMFILE_TEST_TARGET): auto/config.mk objects $(MEMFILE_TEST_OBJ)
2384 $(CCC) version.c -o objects/version.o
2385 @LINK="$(PURIFY) $(SHRPENV) $(CClink) $(ALL_LIB_DIRS) $(LDFLAGS) \
2386 -o $(MEMFILE_TEST_TARGET) $(MEMFILE_TEST_OBJ) $(ALL_LIBS)" \
2387 MAKE="$(MAKE)" LINK_AS_NEEDED=$(LINK_AS_NEEDED) \
2388 sh $(srcdir)/link.sh
2389
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02002390$(MESSAGE_TEST_TARGET): auto/config.mk objects $(MESSAGE_TEST_OBJ)
2391 $(CCC) version.c -o objects/version.o
2392 @LINK="$(PURIFY) $(SHRPENV) $(CClink) $(ALL_LIB_DIRS) $(LDFLAGS) \
2393 -o $(MESSAGE_TEST_TARGET) $(MESSAGE_TEST_OBJ) $(ALL_LIBS)" \
2394 MAKE="$(MAKE)" LINK_AS_NEEDED=$(LINK_AS_NEEDED) \
2395 sh $(srcdir)/link.sh
2396
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01002397# install targets
2398
Bram Moolenaarb64bb6e2008-06-20 19:29:35 +00002399install: $(GUI_INSTALL)
2400
2401install_normal: installvim installtools $(INSTALL_LANGS) install-icons
2402
2403install_gui_extra: installgtutorbin
2404
2405installvim: installvimbin installtutorbin \
2406 installruntime installlinks installmanlinks
2407
Bram Moolenaare1d12892004-06-13 13:02:36 +00002408#
2409# Avoid overwriting an existing executable, somebody might be running it and
2410# overwriting it could cause it to crash. Deleting it is OK, it won't be
2411# really deleted until all running processes for it have exited. It is
2412# renamed first, in case the deleting doesn't work.
2413#
2414# If you want to keep an older version, rename it before running "make
2415# install".
2416#
Bram Moolenaare1d12892004-06-13 13:02:36 +00002417installvimbin: $(VIMTARGET) $(DESTDIR)$(exec_prefix) $(DEST_BIN)
2418 -if test -f $(DEST_BIN)/$(VIMTARGET); then \
2419 mv -f $(DEST_BIN)/$(VIMTARGET) $(DEST_BIN)/$(VIMNAME).rm; \
2420 rm -f $(DEST_BIN)/$(VIMNAME).rm; \
2421 fi
2422 $(INSTALL_PROG) $(VIMTARGET) $(DEST_BIN)
2423 $(STRIP) $(DEST_BIN)/$(VIMTARGET)
2424 chmod $(BINMOD) $(DEST_BIN)/$(VIMTARGET)
2425# may create a link to the new executable from /usr/bin/vi
2426 -$(LINKIT)
2427
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002428# Long list of arguments for the shell script that installs the manual pages
2429# for one language.
2430INSTALLMANARGS = $(VIMLOC) $(SCRIPTLOC) $(VIMRCLOC) $(HELPSOURCE) $(MANMOD) \
2431 $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME)
2432
Bram Moolenaare344bea2005-09-01 20:46:49 +00002433# Install most of the runtime files
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +01002434installruntime: installrtbase installmacros installpack installtutor installspell
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002435
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002436# install the help files; first adjust the contents for the final location
Bram Moolenaare344bea2005-09-01 20:46:49 +00002437installrtbase: $(HELPSOURCE)/vim.1 $(DEST_VIM) $(DEST_RT) \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002438 $(DEST_HELP) $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) \
Bram Moolenaard09a2062017-11-11 15:37:45 +01002439 $(DEST_FTP) $(DEST_AUTO) $(DEST_AUTO)/dist $(DEST_AUTO)/xml \
2440 $(DEST_PLUG) $(DEST_TUTOR) $(DEST_SPELL) $(DEST_COMP)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002441 -$(SHELL) ./installman.sh install $(DEST_MAN) "" $(INSTALLMANARGS)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002442# Generate the help tags with ":helptags" to handle all languages.
Bram Moolenaara3442cb2016-03-13 14:34:12 +01002443# Move the distributed tags file aside and restore it, to avoid it being
2444# different from the repository.
Bram Moolenaar839e9542016-04-14 16:46:02 +02002445 cd $(HELPSOURCE); if test -z "$(CROSS_COMPILING)" -a -f tags; then \
2446 mv -f tags tags.dist; fi
Bram Moolenaarb763eba2016-03-21 22:40:03 +01002447 @echo generating help tags
Bram Moolenaar839e9542016-04-14 16:46:02 +02002448 -@cd $(HELPSOURCE); if test -z "$(CROSS_COMPILING)"; then \
2449 $(MAKE) VIMEXE=$(DEST_BIN)/$(VIMTARGET) vimtags; fi
Bram Moolenaare1d12892004-06-13 13:02:36 +00002450 cd $(HELPSOURCE); \
2451 files=`ls *.txt tags`; \
2452 files="$$files `ls *.??x tags-?? 2>/dev/null || true`"; \
2453 $(INSTALL_DATA) $$files $(DEST_HELP); \
2454 cd $(DEST_HELP); \
2455 chmod $(HELPMOD) $$files
2456 $(INSTALL_DATA) $(HELPSOURCE)/*.pl $(DEST_HELP)
2457 chmod $(SCRIPTMOD) $(DEST_HELP)/*.pl
Bram Moolenaarb763eba2016-03-21 22:40:03 +01002458 cd $(HELPSOURCE); if test -f tags.dist; then mv -f tags.dist tags; fi
Bram Moolenaare1d12892004-06-13 13:02:36 +00002459# install the menu files
2460 $(INSTALL_DATA) $(SCRIPTSOURCE)/menu.vim $(SYS_MENU_FILE)
2461 chmod $(VIMSCRIPTMOD) $(SYS_MENU_FILE)
2462 $(INSTALL_DATA) $(SCRIPTSOURCE)/synmenu.vim $(SYS_SYNMENU_FILE)
2463 chmod $(VIMSCRIPTMOD) $(SYS_SYNMENU_FILE)
2464 $(INSTALL_DATA) $(SCRIPTSOURCE)/delmenu.vim $(SYS_DELMENU_FILE)
2465 chmod $(VIMSCRIPTMOD) $(SYS_DELMENU_FILE)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02002466# install the defaults/evim/mswin file
2467 $(INSTALL_DATA) $(SCRIPTSOURCE)/defaults.vim $(VIM_DEFAULTS_FILE)
2468 chmod $(VIMSCRIPTMOD) $(VIM_DEFAULTS_FILE)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002469 $(INSTALL_DATA) $(SCRIPTSOURCE)/evim.vim $(EVIM_FILE)
2470 chmod $(VIMSCRIPTMOD) $(EVIM_FILE)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02002471 $(INSTALL_DATA) $(SCRIPTSOURCE)/mswin.vim $(MSWIN_FILE)
2472 chmod $(VIMSCRIPTMOD) $(MSWIN_FILE)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002473# install the bugreport file
2474 $(INSTALL_DATA) $(SCRIPTSOURCE)/bugreport.vim $(SYS_BUGR_FILE)
2475 chmod $(VIMSCRIPTMOD) $(SYS_BUGR_FILE)
2476# install the example vimrc files
2477 $(INSTALL_DATA) $(SCRIPTSOURCE)/vimrc_example.vim $(DEST_SCRIPT)
2478 chmod $(VIMSCRIPTMOD) $(DEST_SCRIPT)/vimrc_example.vim
2479 $(INSTALL_DATA) $(SCRIPTSOURCE)/gvimrc_example.vim $(DEST_SCRIPT)
2480 chmod $(VIMSCRIPTMOD) $(DEST_SCRIPT)/gvimrc_example.vim
2481# install the file type detection files
2482 $(INSTALL_DATA) $(SCRIPTSOURCE)/filetype.vim $(SYS_FILETYPE_FILE)
2483 chmod $(VIMSCRIPTMOD) $(SYS_FILETYPE_FILE)
2484 $(INSTALL_DATA) $(SCRIPTSOURCE)/ftoff.vim $(SYS_FTOFF_FILE)
2485 chmod $(VIMSCRIPTMOD) $(SYS_FTOFF_FILE)
2486 $(INSTALL_DATA) $(SCRIPTSOURCE)/scripts.vim $(SYS_SCRIPTS_FILE)
2487 chmod $(VIMSCRIPTMOD) $(SYS_SCRIPTS_FILE)
2488 $(INSTALL_DATA) $(SCRIPTSOURCE)/ftplugin.vim $(SYS_FTPLUGIN_FILE)
2489 chmod $(VIMSCRIPTMOD) $(SYS_FTPLUGIN_FILE)
2490 $(INSTALL_DATA) $(SCRIPTSOURCE)/ftplugof.vim $(SYS_FTPLUGOF_FILE)
2491 chmod $(VIMSCRIPTMOD) $(SYS_FTPLUGOF_FILE)
2492 $(INSTALL_DATA) $(SCRIPTSOURCE)/indent.vim $(SYS_INDENT_FILE)
2493 chmod $(VIMSCRIPTMOD) $(SYS_INDENT_FILE)
2494 $(INSTALL_DATA) $(SCRIPTSOURCE)/indoff.vim $(SYS_INDOFF_FILE)
2495 chmod $(VIMSCRIPTMOD) $(SYS_INDOFF_FILE)
2496 $(INSTALL_DATA) $(SCRIPTSOURCE)/optwin.vim $(SYS_OPTWIN_FILE)
2497 chmod $(VIMSCRIPTMOD) $(SYS_OPTWIN_FILE)
2498# install the print resource files
2499 cd $(PRINTSOURCE); $(INSTALL_DATA) *.ps $(DEST_PRINT)
2500 cd $(DEST_PRINT); chmod $(FILEMOD) *.ps
2501# install the colorscheme files
Drew Vogele30d1022021-10-24 20:35:07 +01002502 cd $(COLSOURCE); $(INSTALL_DATA_R) *.vim lists tools README.txt $(DEST_COL)
Bram Moolenaardddab902018-05-02 22:00:17 +02002503 cd $(DEST_COL); chmod $(DIRMOD) tools
2504 cd $(DEST_COL); chmod $(HELPMOD) *.vim README.txt tools/*.vim
Bram Moolenaare1d12892004-06-13 13:02:36 +00002505# install the syntax files
2506 cd $(SYNSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_SYN)
2507 cd $(DEST_SYN); chmod $(HELPMOD) *.vim README.txt
2508# install the indent files
2509 cd $(INDSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_IND)
2510 cd $(DEST_IND); chmod $(HELPMOD) *.vim README.txt
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00002511# install the standard autoload files
2512 cd $(AUTOSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_AUTO)
2513 cd $(DEST_AUTO); chmod $(HELPMOD) *.vim README.txt
Bram Moolenaard09a2062017-11-11 15:37:45 +01002514 cd $(AUTOSOURCE)/dist; $(INSTALL_DATA) *.vim $(DEST_AUTO)/dist
2515 cd $(DEST_AUTO)/dist; chmod $(HELPMOD) *.vim
Bram Moolenaar18144c82006-04-12 21:52:12 +00002516 cd $(AUTOSOURCE)/xml; $(INSTALL_DATA) *.vim $(DEST_AUTO)/xml
2517 cd $(DEST_AUTO)/xml; chmod $(HELPMOD) *.vim
Bram Moolenaare1d12892004-06-13 13:02:36 +00002518# install the standard plugin files
2519 cd $(PLUGSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_PLUG)
2520 cd $(DEST_PLUG); chmod $(HELPMOD) *.vim README.txt
2521# install the ftplugin files
Bram Moolenaar0387e652010-05-07 16:54:37 +02002522 cd $(FTPLUGSOURCE); $(INSTALL_DATA) *.vim README.txt logtalk.dict $(DEST_FTP)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002523 cd $(DEST_FTP); chmod $(HELPMOD) *.vim README.txt
2524# install the compiler files
2525 cd $(COMPSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_COMP)
2526 cd $(DEST_COMP); chmod $(HELPMOD) *.vim README.txt
2527
Bram Moolenaar582fd852005-03-28 20:58:01 +00002528installmacros: $(DEST_VIM) $(DEST_RT) $(DEST_MACRO)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002529 $(INSTALL_DATA_R) $(MACROSOURCE)/* $(DEST_MACRO)
2530 chmod $(DIRMOD) `find $(DEST_MACRO) -type d -print`
2531 chmod $(FILEMOD) `find $(DEST_MACRO) -type f -print`
2532 chmod $(SCRIPTMOD) $(DEST_MACRO)/less.sh
2533# When using CVS some CVS directories might have been copied.
Bram Moolenaara9d0cba2010-08-04 22:44:27 +02002534# Also delete AAPDIR and *.info files.
2535 cvs=`find $(DEST_MACRO) \( -name CVS -o -name AAPDIR -o -name "*.info" \) -print`; \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002536 if test -n "$$cvs"; then \
2537 rm -rf $$cvs; \
2538 fi
2539
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +01002540installpack: $(DEST_VIM) $(DEST_RT) $(DEST_PACK)
2541 $(INSTALL_DATA_R) $(PACKSOURCE)/* $(DEST_PACK)
2542 chmod $(DIRMOD) `find $(DEST_PACK) -type d -print`
2543 chmod $(FILEMOD) `find $(DEST_PACK) -type f -print`
2544
Bram Moolenaare1d12892004-06-13 13:02:36 +00002545# install the tutor files
Bram Moolenaare344bea2005-09-01 20:46:49 +00002546installtutorbin: $(DEST_VIM)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002547 $(INSTALL_DATA) vimtutor $(DEST_BIN)/$(VIMNAME)tutor
2548 chmod $(SCRIPTMOD) $(DEST_BIN)/$(VIMNAME)tutor
Bram Moolenaarb64bb6e2008-06-20 19:29:35 +00002549
2550installgtutorbin: $(DEST_VIM)
Bram Moolenaar2b570782008-05-07 15:40:33 +00002551 $(INSTALL_DATA) gvimtutor $(DEST_BIN)/$(GVIMNAME)tutor
2552 chmod $(SCRIPTMOD) $(DEST_BIN)/$(GVIMNAME)tutor
Bram Moolenaare344bea2005-09-01 20:46:49 +00002553
2554installtutor: $(DEST_RT) $(DEST_TUTOR)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002555 -$(INSTALL_DATA) $(TUTORSOURCE)/README* $(TUTORSOURCE)/tutor* $(DEST_TUTOR)
Bram Moolenaara9d0cba2010-08-04 22:44:27 +02002556 -rm -f $(DEST_TUTOR)/*.info
Bram Moolenaare1d12892004-06-13 13:02:36 +00002557 chmod $(HELPMOD) $(DEST_TUTOR)/*
2558
Bram Moolenaarcee55602005-08-21 22:12:59 +00002559# Install the spell files, if they exist. This assumes at least the English
2560# spell file is there.
Bram Moolenaar582fd852005-03-28 20:58:01 +00002561installspell: $(DEST_VIM) $(DEST_RT) $(DEST_SPELL)
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +00002562 if test -f $(SPELLSOURCE)/en.latin1.spl; then \
Bram Moolenaardb552d602006-03-23 22:59:57 +00002563 $(INSTALL_DATA) $(SPELLSOURCE)/*.spl $(SPELLSOURCE)/*.sug $(SPELLSOURCE)/*.vim $(DEST_SPELL); \
2564 chmod $(HELPMOD) $(DEST_SPELL)/*.spl $(DEST_SPELL)/*.sug $(DEST_SPELL)/*.vim; \
Bram Moolenaar217ad922005-03-20 22:37:15 +00002565 fi
2566
Bram Moolenaare1d12892004-06-13 13:02:36 +00002567# install helper program xxd
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002568installtools: $(TOOLS) $(DESTDIR)$(exec_prefix) $(DEST_BIN) \
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00002569 $(TOOLSSOURCE) $(DEST_VIM) $(DEST_RT) $(DEST_TOOLS) \
2570 $(INSTALL_TOOL_LANGS)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002571 if test -f $(DEST_BIN)/xxd$(EXEEXT); then \
2572 mv -f $(DEST_BIN)/xxd$(EXEEXT) $(DEST_BIN)/xxd.rm; \
2573 rm -f $(DEST_BIN)/xxd.rm; \
2574 fi
2575 $(INSTALL_PROG) xxd/xxd$(EXEEXT) $(DEST_BIN)
2576 $(STRIP) $(DEST_BIN)/xxd$(EXEEXT)
2577 chmod $(BINMOD) $(DEST_BIN)/xxd$(EXEEXT)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002578 -$(SHELL) ./installman.sh xxd $(DEST_MAN) "" $(INSTALLMANARGS)
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00002579
Bram Moolenaare1d12892004-06-13 13:02:36 +00002580# install the runtime tools
2581 $(INSTALL_DATA_R) $(TOOLSSOURCE)/* $(DEST_TOOLS)
2582# When using CVS some CVS directories might have been copied.
2583 cvs=`find $(DEST_TOOLS) \( -name CVS -o -name AAPDIR \) -print`; \
2584 if test -n "$$cvs"; then \
2585 rm -rf $$cvs; \
2586 fi
2587 -chmod $(FILEMOD) $(DEST_TOOLS)/*
2588# replace the path in some tools
2589 perlpath=`./which.sh perl` && sed -e "s+/usr/bin/perl+$$perlpath+" $(TOOLSSOURCE)/efm_perl.pl >$(DEST_TOOLS)/efm_perl.pl
2590 awkpath=`./which.sh nawk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; if test -z "$$awkpath"; then \
2591 awkpath=`./which.sh gawk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; if test -z "$$awkpath"; then \
2592 awkpath=`./which.sh awk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; fi; fi
2593 -chmod $(SCRIPTMOD) `grep -l "^#!" $(DEST_TOOLS)/*`
2594
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00002595# install the language specific files for tools, if they were unpacked
2596install-tool-languages:
Bram Moolenaar08505312018-07-07 22:26:54 +02002597 -$(SHELL) ./installman.sh xxd $(DEST_MAN_DA) "-da" $(INSTALLMANARGS)
2598 -$(SHELL) ./installman.sh xxd $(DEST_MAN_DA_I) "-da" $(INSTALLMANARGS)
2599 -$(SHELL) ./installman.sh xxd $(DEST_MAN_DA_U) "-da.UTF-8" $(INSTALLMANARGS)
2600 -$(SHELL) ./installman.sh xxd $(DEST_MAN_DE) "-de" $(INSTALLMANARGS)
2601 -$(SHELL) ./installman.sh xxd $(DEST_MAN_DE_I) "-de" $(INSTALLMANARGS)
2602 -$(SHELL) ./installman.sh xxd $(DEST_MAN_DE_U) "-de.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00002603 -$(SHELL) ./installman.sh xxd $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
2604 -$(SHELL) ./installman.sh xxd $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
2605 -$(SHELL) ./installman.sh xxd $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
2606 -$(SHELL) ./installman.sh xxd $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
2607 -$(SHELL) ./installman.sh xxd $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
2608 -$(SHELL) ./installman.sh xxd $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaara3fe8fe2013-07-13 15:33:20 +02002609 -$(SHELL) ./installman.sh xxd $(DEST_MAN_JA_U) "-ja.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002610 -$(SHELL) ./installman.sh xxd $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002611 -$(SHELL) ./installman.sh xxd $(DEST_MAN_PL_I) "-pl" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002612 -$(SHELL) ./installman.sh xxd $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00002613 -$(SHELL) ./installman.sh xxd $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
2614 -$(SHELL) ./installman.sh xxd $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
Bram Moolenaarf09715b2020-05-31 14:25:22 +02002615 -$(SHELL) ./installman.sh xxd $(DEST_MAN_TR) "-tr" $(INSTALLMANARGS)
2616 -$(SHELL) ./installman.sh xxd $(DEST_MAN_TR_I) "-tr" $(INSTALLMANARGS)
2617 -$(SHELL) ./installman.sh xxd $(DEST_MAN_TR_U) "-tr.UTF-8" $(INSTALLMANARGS)
2618
Bram Moolenaar2389c3c2005-05-22 22:07:59 +00002619
Bram Moolenaare1d12892004-06-13 13:02:36 +00002620# install the language specific files, if they were unpacked
2621install-languages: languages $(DEST_LANG) $(DEST_KMAP)
Bram Moolenaar08505312018-07-07 22:26:54 +02002622 -$(SHELL) ./installman.sh install $(DEST_MAN_DA) "-da" $(INSTALLMANARGS)
2623 -$(SHELL) ./installman.sh install $(DEST_MAN_DA_I) "-da" $(INSTALLMANARGS)
2624 -$(SHELL) ./installman.sh install $(DEST_MAN_DA_U) "-da.UTF-8" $(INSTALLMANARGS)
2625 -$(SHELL) ./installman.sh install $(DEST_MAN_DE) "-de" $(INSTALLMANARGS)
2626 -$(SHELL) ./installman.sh install $(DEST_MAN_DE_I) "-de" $(INSTALLMANARGS)
2627 -$(SHELL) ./installman.sh install $(DEST_MAN_DE_U) "-de.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002628 -$(SHELL) ./installman.sh install $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
2629 -$(SHELL) ./installman.sh install $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
2630 -$(SHELL) ./installman.sh install $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002631 -$(SHELL) ./installman.sh install $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002632 -$(SHELL) ./installman.sh install $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002633 -$(SHELL) ./installman.sh install $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaara3fe8fe2013-07-13 15:33:20 +02002634 -$(SHELL) ./installman.sh install $(DEST_MAN_JA_U) "-ja.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002635 -$(SHELL) ./installman.sh install $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002636 -$(SHELL) ./installman.sh install $(DEST_MAN_PL_I) "-pl" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002637 -$(SHELL) ./installman.sh install $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00002638 -$(SHELL) ./installman.sh install $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002639 -$(SHELL) ./installman.sh install $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
Bram Moolenaarf09715b2020-05-31 14:25:22 +02002640 -$(SHELL) ./installman.sh install $(DEST_MAN_TR) "-tr" $(INSTALLMANARGS)
2641 -$(SHELL) ./installman.sh install $(DEST_MAN_TR_I) "-tr" $(INSTALLMANARGS)
2642 -$(SHELL) ./installman.sh install $(DEST_MAN_TR_U) "-tr.UTF-8" $(INSTALLMANARGS)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002643 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar08505312018-07-07 22:26:54 +02002644 $(DEST_MAN_DA) $(INSTALLMLARGS)
2645 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2646 $(DEST_MAN_DA_I) $(INSTALLMLARGS)
2647 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2648 $(DEST_MAN_DA_U) $(INSTALLMLARGS)
2649 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2650 $(DEST_MAN_DE) $(INSTALLMLARGS)
2651 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2652 $(DEST_MAN_DE_I) $(INSTALLMLARGS)
2653 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2654 $(DEST_MAN_DE_U) $(INSTALLMLARGS)
2655 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002656 $(DEST_MAN_FR) $(INSTALLMLARGS)
2657 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2658 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
2659 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2660 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
2661 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002662 $(DEST_MAN_IT) $(INSTALLMLARGS)
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00002663 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar217ad922005-03-20 22:37:15 +00002664 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
2665 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002666 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
2667 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaara3fe8fe2013-07-13 15:33:20 +02002668 $(DEST_MAN_JA_U) $(INSTALLMLARGS)
2669 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002670 $(DEST_MAN_PL) $(INSTALLMLARGS)
2671 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002672 $(DEST_MAN_PL_I) $(INSTALLMLARGS)
2673 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002674 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
2675 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00002676 $(DEST_MAN_RU) $(INSTALLMLARGS)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002677 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2678 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
Bram Moolenaarf09715b2020-05-31 14:25:22 +02002679 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2680 $(DEST_MAN_TR) $(INSTALLMLARGS)
2681 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2682 $(DEST_MAN_TR_I) $(INSTALLMLARGS)
2683 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2684 $(DEST_MAN_TR_U) $(INSTALLMLARGS)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002685 if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
2686 cd $(PODIR); $(MAKE) prefix=$(DESTDIR)$(prefix) LOCALEDIR=$(DEST_LANG) \
2687 INSTALL_DATA=$(INSTALL_DATA) FILEMOD=$(FILEMOD) install; \
2688 fi
2689 if test -d $(LANGSOURCE); then \
2690 $(INSTALL_DATA) $(LANGSOURCE)/README.txt $(LANGSOURCE)/*.vim $(DEST_LANG); \
2691 chmod $(FILEMOD) $(DEST_LANG)/README.txt $(DEST_LANG)/*.vim; \
2692 fi
2693 if test -d $(KMAPSOURCE); then \
2694 $(INSTALL_DATA) $(KMAPSOURCE)/README.txt $(KMAPSOURCE)/*.vim $(DEST_KMAP); \
2695 chmod $(FILEMOD) $(DEST_KMAP)/README.txt $(DEST_KMAP)/*.vim; \
2696 fi
2697
Bram Moolenaar7683aaa2016-08-28 21:00:50 +02002698# Install the icons for KDE, if the directory exists and the icon doesn't.
2699# Always when $(DESTDIR) is not empty.
Bram Moolenaare1d12892004-06-13 13:02:36 +00002700ICON48PATH = $(DESTDIR)$(DATADIR)/icons/hicolor/48x48/apps
2701ICON32PATH = $(DESTDIR)$(DATADIR)/icons/locolor/32x32/apps
2702ICON16PATH = $(DESTDIR)$(DATADIR)/icons/locolor/16x16/apps
Bram Moolenaar4adfaab2016-04-21 18:20:11 +02002703ICONTHEMEPATH = $(DATADIR)/icons/hicolor
Bram Moolenaarde59ba32015-11-03 22:03:16 +01002704DESKTOPPATH = $(DESTDIR)$(DATADIR)/applications
Bram Moolenaare1d12892004-06-13 13:02:36 +00002705KDEPATH = $(HOME)/.kde/share/icons
2706install-icons:
Bram Moolenaar7683aaa2016-08-28 21:00:50 +02002707 if test -n "$(DESTDIR)"; then \
Bram Moolenaarc0394412017-04-20 20:20:23 +02002708 $(MKDIR_P) $(ICON48PATH) $(ICON32PATH) \
Bram Moolenaar7683aaa2016-08-28 21:00:50 +02002709 $(ICON16PATH) $(DESKTOPPATH); \
2710 fi
2711
Bram Moolenaare1d12892004-06-13 13:02:36 +00002712 if test -d $(ICON48PATH) -a -w $(ICON48PATH) \
2713 -a ! -f $(ICON48PATH)/gvim.png; then \
2714 $(INSTALL_DATA) $(SCRIPTSOURCE)/vim48x48.png $(ICON48PATH)/gvim.png; \
Bram Moolenaar54a38412016-04-22 10:14:07 +02002715 if test -z "$(DESTDIR)" -a -x "$(GTK_UPDATE_ICON_CACHE)" \
Bram Moolenaar4adfaab2016-04-21 18:20:11 +02002716 -a -w $(ICONTHEMEPATH) \
2717 -a -f $(ICONTHEMEPATH)/index.theme; then \
2718 $(GTK_UPDATE_ICON_CACHE) -q $(ICONTHEMEPATH); \
2719 fi \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002720 fi
2721 if test -d $(ICON32PATH) -a -w $(ICON32PATH) \
2722 -a ! -f $(ICON32PATH)/gvim.png; then \
2723 $(INSTALL_DATA) $(SCRIPTSOURCE)/vim32x32.png $(ICON32PATH)/gvim.png; \
2724 fi
2725 if test -d $(ICON16PATH) -a -w $(ICON16PATH) \
2726 -a ! -f $(ICON16PATH)/gvim.png; then \
2727 $(INSTALL_DATA) $(SCRIPTSOURCE)/vim16x16.png $(ICON16PATH)/gvim.png; \
2728 fi
Bram Moolenaarde59ba32015-11-03 22:03:16 +01002729 if test -d $(DESKTOPPATH) -a -w $(DESKTOPPATH); then \
Bram Moolenaard96dbd62019-04-30 21:27:34 +02002730 if test -f po/vim.desktop -a -f po/gvim.desktop; then \
2731 $(INSTALL_DATA) po/vim.desktop po/gvim.desktop \
2732 $(DESKTOPPATH); \
2733 else \
2734 $(INSTALL_DATA) $(SCRIPTSOURCE)/vim.desktop \
2735 $(SCRIPTSOURCE)/gvim.desktop \
2736 $(DESKTOPPATH); \
2737 fi; \
Bram Moolenaar54a38412016-04-22 10:14:07 +02002738 if test -z "$(DESTDIR)" -a -x "$(UPDATE_DESKTOP_DATABASE)"; then \
Bram Moolenaar4adfaab2016-04-21 18:20:11 +02002739 $(UPDATE_DESKTOP_DATABASE) -q $(DESKTOPPATH); \
2740 fi \
Bram Moolenaarde59ba32015-11-03 22:03:16 +01002741 fi
Bram Moolenaare1d12892004-06-13 13:02:36 +00002742
2743$(HELPSOURCE)/vim.1 $(MACROSOURCE) $(TOOLSSOURCE):
2744 @echo Runtime files not found.
2745 @echo You need to unpack the runtime archive before running "make install".
2746 test -f error
2747
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002748$(DESTDIR)$(exec_prefix) $(DEST_BIN) \
2749 $(DEST_VIM) $(DEST_RT) $(DEST_HELP) \
Bram Moolenaare1d12892004-06-13 13:02:36 +00002750 $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) $(DEST_FTP) \
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +01002751 $(DEST_LANG) $(DEST_KMAP) $(DEST_COMP) $(DEST_MACRO) \
2752 $(DEST_PACK) $(DEST_TOOLS) $(DEST_TUTOR) $(DEST_SPELL) \
Bram Moolenaard09a2062017-11-11 15:37:45 +01002753 $(DEST_AUTO) $(DEST_AUTO)/dist $(DEST_AUTO)/xml $(DEST_PLUG):
Bram Moolenaarc0394412017-04-20 20:20:23 +02002754 $(MKDIR_P) $@
Bram Moolenaare1d12892004-06-13 13:02:36 +00002755 -chmod $(DIRMOD) $@
2756
2757# create links from various names to vim. This is only done when the links
2758# (or executables with the same name) don't exist yet.
2759installlinks: $(GUI_TARGETS) \
2760 $(DEST_BIN)/$(EXTARGET) \
2761 $(DEST_BIN)/$(VIEWTARGET) \
2762 $(DEST_BIN)/$(RVIMTARGET) \
2763 $(DEST_BIN)/$(RVIEWTARGET) \
2764 $(INSTALLVIMDIFF)
2765
2766installglinks: $(DEST_BIN)/$(GVIMTARGET) \
2767 $(DEST_BIN)/$(GVIEWTARGET) \
2768 $(DEST_BIN)/$(RGVIMTARGET) \
2769 $(DEST_BIN)/$(RGVIEWTARGET) \
2770 $(DEST_BIN)/$(EVIMTARGET) \
2771 $(DEST_BIN)/$(EVIEWTARGET) \
2772 $(INSTALLGVIMDIFF)
2773
2774installvimdiff: $(DEST_BIN)/$(VIMDIFFTARGET)
2775installgvimdiff: $(DEST_BIN)/$(GVIMDIFFTARGET)
2776
2777$(DEST_BIN)/$(EXTARGET):
2778 cd $(DEST_BIN); ln -s $(VIMTARGET) $(EXTARGET)
2779
2780$(DEST_BIN)/$(VIEWTARGET):
2781 cd $(DEST_BIN); ln -s $(VIMTARGET) $(VIEWTARGET)
2782
2783$(DEST_BIN)/$(GVIMTARGET):
2784 cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIMTARGET)
2785
2786$(DEST_BIN)/$(GVIEWTARGET):
2787 cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIEWTARGET)
2788
2789$(DEST_BIN)/$(RVIMTARGET):
2790 cd $(DEST_BIN); ln -s $(VIMTARGET) $(RVIMTARGET)
2791
2792$(DEST_BIN)/$(RVIEWTARGET):
2793 cd $(DEST_BIN); ln -s $(VIMTARGET) $(RVIEWTARGET)
2794
2795$(DEST_BIN)/$(RGVIMTARGET):
2796 cd $(DEST_BIN); ln -s $(VIMTARGET) $(RGVIMTARGET)
2797
2798$(DEST_BIN)/$(RGVIEWTARGET):
2799 cd $(DEST_BIN); ln -s $(VIMTARGET) $(RGVIEWTARGET)
2800
2801$(DEST_BIN)/$(VIMDIFFTARGET):
2802 cd $(DEST_BIN); ln -s $(VIMTARGET) $(VIMDIFFTARGET)
2803
2804$(DEST_BIN)/$(GVIMDIFFTARGET):
2805 cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIMDIFFTARGET)
2806
2807$(DEST_BIN)/$(EVIMTARGET):
2808 cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIMTARGET)
2809
2810$(DEST_BIN)/$(EVIEWTARGET):
2811 cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIEWTARGET)
2812
Bram Moolenaardb552d602006-03-23 22:59:57 +00002813# Create links for the manual pages with various names to vim. This is only
Bram Moolenaare1d12892004-06-13 13:02:36 +00002814# done when the links (or manpages with the same name) don't exist yet.
Bram Moolenaare1d12892004-06-13 13:02:36 +00002815
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002816INSTALLMLARGS = $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) \
2817 $(EXNAME) $(VIEWNAME) $(RVIMNAME) $(RVIEWNAME) \
2818 $(GVIMNAME) $(GVIEWNAME) $(RGVIMNAME) $(RGVIEWNAME) \
2819 $(GVIMDIFFNAME) $(EVIEWNAME)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002820
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002821installmanlinks:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002822 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
2823 $(DEST_MAN) $(INSTALLMLARGS)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002824
2825uninstall: uninstall_runtime
2826 -rm -f $(DEST_BIN)/$(VIMTARGET)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002827 -rm -f $(DEST_BIN)/vimtutor
Bram Moolenaar2b570782008-05-07 15:40:33 +00002828 -rm -f $(DEST_BIN)/gvimtutor
Bram Moolenaare1d12892004-06-13 13:02:36 +00002829 -rm -f $(DEST_BIN)/$(EXTARGET) $(DEST_BIN)/$(VIEWTARGET)
2830 -rm -f $(DEST_BIN)/$(GVIMTARGET) $(DEST_BIN)/$(GVIEWTARGET)
2831 -rm -f $(DEST_BIN)/$(RVIMTARGET) $(DEST_BIN)/$(RVIEWTARGET)
2832 -rm -f $(DEST_BIN)/$(RGVIMTARGET) $(DEST_BIN)/$(RGVIEWTARGET)
2833 -rm -f $(DEST_BIN)/$(VIMDIFFTARGET) $(DEST_BIN)/$(GVIMDIFFTARGET)
2834 -rm -f $(DEST_BIN)/$(EVIMTARGET) $(DEST_BIN)/$(EVIEWTARGET)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002835 -rm -f $(DEST_BIN)/xxd$(EXEEXT)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002836
2837# Note: the "rmdir" will fail if any files were added after "make install"
2838uninstall_runtime:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002839 -$(SHELL) ./installman.sh uninstall $(DEST_MAN) "" $(INSTALLMANARGS)
Bram Moolenaar08505312018-07-07 22:26:54 +02002840 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_DA) "" $(INSTALLMANARGS)
2841 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_DA_I) "" $(INSTALLMANARGS)
2842 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_DA_U) "" $(INSTALLMANARGS)
2843 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_DE) "" $(INSTALLMANARGS)
2844 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_DE_I) "" $(INSTALLMANARGS)
2845 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_DE_U) "" $(INSTALLMANARGS)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002846 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_FR) "" $(INSTALLMANARGS)
2847 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_FR_I) "" $(INSTALLMANARGS)
2848 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_FR_U) "" $(INSTALLMANARGS)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002849 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_IT) "" $(INSTALLMANARGS)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002850 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_IT_I) "" $(INSTALLMANARGS)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002851 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_IT_U) "" $(INSTALLMANARGS)
Bram Moolenaara3fe8fe2013-07-13 15:33:20 +02002852 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_JA_U) "" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002853 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_PL) "" $(INSTALLMANARGS)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002854 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_PL_I) "" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002855 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_PL_U) "" $(INSTALLMANARGS)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002856 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_RU) "" $(INSTALLMANARGS)
2857 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_RU_U) "" $(INSTALLMANARGS)
Bram Moolenaarf09715b2020-05-31 14:25:22 +02002858 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_TR) "" $(INSTALLMANARGS)
2859 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_TR_I) "" $(INSTALLMANARGS)
2860 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_TR_U) "" $(INSTALLMANARGS)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002861 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2862 $(DEST_MAN) $(INSTALLMLARGS)
2863 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar08505312018-07-07 22:26:54 +02002864 $(DEST_MAN_DA) $(INSTALLMLARGS)
2865 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2866 $(DEST_MAN_DA_I) $(INSTALLMLARGS)
2867 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2868 $(DEST_MAN_DA_U) $(INSTALLMLARGS)
2869 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2870 $(DEST_MAN_DE) $(INSTALLMLARGS)
2871 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2872 $(DEST_MAN_DE_I) $(INSTALLMLARGS)
2873 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2874 $(DEST_MAN_DE_U) $(INSTALLMLARGS)
2875 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002876 $(DEST_MAN_FR) $(INSTALLMLARGS)
2877 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2878 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
2879 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2880 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
2881 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00002882 $(DEST_MAN_IT) $(INSTALLMLARGS)
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00002883 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar217ad922005-03-20 22:37:15 +00002884 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
2885 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002886 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
2887 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaara3fe8fe2013-07-13 15:33:20 +02002888 $(DEST_MAN_JA_U) $(INSTALLMLARGS)
2889 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002890 $(DEST_MAN_PL) $(INSTALLMLARGS)
2891 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002892 $(DEST_MAN_PL_I) $(INSTALLMLARGS)
2893 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +00002894 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
2895 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00002896 $(DEST_MAN_RU) $(INSTALLMLARGS)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002897 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2898 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
Bram Moolenaarf09715b2020-05-31 14:25:22 +02002899 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2900 $(DEST_MAN_TR) $(INSTALLMLARGS)
2901 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2902 $(DEST_MAN_TR_I) $(INSTALLMLARGS)
2903 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2904 $(DEST_MAN_TR_U) $(INSTALLMLARGS)
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002905 -rm -f $(DEST_MAN)/xxd.1
Bram Moolenaar08505312018-07-07 22:26:54 +02002906 -rm -f $(DEST_MAN_DA)/xxd.1 $(DEST_MAN_DA_I)/xxd.1 $(DEST_MAN_DA_U)/xxd.1
2907 -rm -f $(DEST_MAN_DE)/xxd.1 $(DEST_MAN_DE_I)/xxd.1 $(DEST_MAN_DE_U)/xxd.1
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002908 -rm -f $(DEST_MAN_FR)/xxd.1 $(DEST_MAN_FR_I)/xxd.1 $(DEST_MAN_FR_U)/xxd.1
Bram Moolenaar217ad922005-03-20 22:37:15 +00002909 -rm -f $(DEST_MAN_IT)/xxd.1 $(DEST_MAN_IT_I)/xxd.1 $(DEST_MAN_IT_U)/xxd.1
Bram Moolenaara3fe8fe2013-07-13 15:33:20 +02002910 -rm -f $(DEST_MAN_JA_U)/xxd.1
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002911 -rm -f $(DEST_MAN_PL)/xxd.1 $(DEST_MAN_PL_I)/xxd.1 $(DEST_MAN_PL_U)/xxd.1
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00002912 -rm -f $(DEST_MAN_RU)/xxd.1 $(DEST_MAN_RU_U)/xxd.1
Bram Moolenaare1d12892004-06-13 13:02:36 +00002913 -rm -f $(DEST_HELP)/*.txt $(DEST_HELP)/tags $(DEST_HELP)/*.pl
2914 -rm -f $(DEST_HELP)/*.??x $(DEST_HELP)/tags-??
2915 -rm -f $(SYS_MENU_FILE) $(SYS_SYNMENU_FILE) $(SYS_DELMENU_FILE)
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +02002916 -rm -f $(SYS_BUGR_FILE) $(VIM_DEFAULTS_FILE) $(EVIM_FILE) $(MSWIN_FILE)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002917 -rm -f $(DEST_SCRIPT)/gvimrc_example.vim $(DEST_SCRIPT)/vimrc_example.vim
2918 -rm -f $(SYS_FILETYPE_FILE) $(SYS_FTOFF_FILE) $(SYS_SCRIPTS_FILE)
2919 -rm -f $(SYS_INDOFF_FILE) $(SYS_INDENT_FILE)
2920 -rm -f $(SYS_FTPLUGOF_FILE) $(SYS_FTPLUGIN_FILE)
2921 -rm -f $(SYS_OPTWIN_FILE)
2922 -rm -f $(DEST_COL)/*.vim $(DEST_COL)/README.txt
Bram Moolenaaree62f9f2018-05-12 21:05:45 +02002923 -rm -rf $(DEST_COL)/tools
Bram Moolenaare1d12892004-06-13 13:02:36 +00002924 -rm -f $(DEST_SYN)/*.vim $(DEST_SYN)/README.txt
2925 -rm -f $(DEST_IND)/*.vim $(DEST_IND)/README.txt
2926 -rm -rf $(DEST_MACRO)
Bram Moolenaaraedfcbe2016-03-25 17:02:51 +01002927 -rm -rf $(DEST_PACK)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002928 -rm -rf $(DEST_TUTOR)
Bram Moolenaar217ad922005-03-20 22:37:15 +00002929 -rm -rf $(DEST_SPELL)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002930 -rm -rf $(DEST_TOOLS)
2931 -rm -rf $(DEST_LANG)
2932 -rm -rf $(DEST_KMAP)
2933 -rm -rf $(DEST_COMP)
2934 -rm -f $(DEST_PRINT)/*.ps
2935 -rmdir $(DEST_HELP) $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND)
Bram Moolenaar926b5d32013-06-16 14:20:13 +02002936 -rm -rf $(DEST_FTP)/*.vim $(DEST_FTP)/README.txt $(DEST_FTP)/logtalk.dict
Bram Moolenaard09a2062017-11-11 15:37:45 +01002937 -rm -f $(DEST_AUTO)/*.vim $(DEST_AUTO)/README.txt
2938 -rm -f $(DEST_AUTO)/dist/*.vim $(DEST_AUTO)/xml/*.vim
Bram Moolenaare1d12892004-06-13 13:02:36 +00002939 -rm -f $(DEST_PLUG)/*.vim $(DEST_PLUG)/README.txt
Bram Moolenaard09a2062017-11-11 15:37:45 +01002940 -rmdir $(DEST_FTP) $(DEST_AUTO)/dist $(DEST_AUTO)/xml $(DEST_AUTO)
2941 -rmdir $(DEST_PLUG) $(DEST_RT)
Bram Moolenaare1d12892004-06-13 13:02:36 +00002942# This will fail when other Vim versions are installed, no worries.
2943 -rmdir $(DEST_VIM)
2944
2945# Clean up all the files that have been produced, except configure's.
2946# We support common typing mistakes for Juergen! :-)
2947clean celan: testclean
Bram Moolenaar91b6e452017-04-20 22:32:24 +02002948 -rm -f *.o core $(VIMTARGET).core $(VIMTARGET) vim xxd/*.o
2949 -rm -rf objects
Bram Moolenaar2c5c1632020-04-30 19:54:38 +02002950 -rm -f $(TOOLS) auto/osdef.h auto/pathdef.c auto/if_perl.c auto/gui_gtk_gresources.c auto/gui_gtk_gresources.h auto/os_haiku.rdef
Bram Moolenaare1d12892004-06-13 13:02:36 +00002951 -rm -f conftest* *~ auto/link.sed
Bram Moolenaar2f5463d2017-02-25 20:40:46 +01002952 -rm -f testdir/opt_test.vim
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01002953 -rm -f $(UNITTEST_TARGETS)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +02002954 -rm -f runtime pixmaps
Bram Moolenaardf2524b2020-08-20 16:16:27 +02002955 -rm -f mzscheme_base.c
Bram Moolenaar93268052019-10-10 13:22:54 +02002956 -rm -rf libvterm/.libs libterm/t/.libs libvterm/src/*.o libvterm/src/*.lo libvterm/t/*.o libvterm/t/*.lo libvterm/t/harness libvterm/libvterm.la
Bram Moolenaare1d12892004-06-13 13:02:36 +00002957 if test -d $(PODIR); then \
2958 cd $(PODIR); $(MAKE) prefix=$(DESTDIR)$(prefix) clean; \
2959 fi
2960
2961# Make a shadow directory for compilation on another system or with different
Bram Moolenaar58a297b2019-08-30 13:59:29 +02002962# features:
2963# % make shadow
2964# % cd shadow
2965# edit configuration in src/shadow/Makefile
2966# % make
2967#
2968# Alternatively use a link for the Makefile and run configure with flags in
2969# another way. When new source files are added use "shadowupdate":
2970# % cd shadow
2971# % rm Makefile
2972# % ln -s ../Makefile .
2973# % ./configure {options}
2974# % make
2975# And later:
2976# % git pull
2977# % make distclean shadowupdate
2978# % ./configure {options}
2979# % make
Bram Moolenaare1d12892004-06-13 13:02:36 +00002980SHADOWDIR = shadow
2981
Bram Moolenaar4cfde1d2020-05-01 14:14:07 +02002982LINKEDFILES = ../*.[chm] ../*.cc ../*.in ../*.sh ../*.xs ../*.xbm ../gui_gtk_res.xml ../toolcheck ../proto ../libvterm ../vimtutor ../gvimtutor ../install-sh ../Make_all.mak
Bram Moolenaar58a297b2019-08-30 13:59:29 +02002983
Bram Moolenaare1d12892004-06-13 13:02:36 +00002984shadow: runtime pixmaps
Bram Moolenaarc0394412017-04-20 20:20:23 +02002985 $(MKDIR_P) $(SHADOWDIR)
Bram Moolenaar58a297b2019-08-30 13:59:29 +02002986 cd $(SHADOWDIR); ln -s $(LINKEDFILES) .
Bram Moolenaare1d12892004-06-13 13:02:36 +00002987 mkdir $(SHADOWDIR)/auto
2988 cd $(SHADOWDIR)/auto; ln -s ../../auto/configure .
Bram Moolenaarc0394412017-04-20 20:20:23 +02002989 $(MKDIR_P) $(SHADOWDIR)/po
Bram Moolenaarfe368ed2019-04-29 20:30:54 +02002990 cd $(SHADOWDIR)/po; ln -s ../../po/*.po ../../po/*.mak ../../po/*.vim ../../po/*.in ../../po/Makefile ../../po/*.c .
Bram Moolenaare1d12892004-06-13 13:02:36 +00002991 cd $(SHADOWDIR); rm -f auto/link.sed
2992 cp Makefile configure $(SHADOWDIR)
2993 rm -f $(SHADOWDIR)/auto/config.mk $(SHADOWDIR)/config.mk.dist
2994 cp config.mk.dist $(SHADOWDIR)/auto/config.mk
2995 cp config.mk.dist $(SHADOWDIR)
Bram Moolenaarc0394412017-04-20 20:20:23 +02002996 $(MKDIR_P) $(SHADOWDIR)/xxd
Bram Moolenaare1d12892004-06-13 13:02:36 +00002997 cd $(SHADOWDIR)/xxd; ln -s ../../xxd/*.[ch] ../../xxd/Make* .
Bram Moolenaarac49f612018-09-15 15:08:52 +02002998 $(MKDIR_P) $(SHADOWDIR)/xdiff
2999 cd $(SHADOWDIR)/xdiff; ln -s ../../xdiff/*.[ch] .
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003000 if test -d $(RSRC_DIR); then \
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003001 cd $(SHADOWDIR); \
Bram Moolenaar70fc5272006-05-13 10:55:25 +00003002 ln -s ../infplist.xml .; \
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003003 ln -s ../$(RSRC_DIR) ../os_mac.rsr.hqx ../dehqx.py .; \
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003004 fi
Bram Moolenaarc0394412017-04-20 20:20:23 +02003005 $(MKDIR_P) $(SHADOWDIR)/testdir
Bram Moolenaare1d12892004-06-13 13:02:36 +00003006 cd $(SHADOWDIR)/testdir; ln -s ../../testdir/Makefile \
Bram Moolenaarf9c8bd22015-12-29 21:34:48 +01003007 ../../testdir/Make_all.mak \
Bram Moolenaar922a4432016-09-09 16:03:48 +02003008 ../../testdir/README.txt \
Bram Moolenaare1d12892004-06-13 13:02:36 +00003009 ../../testdir/*.in \
Bram Moolenaarc4ea3f42008-06-04 13:28:18 +00003010 ../../testdir/*.vim \
Bram Moolenaar2212c412016-02-03 21:45:27 +01003011 ../../testdir/*.py \
Bram Moolenaar8e46f722013-07-13 14:08:16 +02003012 ../../testdir/python* \
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +01003013 ../../testdir/pyxfile \
Bram Moolenaar09edc462014-02-05 12:36:42 +01003014 ../../testdir/sautest \
Bram Moolenaar4cc39a52016-04-30 15:08:27 +02003015 ../../testdir/samples \
Bram Moolenaar19eb6652018-02-22 11:42:49 +01003016 ../../testdir/dumps \
Bram Moolenaara4594f62011-10-20 16:35:35 +02003017 ../../testdir/test83-tags? \
Bram Moolenaar3ac498c2020-06-02 20:25:36 +02003018 ../../testdir/*.ok \
3019 ../../testdir/testluaplugin \
3020 .
Bram Moolenaare1d12892004-06-13 13:02:36 +00003021
Bram Moolenaar58a297b2019-08-30 13:59:29 +02003022# After updating Vim new files may have been created, use this to refresh the
3023# symbolic links in the shadow directory. This isn't guaranteed to catch all
3024# changes, running "make shadow" again might sometimes be needed.
3025shadowupdate:
3026 ln -sf $(LINKEDFILES) .
3027
Bram Moolenaare1d12892004-06-13 13:02:36 +00003028# Link needed for doing "make install" in a shadow directory.
3029runtime:
3030 -ln -s ../runtime .
3031
3032# Link needed for doing "make" using GTK in a shadow directory.
3033pixmaps:
3034 -ln -s ../pixmaps .
3035
3036# Update the synmenu.vim file with the latest Syntax menu.
3037# This is only needed when runtime/makemenu.vim was changed.
3038menu: ./vim ../runtime/makemenu.vim
3039 ./vim -u ../runtime/makemenu.vim
3040
3041# Start configure from scratch
3042scrub scratch:
3043 -rm -f auto/config.status auto/config.cache config.log auto/config.log
3044 -rm -f auto/config.h auto/link.log auto/link.sed auto/config.mk
3045 touch auto/config.h
3046 cp config.mk.dist auto/config.mk
3047
3048distclean: clean scratch
3049 -rm -f tags
3050
3051dist: distclean
3052 @echo
3053 @echo Making the distribution has to be done in the top directory
3054
3055mdepend:
3056 -@rm -f Makefile~
3057 cp Makefile Makefile~
3058 sed -e '/\#\#\# Dependencies/q' < Makefile > tmp_make
3059 @for i in $(ALL_SRC) ; do \
3060 echo "$$i" ; \
3061 echo `echo "$$i" | sed -e 's/[^ ]*\.c$$/objects\/\1.o/'`": $$i" `\
3062 $(CPP) $$i |\
3063 grep '^# .*"\./.*\.h"' |\
3064 sort -t'"' -u +1 -2 |\
3065 sed -e 's/.*"\.\/\(.*\)".*/\1/'\
3066 ` >> tmp_make ; \
3067 done
3068 mv tmp_make Makefile
3069
3070depend:
3071 -@rm -f Makefile~
3072 cp Makefile Makefile~
3073 sed -e '/\#\#\# Dependencies/q' < Makefile > tmp_make
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01003074 -for i in $(ALL_LOCAL_SRC); do echo $$i; \
3075 $(CPP_DEPEND) $$i | \
3076 sed -e 's+^\([^ ]*\.o\)+objects/\1+' >> tmp_make; done
3077 -for i in $(TERM_SRC); do echo $$i; \
3078 $(CPP_DEPEND) $$i | \
3079 sed -e 's+^\([^ ]*\.o\)+objects/vterm_\1+' >> tmp_make; done
3080 -for i in $(XDIFF_SRC); do echo $$i; \
Bram Moolenaare1d12892004-06-13 13:02:36 +00003081 $(CPP_DEPEND) $$i | \
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02003082 sed -e 's+^\([^ ]*\.o\)+objects/\1+' -e 's+xdiff/\.\./++g' >> tmp_make; done
Bram Moolenaare1d12892004-06-13 13:02:36 +00003083 mv tmp_make Makefile
3084
Bram Moolenaar9d75c832005-01-25 21:57:23 +00003085# Run lint. Clean up the *.ln files that are sometimes left behind.
Bram Moolenaare1d12892004-06-13 13:02:36 +00003086lint:
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003087 $(LINT) $(LINT_OPTIONS) $(LINT_CFLAGS) $(LINT_EXTRA) $(LINT_SRC)
Bram Moolenaar9d75c832005-01-25 21:57:23 +00003088 -rm -f *.ln
Bram Moolenaare1d12892004-06-13 13:02:36 +00003089
3090# Check dosinst.c with lint.
3091lintinstall:
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003092 $(LINT) $(LINT_OPTIONS) -DWIN32 -DUNIX_LINT dosinst.c
Bram Moolenaar9d75c832005-01-25 21:57:23 +00003093 -rm -f dosinst.ln
Bram Moolenaare1d12892004-06-13 13:02:36 +00003094
3095###########################################################################
3096
3097.c.o:
3098 $(CCC) $<
3099
Bram Moolenaare1d12892004-06-13 13:02:36 +00003100auto/if_perl.c: if_perl.xs
3101 $(PERL) -e 'unless ( $$] >= 5.005 ) { for (qw(na defgv errgv)) { print "#define PL_$$_ $$_\n" }}' > $@
Bram Moolenaard5f62b12014-08-17 17:05:44 +02003102 $(PERL) $(PERL_XSUBPP) -prototypes -typemap \
Bram Moolenaare1d12892004-06-13 13:02:36 +00003103 $(PERLLIB)/ExtUtils/typemap if_perl.xs >> $@
3104
3105auto/osdef.h: auto/config.h osdef.sh osdef1.h.in osdef2.h.in
Bram Moolenaare224ffa2006-03-01 00:01:28 +00003106 CC="$(CC) $(OSDEF_CFLAGS)" srcdir=$(srcdir) sh $(srcdir)/osdef.sh
Bram Moolenaare1d12892004-06-13 13:02:36 +00003107
Bram Moolenaar2c5c1632020-04-30 19:54:38 +02003108auto/os_haiku.rdef: os_haiku.rdef.in
3109 @echo creating $@
3110 @echo '/* This file is automatically created by Makefile */' >> $@
3111 @echo '/* DO NOT EDIT! Change Makefile only. */' >> $@
3112 @cat $(srcdir)/os_haiku.rdef.in >> auto/os_haiku.rdef
3113 sed -i "s|@MAJOR@|$(VIMMAJOR)|" auto/os_haiku.rdef
3114 sed -i "s|@MINOR@|$(VIMMINOR)|" auto/os_haiku.rdef
3115
Bram Moolenaare1d12892004-06-13 13:02:36 +00003116auto/pathdef.c: Makefile auto/config.mk
3117 -@echo creating $@
3118 -@echo '/* pathdef.c */' > $@
3119 -@echo '/* This file is automatically created by Makefile' >> $@
3120 -@echo ' * DO NOT EDIT! Change Makefile only. */' >> $@
3121 -@echo '#include "vim.h"' >> $@
3122 -@echo 'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' | $(QUOTESED) >> $@
3123 -@echo 'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' | $(QUOTESED) >> $@
3124 -@echo 'char_u *all_cflags = (char_u *)"$(CC) -c -I$(srcdir) $(ALL_CFLAGS)";' | $(QUOTESED) >> $@
3125 -@echo 'char_u *all_lflags = (char_u *)"$(CC) $(ALL_LIB_DIRS) $(LDFLAGS) -o $(VIMTARGET) $(ALL_LIBS) ";' | $(QUOTESED) >> $@
3126 -@echo 'char_u *compiled_user = (char_u *)"' | tr -d $(NL) >> $@
3127 -@if test -n "$(COMPILEDBY)"; then \
3128 echo "$(COMPILEDBY)" | tr -d $(NL) >> $@; \
3129 else ((logname) 2>/dev/null || whoami) | tr -d $(NL) >> $@; fi
3130 -@echo '";' >> $@
3131 -@echo 'char_u *compiled_sys = (char_u *)"' | tr -d $(NL) >> $@
3132 -@if test -z "$(COMPILEDBY)"; then hostname | tr -d $(NL) >> $@; fi
3133 -@echo '";' >> $@
3134 -@sh $(srcdir)/pathdef.sh
3135
Bram Moolenaar2e230142016-01-24 20:54:37 +01003136GUI_GTK_RES_INPUTS = \
3137 ../pixmaps/stock_vim_build_tags.png \
3138 ../pixmaps/stock_vim_find_help.png \
3139 ../pixmaps/stock_vim_save_all.png \
3140 ../pixmaps/stock_vim_session_load.png \
3141 ../pixmaps/stock_vim_session_new.png \
3142 ../pixmaps/stock_vim_session_save.png \
3143 ../pixmaps/stock_vim_shell.png \
3144 ../pixmaps/stock_vim_window_maximize.png \
3145 ../pixmaps/stock_vim_window_maximize_width.png \
3146 ../pixmaps/stock_vim_window_minimize.png \
3147 ../pixmaps/stock_vim_window_minimize_width.png \
3148 ../pixmaps/stock_vim_window_split.png \
3149 ../pixmaps/stock_vim_window_split_vertical.png
3150
3151auto/gui_gtk_gresources.c: gui_gtk_res.xml $(GUI_GTK_RES_INPUTS)
Bram Moolenaarbbb33392016-01-31 16:37:33 +01003152 $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=../pixmaps --generate --c-name=gui_gtk --manual-register gui_gtk_res.xml
Bram Moolenaar2e230142016-01-24 20:54:37 +01003153auto/gui_gtk_gresources.h: gui_gtk_res.xml $(GUI_GTK_RES_INPUTS)
Bram Moolenaarbbb33392016-01-31 16:37:33 +01003154 if test -z "$(GLIB_COMPILE_RESOURCES)"; then touch $@; else \
3155 $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=../pixmaps --generate --c-name=gui_gtk --manual-register gui_gtk_res.xml; \
3156 fi
Bram Moolenaar36e294c2015-12-29 18:55:46 +01003157
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003158# Dependencies through vim.h that most targets depend on. Used by targets
3159# that are not taken care of by "make depend".
3160VIM_H_DEPENDENCIES = \
3161 vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003162 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003163 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3164 proto.h globals.h errors.h
3165
Bram Moolenaare1d12892004-06-13 13:02:36 +00003166# All the object files are put in the "objects" directory. Since not all make
3167# commands understand putting object files in another directory, it must be
3168# specified for each file separately.
3169
Bram Moolenaar0df3c7f2016-12-09 19:57:14 +01003170objects: objects/.dirstamp
3171
3172objects/.dirstamp:
Bram Moolenaarc0394412017-04-20 20:20:23 +02003173 $(MKDIR_P) objects
Bram Moolenaar327054d2016-12-01 21:46:14 +01003174 touch objects/.dirstamp
3175
3176# All object files depend on the objects directory, so that parallel make
3177# works. Can't depend on the directory itself, its timestamp changes all the
3178# time.
3179$(ALL_OBJ): objects/.dirstamp
Bram Moolenaare1d12892004-06-13 13:02:36 +00003180
Yegappan Lakshmanancbae5802021-08-06 21:51:55 +02003181objects/alloc.o: alloc.c
3182 $(CCC) -o $@ alloc.c
3183
Bram Moolenaar75464dc2016-07-02 20:27:50 +02003184objects/arabic.o: arabic.c
3185 $(CCC) -o $@ arabic.c
3186
Bram Moolenaar4ad62152019-08-17 14:38:55 +02003187objects/arglist.o: arglist.c
3188 $(CCC) -o $@ arglist.c
3189
Bram Moolenaar3e460fd2019-01-26 16:21:07 +01003190objects/autocmd.o: autocmd.c
3191 $(CCC) -o $@ autocmd.c
3192
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01003193objects/blob.o: blob.c
3194 $(CCC) -o $@ blob.c
3195
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003196objects/blowfish.o: blowfish.c
3197 $(CCC) -o $@ blowfish.c
3198
Bram Moolenaare1d12892004-06-13 13:02:36 +00003199objects/buffer.o: buffer.c
3200 $(CCC) -o $@ buffer.c
3201
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003202objects/bufwrite.o: bufwrite.c
3203 $(CCC) -o $@ bufwrite.c
3204
Bram Moolenaarec28d152019-05-11 18:36:34 +02003205objects/change.o: change.c
3206 $(CCC) -o $@ change.c
3207
Bram Moolenaare1d12892004-06-13 13:02:36 +00003208objects/charset.o: charset.c
3209 $(CCC) -o $@ charset.c
3210
Bram Moolenaar14c01f82019-10-09 22:53:08 +02003211objects/cindent.o: cindent.c
3212 $(CCC) -o $@ cindent.c
3213
Bram Moolenaarf87a0402020-04-05 20:21:03 +02003214objects/clientserver.o: clientserver.c
3215 $(CCC) -o $@ clientserver.c
3216
Bram Moolenaar45fffdf2020-03-24 21:42:01 +01003217objects/clipboard.o: clipboard.c
3218 $(CCC) -o $@ clipboard.c
3219
Bram Moolenaar66b51422019-08-18 21:44:12 +02003220objects/cmdexpand.o: cmdexpand.c
3221 $(CCC) -o $@ cmdexpand.c
3222
Bram Moolenaard7663c22019-08-06 21:59:57 +02003223objects/cmdhist.o: cmdhist.c
3224 $(CCC) -o $@ cmdhist.c
3225
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02003226objects/crypt.o: crypt.c
3227 $(CCC) -o $@ crypt.c
3228
3229objects/crypt_zip.o: crypt_zip.c
3230 $(CCC) -o $@ crypt_zip.c
3231
Bram Moolenaareead75c2019-04-21 11:35:00 +02003232objects/debugger.o: debugger.c
3233 $(CCC) -o $@ debugger.c
3234
Bram Moolenaarcd524592016-07-17 14:57:05 +02003235objects/dict.o: dict.c
3236 $(CCC) -o $@ dict.c
3237
Bram Moolenaare828b762018-09-10 17:51:58 +02003238objects/diff.o: diff.c $(XDIFF_INCL)
Bram Moolenaare1d12892004-06-13 13:02:36 +00003239 $(CCC) -o $@ diff.c
3240
3241objects/digraph.o: digraph.c
3242 $(CCC) -o $@ digraph.c
3243
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02003244objects/drawline.o: drawline.c
3245 $(CCC) -o $@ drawline.c
3246
3247objects/drawscreen.o: drawscreen.c
3248 $(CCC) -o $@ drawscreen.c
3249
Bram Moolenaare1d12892004-06-13 13:02:36 +00003250objects/edit.o: edit.c
3251 $(CCC) -o $@ edit.c
3252
3253objects/eval.o: eval.c
3254 $(CCC) -o $@ eval.c
3255
Bram Moolenaar261f3462019-09-07 15:45:32 +02003256objects/evalbuffer.o: evalbuffer.c
3257 $(CCC) -o $@ evalbuffer.c
3258
Bram Moolenaar73dad1e2016-07-17 22:13:49 +02003259objects/evalfunc.o: evalfunc.c
3260 $(CCC) -o $@ evalfunc.c
3261
Bram Moolenaar0522ba02019-08-27 22:48:30 +02003262objects/evalvars.o: evalvars.c
3263 $(CCC) -o $@ evalvars.c
3264
Bram Moolenaar261f3462019-09-07 15:45:32 +02003265objects/evalwindow.o: evalwindow.c
3266 $(CCC) -o $@ evalwindow.c
3267
Bram Moolenaare1d12892004-06-13 13:02:36 +00003268objects/ex_cmds.o: ex_cmds.c
3269 $(CCC) -o $@ ex_cmds.c
3270
3271objects/ex_cmds2.o: ex_cmds2.c
3272 $(CCC) -o $@ ex_cmds2.c
3273
3274objects/ex_docmd.o: ex_docmd.c
3275 $(CCC) -o $@ ex_docmd.c
3276
3277objects/ex_eval.o: ex_eval.c
3278 $(CCC) -o $@ ex_eval.c
3279
3280objects/ex_getln.o: ex_getln.c
3281 $(CCC) -o $@ ex_getln.c
3282
3283objects/fileio.o: fileio.c
3284 $(CCC) -o $@ fileio.c
3285
Bram Moolenaarb005cd82019-09-04 15:54:55 +02003286objects/filepath.o: filepath.c
3287 $(CCC) -o $@ filepath.c
3288
Bram Moolenaar5fd0f502019-02-13 23:13:28 +01003289objects/findfile.o: findfile.c
3290 $(CCC) -o $@ findfile.c
3291
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +02003292objects/float.o: float.c
3293 $(CCC) -o $@ float.c
3294
Bram Moolenaare1d12892004-06-13 13:02:36 +00003295objects/fold.o: fold.c
3296 $(CCC) -o $@ fold.c
3297
3298objects/getchar.o: getchar.c
3299 $(CCC) -o $@ getchar.c
3300
Bram Moolenaar58d98232005-07-23 22:25:46 +00003301objects/hardcopy.o: hardcopy.c
3302 $(CCC) -o $@ hardcopy.c
3303
Bram Moolenaarc01140a2006-03-24 22:21:52 +00003304objects/hashtab.o: hashtab.c
3305 $(CCC) -o $@ hashtab.c
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00003306
Bram Moolenaarf868ba82020-07-21 21:07:20 +02003307objects/help.o: help.c
3308 $(CCC) -o $@ help.c
3309
Bram Moolenaare1d12892004-06-13 13:02:36 +00003310objects/gui.o: gui.c
3311 $(CCC) -o $@ gui.c
3312
3313objects/gui_at_fs.o: gui_at_fs.c
3314 $(CCC) -o $@ gui_at_fs.c
3315
3316objects/gui_at_sb.o: gui_at_sb.c
3317 $(CCC) -o $@ gui_at_sb.c
3318
3319objects/gui_athena.o: gui_athena.c
3320 $(CCC) -o $@ gui_athena.c
3321
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003322objects/beval.o: beval.c
3323 $(CCC) -o $@ beval.c
3324
Bram Moolenaare1d12892004-06-13 13:02:36 +00003325objects/gui_beval.o: gui_beval.c
3326 $(CCC) -o $@ gui_beval.c
3327
3328objects/gui_gtk.o: gui_gtk.c
3329 $(CCC) -o $@ gui_gtk.c
3330
3331objects/gui_gtk_f.o: gui_gtk_f.c
3332 $(CCC) -o $@ gui_gtk_f.c
3333
Bram Moolenaar36e294c2015-12-29 18:55:46 +01003334objects/gui_gtk_gresources.o: auto/gui_gtk_gresources.c
Bram Moolenaar6e78e272017-01-17 19:20:15 +01003335 $(CCC_NF) $(PERL_CFLAGS) $(ALL_CFLAGS) -o $@ auto/gui_gtk_gresources.c
Bram Moolenaar36e294c2015-12-29 18:55:46 +01003336
Bram Moolenaare1d12892004-06-13 13:02:36 +00003337objects/gui_gtk_x11.o: gui_gtk_x11.c
3338 $(CCC) -o $@ gui_gtk_x11.c
3339
Bram Moolenaarb3f74062020-02-26 16:16:53 +01003340objects/gui_haiku.o: gui_haiku.cc
3341 $(CCC) -o $@ gui_haiku.cc
3342
Bram Moolenaare1d12892004-06-13 13:02:36 +00003343objects/gui_motif.o: gui_motif.c
3344 $(CCC) -o $@ gui_motif.c
3345
Bram Moolenaardfccaf02004-12-31 20:56:11 +00003346objects/gui_xmdlg.o: gui_xmdlg.c
3347 $(CCC) -o $@ gui_xmdlg.c
3348
Bram Moolenaarb7fcef52005-01-02 11:31:05 +00003349objects/gui_xmebw.o: gui_xmebw.c
3350 $(CCC) -o $@ gui_xmebw.c
3351
Bram Moolenaare1d12892004-06-13 13:02:36 +00003352objects/gui_x11.o: gui_x11.c
3353 $(CCC) -o $@ gui_x11.c
3354
Bram Moolenaarf15c8b62020-06-01 14:34:43 +02003355objects/gui_xim.o: gui_xim.c
3356 $(CCC) -o $@ gui_xim.c
3357
Bram Moolenaare1d12892004-06-13 13:02:36 +00003358objects/gui_photon.o: gui_photon.c
3359 $(CCC) -o $@ gui_photon.c
3360
Bram Moolenaarf9cc9f22019-07-14 21:29:22 +02003361objects/highlight.o: highlight.c
3362 $(CCC) -o $@ highlight.c
3363
Bram Moolenaare1d12892004-06-13 13:02:36 +00003364objects/if_cscope.o: if_cscope.c
3365 $(CCC) -o $@ if_cscope.c
3366
3367objects/if_xcmdsrv.o: if_xcmdsrv.c
3368 $(CCC) -o $@ if_xcmdsrv.c
3369
Bram Moolenaar0ba04292010-07-14 23:23:17 +02003370objects/if_lua.o: if_lua.c
ichizok8bb3fe42021-12-28 15:51:45 +00003371 $(CCC_NF) $(LUA_CFLAGS) $(ALL_CFLAGS) $(LUA_CFLAGS_EXTRA) -o $@ if_lua.c
Bram Moolenaar0ba04292010-07-14 23:23:17 +02003372
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003373objects/if_mzsch.o: if_mzsch.c $(MZSCHEME_EXTRA)
Bram Moolenaarcd8b20a2009-05-22 16:20:57 +00003374 $(CCC) -o $@ $(MZSCHEME_CFLAGS_EXTRA) if_mzsch.c
Bram Moolenaar096c8bb2015-12-29 14:26:57 +01003375
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00003376mzscheme_base.c:
3377 $(MZSCHEME_MZC) --c-mods mzscheme_base.c ++lib scheme/base
Bram Moolenaar325b7a22004-07-05 15:58:32 +00003378
Bram Moolenaare1d12892004-06-13 13:02:36 +00003379objects/if_perl.o: auto/if_perl.c
ichizok8bb3fe42021-12-28 15:51:45 +00003380 $(CCC_NF) $(PERL_CFLAGS) $(ALL_CFLAGS) $(PERL_CFLAGS_EXTRA) -o $@ auto/if_perl.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00003381
3382objects/if_perlsfio.o: if_perlsfio.c
ichizok8bb3fe42021-12-28 15:51:45 +00003383 $(CCC_NF) $(PERL_CFLAGS) $(ALL_CFLAGS) $(PERL_CFLAGS_EXTRA) -o $@ if_perlsfio.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00003384
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02003385objects/if_python.o: if_python.c if_py_both.h
ichizok8bb3fe42021-12-28 15:51:45 +00003386 $(CCC_NF) $(PYTHON_CFLAGS) $(ALL_CFLAGS) $(PYTHON_CFLAGS_EXTRA) -o $@ if_python.c
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02003387
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02003388objects/if_python3.o: if_python3.c if_py_both.h
ichizok8bb3fe42021-12-28 15:51:45 +00003389 $(CCC_NF) $(PYTHON3_CFLAGS) $(ALL_CFLAGS) $(PYTHON3_CFLAGS_EXTRA) -o $@ if_python3.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00003390
3391objects/if_ruby.o: if_ruby.c
ichizok8bb3fe42021-12-28 15:51:45 +00003392 $(CCC_NF) $(RUBY_CFLAGS) $(ALL_CFLAGS) $(RUBY_CFLAGS_EXTRA) -o $@ if_ruby.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00003393
Bram Moolenaare1d12892004-06-13 13:02:36 +00003394objects/if_tcl.o: if_tcl.c
ichizok8bb3fe42021-12-28 15:51:45 +00003395 $(CCC_NF) $(TCL_CFLAGS) $(ALL_CFLAGS) $(TCL_CFLAGS_EXTRA) -o $@ if_tcl.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00003396
Bram Moolenaar4b471622019-01-31 13:48:09 +01003397objects/indent.o: indent.c
3398 $(CCC) -o $@ indent.c
3399
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003400objects/insexpand.o: insexpand.c
3401 $(CCC) -o $@ insexpand.c
3402
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02003403objects/job.o: job.c
3404 $(CCC) -o $@ job.c
3405
Bram Moolenaar520e1e42016-01-23 19:46:28 +01003406objects/json.o: json.c
3407 $(CCC) -o $@ json.c
3408
Bram Moolenaar56ead342016-02-02 18:20:08 +01003409objects/json_test.o: json_test.c
3410 $(CCC) -o $@ json_test.c
3411
Bram Moolenaar4019cf92017-01-28 16:39:34 +01003412objects/kword_test.o: kword_test.c
3413 $(CCC) -o $@ kword_test.c
3414
Bram Moolenaarda861d62016-07-17 15:46:27 +02003415objects/list.o: list.c
3416 $(CCC) -o $@ list.c
3417
Bram Moolenaar054f14b2020-07-22 19:11:19 +02003418objects/locale.o: locale.c
3419 $(CCC) -o $@ locale.c
3420
Bram Moolenaare1d12892004-06-13 13:02:36 +00003421objects/main.o: main.c
3422 $(CCC) -o $@ main.c
3423
Bram Moolenaarb66bab32019-08-01 14:28:24 +02003424objects/map.o: map.c
3425 $(CCC) -o $@ map.c
3426
Bram Moolenaare1d12892004-06-13 13:02:36 +00003427objects/mark.o: mark.c
3428 $(CCC) -o $@ mark.c
3429
Bram Moolenaar06cf97e2020-06-28 13:17:26 +02003430objects/match.o: match.c
3431 $(CCC) -o $@ match.c
3432
Bram Moolenaare1d12892004-06-13 13:02:36 +00003433objects/memfile.o: memfile.c
3434 $(CCC) -o $@ memfile.c
3435
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01003436objects/memfile_test.o: memfile_test.c
3437 $(CCC) -o $@ memfile_test.c
3438
Bram Moolenaare1d12892004-06-13 13:02:36 +00003439objects/memline.o: memline.c
3440 $(CCC) -o $@ memline.c
3441
3442objects/menu.o: menu.c
3443 $(CCC) -o $@ menu.c
3444
3445objects/message.o: message.c
3446 $(CCC) -o $@ message.c
3447
Bram Moolenaar502ae4b2016-07-16 19:50:13 +02003448objects/message_test.o: message_test.c
3449 $(CCC) -o $@ message_test.c
3450
Bram Moolenaare1d12892004-06-13 13:02:36 +00003451objects/misc1.o: misc1.c
3452 $(CCC) -o $@ misc1.c
3453
3454objects/misc2.o: misc2.c
3455 $(CCC) -o $@ misc2.c
3456
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003457objects/mouse.o: mouse.c
3458 $(CCC) -o $@ mouse.c
3459
Bram Moolenaare1d12892004-06-13 13:02:36 +00003460objects/move.o: move.c
3461 $(CCC) -o $@ move.c
3462
3463objects/mbyte.o: mbyte.c
3464 $(CCC) -o $@ mbyte.c
3465
3466objects/normal.o: normal.c
3467 $(CCC) -o $@ normal.c
3468
3469objects/ops.o: ops.c
3470 $(CCC) -o $@ ops.c
3471
Bram Moolenaar0eddca42019-09-12 22:26:43 +02003472objects/option.o: option.c optiondefs.h
ichizok8bb3fe42021-12-28 15:51:45 +00003473 $(CCC_NF) $(ALL_IF_CFLAGS) $(ALL_CFLAGS) $(ALL_IF_CFLAGS_EXTRA) -o $@ option.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00003474
Bram Moolenaardac13472019-09-16 21:06:21 +02003475objects/optionstr.o: optionstr.c
ichizok8bb3fe42021-12-28 15:51:45 +00003476 $(CCC_NF) $(ALL_IF_CFLAGS) $(ALL_CFLAGS) $(ALL_IF_CFLAGS_EXTRA) -o $@ optionstr.c
Bram Moolenaardac13472019-09-16 21:06:21 +02003477
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003478objects/os_qnx.o: os_qnx.c $(VIM_H_DEPENDENCIES)
Bram Moolenaare1d12892004-06-13 13:02:36 +00003479 $(CCC) -o $@ os_qnx.c
3480
Bram Moolenaar2c5c1632020-04-30 19:54:38 +02003481objects/os_haiku.rsrc: auto/os_haiku.rdef
Bram Moolenaarb3f74062020-02-26 16:16:53 +01003482 cat $< | $(CCC) -E - | grep -v '^#' | rc -o "$@" -
3483
Bram Moolenaar164fca32010-07-14 13:58:07 +02003484objects/os_macosx.o: os_macosx.m
3485 $(CCC) -o $@ os_macosx.m
Bram Moolenaare1d12892004-06-13 13:02:36 +00003486
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003487objects/os_mac_conv.o: os_mac_conv.c $(VIM_H_DEPENDENCIES)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00003488 $(CCC) -o $@ os_mac_conv.c
3489
Bram Moolenaare1d12892004-06-13 13:02:36 +00003490objects/os_unix.o: os_unix.c
3491 $(CCC) -o $@ os_unix.c
3492
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003493objects/os_mswin.o: os_mswin.c $(VIM_H_DEPENDENCIES)
Bram Moolenaar693e40c2013-02-26 14:56:42 +01003494 $(CCC) -o $@ os_mswin.c
3495
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003496objects/winclip.o: winclip.c $(VIM_H_DEPENDENCIES)
Bram Moolenaar693e40c2013-02-26 14:56:42 +01003497 $(CCC) -o $@ winclip.c
3498
Bram Moolenaare1d12892004-06-13 13:02:36 +00003499objects/pathdef.o: auto/pathdef.c
3500 $(CCC) -o $@ auto/pathdef.c
3501
Bram Moolenaar30e8e732019-09-27 13:08:36 +02003502objects/popupmenu.o: popupmenu.c
3503 $(CCC) -o $@ popupmenu.c
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00003504
Bram Moolenaar4d784b22019-05-25 19:51:39 +02003505objects/popupwin.o: popupwin.c
3506 $(CCC) -o $@ popupwin.c
3507
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +02003508objects/profiler.o: profiler.c
3509 $(CCC) -o $@ profiler.c
3510
Bram Moolenaar6ed80692017-07-22 20:53:21 +02003511objects/pty.o: pty.c
3512 $(CCC) -o $@ pty.c
3513
Bram Moolenaare1d12892004-06-13 13:02:36 +00003514objects/quickfix.o: quickfix.c
3515 $(CCC) -o $@ quickfix.c
3516
Bram Moolenaar6d7d7cf2019-09-07 23:16:33 +02003517objects/regexp.o: regexp.c regexp_bt.c regexp_nfa.c
Bram Moolenaare1d12892004-06-13 13:02:36 +00003518 $(CCC) -o $@ regexp.c
3519
Bram Moolenaar4aea03e2019-09-25 22:37:17 +02003520objects/register.o: register.c
3521 $(CCC) -o $@ register.c
3522
Bram Moolenaar307c5a52019-08-25 15:41:00 +02003523objects/scriptfile.o: scriptfile.c
3524 $(CCC) -o $@ scriptfile.c
3525
Bram Moolenaare1d12892004-06-13 13:02:36 +00003526objects/screen.o: screen.c
3527 $(CCC) -o $@ screen.c
3528
3529objects/search.o: search.c
3530 $(CCC) -o $@ search.c
3531
Bram Moolenaar84538072019-07-28 14:15:42 +02003532objects/session.o: session.c
3533 $(CCC) -o $@ session.c
3534
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003535objects/sha256.o: sha256.c
3536 $(CCC) -o $@ sha256.c
3537
Bram Moolenaarbbea4702019-01-01 13:20:31 +01003538objects/sign.o: sign.c
3539 $(CCC) -o $@ sign.c
3540
Bram Moolenaar427f5b62019-06-09 13:43:51 +02003541objects/sound.o: sound.c
3542 $(CCC) -o $@ sound.c
3543
Bram Moolenaar217ad922005-03-20 22:37:15 +00003544objects/spell.o: spell.c
3545 $(CCC) -o $@ spell.c
3546
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003547objects/spellfile.o: spellfile.c
3548 $(CCC) -o $@ spellfile.c
3549
Bram Moolenaar46a426c2019-09-27 12:41:56 +02003550objects/spellsuggest.o: spellsuggest.c
3551 $(CCC) -o $@ spellsuggest.c
3552
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02003553objects/strings.o: strings.c
3554 $(CCC) -o $@ strings.c
3555
Bram Moolenaare1d12892004-06-13 13:02:36 +00003556objects/syntax.o: syntax.c
3557 $(CCC) -o $@ syntax.c
3558
3559objects/tag.o: tag.c
3560 $(CCC) -o $@ tag.c
3561
3562objects/term.o: term.c
3563 $(CCC) -o $@ term.c
3564
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003565objects/terminal.o: terminal.c $(TERM_DEPS)
3566 $(CCC) -o $@ terminal.c
3567
Bram Moolenaarecaa70e2019-07-14 14:55:39 +02003568objects/testing.o: testing.c
3569 $(CCC) -o $@ testing.c
3570
Bram Moolenaar11abd092020-05-01 14:26:37 +02003571objects/textformat.o: textformat.c
3572 $(CCC) -o $@ textformat.c
3573
Bram Moolenaared8ce052020-04-29 21:04:15 +02003574objects/textobject.o: textobject.c
3575 $(CCC) -o $@ textobject.c
3576
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003577objects/textprop.o: textprop.c
3578 $(CCC) -o $@ textprop.c
3579
Bram Moolenaar0a8fed62020-02-14 13:22:17 +01003580objects/time.o: time.c
3581 $(CCC) -o $@ time.c
3582
Bram Moolenaar367d59e2020-05-30 17:06:14 +02003583objects/typval.o: typval.c
3584 $(CCC) -o $@ typval.c
3585
Bram Moolenaare1d12892004-06-13 13:02:36 +00003586objects/ui.o: ui.c
3587 $(CCC) -o $@ ui.c
3588
3589objects/undo.o: undo.c
3590 $(CCC) -o $@ undo.c
3591
Bram Moolenaarac9fb182019-04-27 13:04:13 +02003592objects/usercmd.o: usercmd.c
3593 $(CCC) -o $@ usercmd.c
3594
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003595objects/userfunc.o: userfunc.c
3596 $(CCC) -o $@ userfunc.c
3597
Bram Moolenaardc7c3662021-12-20 15:04:29 +00003598objects/vim9cmds.o: vim9cmds.c
3599 $(CCC) -o $@ vim9cmds.c
3600
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003601objects/vim9compile.o: vim9compile.c
3602 $(CCC) -o $@ vim9compile.c
3603
3604objects/vim9execute.o: vim9execute.c
3605 $(CCC) -o $@ vim9execute.c
3606
Bram Moolenaardc7c3662021-12-20 15:04:29 +00003607objects/vim9expr.o: vim9expr.c
3608 $(CCC) -o $@ vim9expr.c
3609
3610objects/vim9instr.o: vim9instr.c
3611 $(CCC) -o $@ vim9instr.c
3612
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003613objects/vim9script.o: vim9script.c
3614 $(CCC) -o $@ vim9script.c
3615
Bram Moolenaara7cc9e62020-08-09 15:25:14 +02003616objects/vim9type.o: vim9type.c
3617 $(CCC) -o $@ vim9type.c
3618
Bram Moolenaardefa0672019-07-21 19:25:37 +02003619objects/viminfo.o: viminfo.c
3620 $(CCC) -o $@ viminfo.c
3621
Bram Moolenaare1d12892004-06-13 13:02:36 +00003622objects/window.o: window.c
3623 $(CCC) -o $@ window.c
3624
Bram Moolenaare1d12892004-06-13 13:02:36 +00003625objects/netbeans.o: netbeans.c
3626 $(CCC) -o $@ netbeans.c
3627
Bram Moolenaar0e7f88e2016-01-24 20:41:51 +01003628objects/channel.o: channel.c
3629 $(CCC) -o $@ channel.c
3630
Bram Moolenaarcd800062020-08-30 18:11:54 +02003631# Dependencies that "make depend" doesn't find
3632objects/gui_gtk_x11.o: version.h
3633
Bram Moolenaare1d12892004-06-13 13:02:36 +00003634
Bram Moolenaar93268052019-10-10 13:22:54 +02003635# Build rules for libvterm. Putting them here allows for adding compilation
3636# options specific for Vim. Since the .o files go into objects/ we do need to
3637# prefix vterm_ to avoid name clashes.
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003638CCCTERM = $(CCC_NF) $(VTERM_CFLAGS) $(ALL_CFLAGS) -DINLINE="" \
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02003639 -DVSNPRINTF=vim_vsnprintf \
Bram Moolenaarc4c9f7e2020-05-17 20:52:45 +02003640 -DSNPRINTF=vim_snprintf \
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02003641 -DIS_COMBINING_FUNCTION=utf_iscomposing_uint \
3642 -DWCWIDTH_FUNCTION=utf_uint2cells
3643
Bram Moolenaar93268052019-10-10 13:22:54 +02003644objects/vterm_encoding.o: libvterm/src/encoding.c $(TERM_DEPS)
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003645 $(CCCTERM) -o $@ libvterm/src/encoding.c
3646
Bram Moolenaar93268052019-10-10 13:22:54 +02003647objects/vterm_keyboard.o: libvterm/src/keyboard.c $(TERM_DEPS)
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003648 $(CCCTERM) -o $@ libvterm/src/keyboard.c
3649
Bram Moolenaar93268052019-10-10 13:22:54 +02003650objects/vterm_mouse.o: libvterm/src/mouse.c $(TERM_DEPS)
3651 $(CCCTERM) -o $@ libvterm/src/mouse.c
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003652
Bram Moolenaar93268052019-10-10 13:22:54 +02003653objects/vterm_parser.o: libvterm/src/parser.c $(TERM_DEPS)
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003654 $(CCCTERM) -o $@ libvterm/src/parser.c
3655
Bram Moolenaar93268052019-10-10 13:22:54 +02003656objects/vterm_pen.o: libvterm/src/pen.c $(TERM_DEPS)
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003657 $(CCCTERM) -o $@ libvterm/src/pen.c
3658
Bram Moolenaar93268052019-10-10 13:22:54 +02003659objects/vterm_screen.o: libvterm/src/screen.c $(TERM_DEPS)
3660 $(CCCTERM) -o $@ libvterm/src/screen.c
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003661
Bram Moolenaar93268052019-10-10 13:22:54 +02003662objects/vterm_state.o: libvterm/src/state.c $(TERM_DEPS)
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003663 $(CCCTERM) -o $@ libvterm/src/state.c
3664
Bram Moolenaar83a52532020-05-20 19:30:19 +02003665objects/vterm_unicode.o: libvterm/src/unicode.c $(TERM_DEPS) libvterm/src/fullwidth.inc
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003666 $(CCCTERM) -o $@ libvterm/src/unicode.c
3667
Bram Moolenaar93268052019-10-10 13:22:54 +02003668objects/vterm_vterm.o: libvterm/src/vterm.c $(TERM_DEPS)
Bram Moolenaare4f25e42017-07-07 11:54:15 +02003669 $(CCCTERM) -o $@ libvterm/src/vterm.c
3670
Bram Moolenaare828b762018-09-10 17:51:58 +02003671CCCDIFF = $(CCC_NF) $(ALL_CFLAGS)
3672
3673objects/xdiffi.o: xdiff/xdiffi.c $(XDIFF_INCL)
3674 $(CCCDIFF) -o $@ xdiff/xdiffi.c
3675
3676objects/xprepare.o: xdiff/xprepare.c $(XDIFF_INCL)
3677 $(CCCDIFF) -o $@ xdiff/xprepare.c
3678
3679objects/xutils.o: xdiff/xutils.c $(XDIFF_INCL)
3680 $(CCCDIFF) -o $@ xdiff/xutils.c
3681
3682objects/xemit.o: xdiff/xemit.c $(XDIFF_INCL)
3683 $(CCCDIFF) -o $@ xdiff/xemit.c
3684
3685objects/xhistogram.o: xdiff/xhistogram.c $(XDIFF_INCL)
3686 $(CCCDIFF) -o $@ xdiff/xhistogram.c
3687
3688objects/xpatience.o: xdiff/xpatience.c $(XDIFF_INCL)
3689 $(CCCDIFF) -o $@ xdiff/xpatience.c
3690
3691
Bram Moolenaarcd800062020-08-30 18:11:54 +02003692Makefile:
3693 @echo The name of the makefile MUST be "Makefile" (with capital M)!!!!
Bram Moolenaare1d12892004-06-13 13:02:36 +00003694
Bram Moolenaarf5f4b6c2019-12-14 13:17:11 +01003695
Bram Moolenaare1d12892004-06-13 13:02:36 +00003696###############################################################################
Bram Moolenaarb3f74062020-02-26 16:16:53 +01003697#
3698# Haiku installation
3699#
3700# This rule:
3701# - add resources to already installed vim binary to avoid
3702# stripping them during install;
Bram Moolenaarb3f74062020-02-26 16:16:53 +01003703# - update system MIME database with info about vim application.
3704#
3705install_haiku_extra: $(DEST_BIN)/$(VIMTARGET) objects/os_haiku.rsrc
3706 xres -o $(DEST_BIN)/$(VIMTARGET) objects/os_haiku.rsrc
Bram Moolenaarb3f74062020-02-26 16:16:53 +01003707 mimeset $(DEST_BIN)/$(VIMTARGET)
3708
3709# List of g*-links that should be replaced with shell script equivalents.
3710# This solves the problem of them from Tracker.
3711#
3712HAIKU_GLINKS = $(DEST_BIN)/$(GVIMTARGET) \
3713 $(DEST_BIN)/$(GVIEWTARGET) \
3714 $(DEST_BIN)/$(GVIMDIFFTARGET) \
3715 $(DEST_BIN)/$(RGVIMTARGET) \
3716 $(DEST_BIN)/$(RGVIEWTARGET)
3717
3718# This rule:
3719# - Replace gvim link with copy of vim binary.
3720# - Replace g*-links with shell script equivalents to solve the
3721# problem of calling them from Tracker,
3722# - Add icon resources to mentioned g*-link shell scripts
3723# - in case gui-less vim.con executable available use it.
3724#
3725installglinks_haiku: $(HAIKU_GLINKS) install_haiku_extra
3726 @catattr -r "BEOS:ICON" $(DEST_BIN)/$(GVIMTARGET) > ~icon.attr
3727 for i in $(HAIKU_GLINKS); do \
3728 rm $$i ; \
3729 echo "#!/bin/sh" > $$i ; \
3730 case $$i in \
3731 $(DEST_BIN)/$(GVIMTARGET)) \
3732 cp $(DEST_BIN)/$(VIMTARGET) $$i ; \
3733 if [ -f $(VIMTARGET).con ] ; then \
3734 $(STRIP) $(VIMTARGET).con ; \
3735 mv $(VIMTARGET).con $(DEST_BIN)/$(VIMTARGET) ; \
3736 fi ;; \
3737 $(DEST_BIN)/$(GVIEWTARGET)) printf "%s -R %c%c" $(GVIMTARGET) '$$' '*' >> $$i;; \
3738 $(DEST_BIN)/$(GVIMDIFFTARGET)) printf "%s -d %c%c" $(GVIMTARGET) '$$' '*' >> $$i;; \
3739 $(DEST_BIN)/$(RGVIMTARGET)) printf "%s -Z %c%c" $(GVIMTARGET) '$$' '*' >> $$i;; \
3740 $(DEST_BIN)/$(RGVIEWTARGET)) printf "%s -Z -R %c%c" $(GVIMTARGET) '$$' '*' >> $$i;; \
3741 *) printf "%s %c%c" $(GVIMTARGET) '$$' '*' >> $$i;; \
3742 esac ; \
3743 chmod $(BINMOD) $$i ; \
3744 addattr -f ~icon.attr -t \'VICN\' BEOS:ICON $$i ; \
3745 done
3746 addattr -f ~icon.attr -t \'VICN\' BEOS:ICON $(DEST_BIN)/$(VIMNAME)tutor
3747 @rm ~icon.attr
3748
3749###############################################################################
Bram Moolenaare1d12892004-06-13 13:02:36 +00003750### (automatically generated by 'make depend')
3751### Dependencies:
Yegappan Lakshmanancbae5802021-08-06 21:51:55 +02003752objects/alloc.o: alloc.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003753 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Yegappan Lakshmanancbae5802021-08-06 21:51:55 +02003754 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003755 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003756objects/arabic.o: arabic.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003757 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02003758 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003759 proto.h globals.h errors.h
Bram Moolenaar4ad62152019-08-17 14:38:55 +02003760objects/arglist.o: arglist.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003761 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar4ad62152019-08-17 14:38:55 +02003762 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003763 proto.h globals.h errors.h
Bram Moolenaar1c321dc2019-02-01 20:42:22 +01003764objects/autocmd.o: autocmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003765 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar1c321dc2019-02-01 20:42:22 +01003766 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003767 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003768objects/beval.o: beval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003769 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02003770 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003771 proto.h globals.h errors.h
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01003772objects/blob.o: blob.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003773 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01003774 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003775 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003776objects/blowfish.o: blowfish.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003777 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003778 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003779 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003780objects/buffer.o: buffer.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003781 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02003782 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003783 proto.h globals.h errors.h version.h
Bram Moolenaarec28d152019-05-11 18:36:34 +02003784objects/change.o: change.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003785 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarec28d152019-05-11 18:36:34 +02003786 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003787 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003788objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003789 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003790 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003791 proto.h globals.h errors.h
Bram Moolenaar14c01f82019-10-09 22:53:08 +02003792objects/cindent.o: cindent.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003793 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar14c01f82019-10-09 22:53:08 +02003794 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003795 proto.h globals.h errors.h
3796objects/clientserver.o: clientserver.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003797 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarf87a0402020-04-05 20:21:03 +02003798 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003799 proto.h globals.h errors.h
3800objects/clipboard.o: clipboard.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003801 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar45fffdf2020-03-24 21:42:01 +01003802 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003803 proto.h globals.h errors.h
Bram Moolenaard283e892019-12-07 18:50:29 +01003804objects/cmdexpand.o: cmdexpand.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003805 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar66b51422019-08-18 21:44:12 +02003806 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003807 proto.h globals.h errors.h
Bram Moolenaard7663c22019-08-06 21:59:57 +02003808objects/cmdhist.o: cmdhist.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003809 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaard7663c22019-08-06 21:59:57 +02003810 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003811 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003812objects/crypt.o: crypt.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003813 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003814 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003815 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003816objects/crypt_zip.o: crypt_zip.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003817 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003818 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003819 proto.h globals.h errors.h
Bram Moolenaareead75c2019-04-21 11:35:00 +02003820objects/debugger.o: debugger.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003821 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar7bde95a2019-04-21 15:22:39 +02003822 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003823 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003824objects/dict.o: dict.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003825 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003826 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003827 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003828objects/diff.o: diff.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003829 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003830 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003831 proto.h globals.h errors.h xdiff/xdiff.h xdiff/../vim.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003832objects/digraph.o: digraph.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003833 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003834 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003835 proto.h globals.h errors.h
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02003836objects/drawline.o: drawline.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003837 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02003838 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003839 proto.h globals.h errors.h
Bram Moolenaard283e892019-12-07 18:50:29 +01003840objects/drawscreen.o: drawscreen.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003841 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02003842 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003843 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003844objects/edit.o: edit.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003845 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003846 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003847 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003848objects/eval.o: eval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003849 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02003850 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003851 proto.h globals.h errors.h
Bram Moolenaard283e892019-12-07 18:50:29 +01003852objects/evalbuffer.o: evalbuffer.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003853 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar261f3462019-09-07 15:45:32 +02003854 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003855 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003856objects/evalfunc.o: evalfunc.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003857 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003858 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003859 proto.h globals.h errors.h version.h
Bram Moolenaard283e892019-12-07 18:50:29 +01003860objects/evalvars.o: evalvars.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003861 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar0522ba02019-08-27 22:48:30 +02003862 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003863 proto.h globals.h errors.h version.h
Bram Moolenaar261f3462019-09-07 15:45:32 +02003864objects/evalwindow.o: evalwindow.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003865 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar261f3462019-09-07 15:45:32 +02003866 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003867 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003868objects/ex_cmds.o: ex_cmds.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003869 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003870 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003871 proto.h globals.h errors.h version.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003872objects/ex_cmds2.o: ex_cmds2.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003873 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003874 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003875 proto.h globals.h errors.h version.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003876objects/ex_docmd.o: ex_docmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003877 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02003878 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003879 proto.h globals.h errors.h ex_cmdidxs.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003880objects/ex_eval.o: ex_eval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003881 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02003882 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003883 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003884objects/ex_getln.o: ex_getln.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003885 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003886 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003887 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003888objects/fileio.o: fileio.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003889 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003890 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003891 proto.h globals.h errors.h
Bram Moolenaarb005cd82019-09-04 15:54:55 +02003892objects/filepath.o: filepath.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003893 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb005cd82019-09-04 15:54:55 +02003894 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003895 proto.h globals.h errors.h
Bram Moolenaar7bde95a2019-04-21 15:22:39 +02003896objects/findfile.o: findfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003897 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar5fd0f502019-02-13 23:13:28 +01003898 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003899 proto.h globals.h errors.h
3900objects/float.o: float.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003901 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Yegappan Lakshmanan01c798c2021-06-02 17:07:18 +02003902 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003903 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003904objects/fold.o: fold.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003905 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003906 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003907 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003908objects/getchar.o: getchar.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003909 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003910 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003911 proto.h globals.h errors.h
3912objects/gui_xim.o: gui_xim.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003913 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003914 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3915 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003916objects/hardcopy.o: hardcopy.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003917 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02003918 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003919 proto.h globals.h errors.h version.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003920objects/hashtab.o: hashtab.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003921 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02003922 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003923 proto.h globals.h errors.h
Bram Moolenaarf868ba82020-07-21 21:07:20 +02003924objects/help.o: help.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003925 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarf868ba82020-07-21 21:07:20 +02003926 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003927 proto.h globals.h errors.h
Bram Moolenaard283e892019-12-07 18:50:29 +01003928objects/highlight.o: highlight.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003929 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarf9cc9f22019-07-14 21:29:22 +02003930 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003931 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003932objects/if_cscope.o: if_cscope.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003933 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003934 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
ichizok40503052022-01-13 18:09:11 +00003935 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003936objects/if_xcmdsrv.o: if_xcmdsrv.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003937 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003938 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003939 proto.h globals.h errors.h version.h
Bram Moolenaar4b471622019-01-31 13:48:09 +01003940objects/indent.o: indent.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003941 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar1c321dc2019-02-01 20:42:22 +01003942 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003943 proto.h globals.h errors.h
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003944objects/insexpand.o: insexpand.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003945 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar7591bb32019-03-30 13:53:47 +01003946 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003947 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003948objects/json.o: json.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003949 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003950 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003951 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003952objects/list.o: list.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003953 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003954 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003955 proto.h globals.h errors.h
Bram Moolenaar054f14b2020-07-22 19:11:19 +02003956objects/locale.o: locale.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003957 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar054f14b2020-07-22 19:11:19 +02003958 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003959 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003960objects/main.o: main.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003961 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003962 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003963 proto.h globals.h errors.h
Bram Moolenaarb66bab32019-08-01 14:28:24 +02003964objects/map.o: map.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003965 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb66bab32019-08-01 14:28:24 +02003966 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003967 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003968objects/mark.o: mark.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003969 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003970 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003971 proto.h globals.h errors.h
3972objects/match.o: match.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003973 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar06cf97e2020-06-28 13:17:26 +02003974 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003975 proto.h globals.h errors.h
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003976objects/mbyte.o: mbyte.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003977 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003978 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003979 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003980objects/memfile.o: memfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003981 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003982 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003983 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003984objects/memline.o: memline.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003985 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003986 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003987 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003988objects/menu.o: menu.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003989 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003990 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003991 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003992objects/message.o: message.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003993 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003994 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003995 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02003996objects/misc1.o: misc1.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00003997 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02003998 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01003999 proto.h globals.h errors.h version.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004000objects/misc2.o: misc2.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004001 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004002 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004003 proto.h globals.h errors.h
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02004004objects/mouse.o: mouse.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004005 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02004006 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004007 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004008objects/move.o: move.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004009 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004010 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004011 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004012objects/normal.o: normal.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004013 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004014 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Yegappan Lakshmanan4dc0dd82022-01-29 13:06:40 +00004015 proto.h globals.h errors.h nv_cmdidxs.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004016objects/ops.o: ops.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004017 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004018 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004019 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004020objects/option.o: option.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004021 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004022 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004023 proto.h globals.h errors.h optiondefs.h
Bram Moolenaard283e892019-12-07 18:50:29 +01004024objects/optionstr.o: optionstr.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004025 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaardac13472019-09-16 21:06:21 +02004026 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004027 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004028objects/os_unix.o: os_unix.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004029 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004030 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004031 proto.h globals.h errors.h os_unixx.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004032objects/pathdef.o: auto/pathdef.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004033 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004034 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004035 proto.h globals.h errors.h
Bram Moolenaard283e892019-12-07 18:50:29 +01004036objects/popupmenu.o: popupmenu.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004037 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004038 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004039 proto.h globals.h errors.h
Bram Moolenaar4d784b22019-05-25 19:51:39 +02004040objects/popupwin.o: popupwin.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004041 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar4d784b22019-05-25 19:51:39 +02004042 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004043 proto.h globals.h errors.h
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +02004044objects/profiler.o: profiler.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004045 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +02004046 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004047 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004048objects/pty.o: pty.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004049 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004050 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004051 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004052objects/quickfix.o: quickfix.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004053 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004054 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004055 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004056objects/regexp.o: regexp.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004057 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004058 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004059 proto.h globals.h errors.h regexp_bt.c regexp_nfa.c
Bram Moolenaar4aea03e2019-09-25 22:37:17 +02004060objects/register.o: register.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004061 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar4aea03e2019-09-25 22:37:17 +02004062 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004063 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004064objects/screen.o: screen.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004065 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004066 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004067 proto.h globals.h errors.h
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004068objects/scriptfile.o: scriptfile.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004069 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004070 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004071 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004072objects/search.o: search.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004073 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004074 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004075 proto.h globals.h errors.h
Bram Moolenaard283e892019-12-07 18:50:29 +01004076objects/session.o: session.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004077 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar84538072019-07-28 14:15:42 +02004078 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004079 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004080objects/sha256.o: sha256.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004081 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004082 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004083 proto.h globals.h errors.h
Bram Moolenaarbbea4702019-01-01 13:20:31 +01004084objects/sign.o: sign.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004085 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarbbea4702019-01-01 13:20:31 +01004086 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004087 proto.h globals.h errors.h
Bram Moolenaard283e892019-12-07 18:50:29 +01004088objects/sound.o: sound.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004089 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar427f5b62019-06-09 13:43:51 +02004090 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004091 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004092objects/spell.o: spell.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004093 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004094 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004095 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004096objects/spellfile.o: spellfile.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004097 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004098 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004099 proto.h globals.h errors.h
Bram Moolenaar46a426c2019-09-27 12:41:56 +02004100objects/spellsuggest.o: spellsuggest.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004101 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar46a426c2019-09-27 12:41:56 +02004102 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004103 proto.h globals.h errors.h
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02004104objects/strings.o: strings.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004105 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02004106 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004107 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004108objects/syntax.o: syntax.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004109 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004110 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004111 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004112objects/tag.o: tag.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004113 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004114 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004115 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004116objects/term.o: term.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004117 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004118 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004119 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004120objects/terminal.o: terminal.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004121 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004122 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004123 proto.h globals.h errors.h libvterm/include/vterm.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004124 libvterm/include/vterm_keycodes.h
Bram Moolenaarecaa70e2019-07-14 14:55:39 +02004125objects/testing.o: testing.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004126 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarecaa70e2019-07-14 14:55:39 +02004127 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004128 proto.h globals.h errors.h
4129objects/textformat.o: textformat.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004130 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar11abd092020-05-01 14:26:37 +02004131 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004132 proto.h globals.h errors.h
4133objects/textobject.o: textobject.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004134 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaared8ce052020-04-29 21:04:15 +02004135 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004136 proto.h globals.h errors.h
Bram Moolenaar98aefe72018-12-13 22:20:09 +01004137objects/textprop.o: textprop.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004138 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar98aefe72018-12-13 22:20:09 +01004139 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004140 proto.h globals.h errors.h
Bram Moolenaar0a8fed62020-02-14 13:22:17 +01004141objects/time.o: time.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004142 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar0a8fed62020-02-14 13:22:17 +01004143 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004144 proto.h globals.h errors.h
Bram Moolenaar367d59e2020-05-30 17:06:14 +02004145objects/typval.o: typval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004146 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar367d59e2020-05-30 17:06:14 +02004147 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004148 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004149objects/ui.o: ui.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004150 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004151 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004152 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004153objects/undo.o: undo.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004154 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004155 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004156 proto.h globals.h errors.h
Bram Moolenaarac9fb182019-04-27 13:04:13 +02004157objects/usercmd.o: usercmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004158 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarac9fb182019-04-27 13:04:13 +02004159 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004160 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004161objects/userfunc.o: userfunc.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004162 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004163 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004164 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004165objects/version.o: version.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004166 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004167 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004168 proto.h globals.h errors.h version.h
Bram Moolenaardc7c3662021-12-20 15:04:29 +00004169objects/vim9cmds.o: vim9cmds.c vim.h protodef.h auto/config.h feature.h \
4170 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
4171 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4172 proto.h globals.h errors.h vim9.h
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004173objects/vim9compile.o: vim9compile.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004174 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004175 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004176 proto.h globals.h errors.h vim9.h
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004177objects/vim9execute.o: vim9execute.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004178 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004179 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004180 proto.h globals.h errors.h vim9.h
Bram Moolenaardc7c3662021-12-20 15:04:29 +00004181objects/vim9expr.o: vim9expr.c vim.h protodef.h auto/config.h feature.h \
4182 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
4183 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4184 proto.h globals.h errors.h vim9.h
4185objects/vim9instr.o: vim9instr.c vim.h protodef.h auto/config.h feature.h \
4186 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
4187 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4188 proto.h globals.h errors.h vim9.h
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004189objects/vim9script.o: vim9script.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004190 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004191 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004192 proto.h globals.h errors.h vim9.h
4193objects/vim9type.o: vim9type.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004194 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaara7cc9e62020-08-09 15:25:14 +02004195 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004196 proto.h globals.h errors.h
Bram Moolenaard283e892019-12-07 18:50:29 +01004197objects/viminfo.o: viminfo.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004198 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaardefa0672019-07-21 19:25:37 +02004199 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004200 proto.h globals.h errors.h version.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004201objects/window.o: window.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004202 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004203 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004204 proto.h globals.h errors.h
Bram Moolenaar473952e2019-09-28 16:30:04 +02004205objects/bufwrite.o: bufwrite.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004206 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar473952e2019-09-28 16:30:04 +02004207 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004208 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004209objects/gui.o: gui.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004210 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004211 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004212 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004213objects/gui_gtk.o: gui_gtk.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004214 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004215 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004216 proto.h globals.h errors.h gui_gtk_f.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004217objects/gui_gtk_f.o: gui_gtk_f.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004218 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004219 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004220 proto.h globals.h errors.h gui_gtk_f.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004221objects/gui_motif.o: gui_motif.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004222 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004223 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004224 proto.h globals.h errors.h gui_xmebw.h ../pixmaps/alert.xpm \
4225 ../pixmaps/error.xpm ../pixmaps/generic.xpm ../pixmaps/info.xpm \
4226 ../pixmaps/quest.xpm gui_x11_pm.h ../pixmaps/tb_new.xpm \
Bram Moolenaar7bde95a2019-04-21 15:22:39 +02004227 ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm ../pixmaps/tb_save.xpm \
4228 ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm ../pixmaps/tb_copy.xpm \
4229 ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004230 ../pixmaps/tb_find_next.xpm ../pixmaps/tb_find_prev.xpm \
4231 ../pixmaps/tb_find_help.xpm ../pixmaps/tb_exit.xpm \
4232 ../pixmaps/tb_undo.xpm ../pixmaps/tb_redo.xpm ../pixmaps/tb_help.xpm \
4233 ../pixmaps/tb_macro.xpm ../pixmaps/tb_make.xpm \
4234 ../pixmaps/tb_save_all.xpm ../pixmaps/tb_jump.xpm \
4235 ../pixmaps/tb_ctags.xpm ../pixmaps/tb_load_session.xpm \
4236 ../pixmaps/tb_save_session.xpm ../pixmaps/tb_new_session.xpm \
4237 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \
4238 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \
4239 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \
4240 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \
4241 ../pixmaps/tb_minwidth.xpm
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004242objects/gui_xmdlg.o: gui_xmdlg.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004243 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004244 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4245 proto.h globals.h errors.h
4246objects/gui_xmebw.o: gui_xmebw.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004247 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004248 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4249 proto.h globals.h errors.h gui_xmebwp.h gui_xmebw.h
4250objects/gui_athena.o: gui_athena.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004251 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004252 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4253 proto.h globals.h errors.h gui_at_sb.h gui_x11_pm.h \
4254 ../pixmaps/tb_new.xpm ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm \
4255 ../pixmaps/tb_save.xpm ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm \
4256 ../pixmaps/tb_copy.xpm ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \
4257 ../pixmaps/tb_find_next.xpm ../pixmaps/tb_find_prev.xpm \
4258 ../pixmaps/tb_find_help.xpm ../pixmaps/tb_exit.xpm \
4259 ../pixmaps/tb_undo.xpm ../pixmaps/tb_redo.xpm ../pixmaps/tb_help.xpm \
4260 ../pixmaps/tb_macro.xpm ../pixmaps/tb_make.xpm \
4261 ../pixmaps/tb_save_all.xpm ../pixmaps/tb_jump.xpm \
4262 ../pixmaps/tb_ctags.xpm ../pixmaps/tb_load_session.xpm \
4263 ../pixmaps/tb_save_session.xpm ../pixmaps/tb_new_session.xpm \
4264 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \
4265 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \
4266 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \
4267 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \
4268 ../pixmaps/tb_minwidth.xpm
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004269objects/gui_gtk_x11.o: gui_gtk_x11.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004270 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004271 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004272 proto.h globals.h errors.h auto/gui_gtk_gresources.h gui_gtk_f.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004273 ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004274objects/gui_x11.o: gui_x11.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004275 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004276 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004277 proto.h globals.h errors.h ../runtime/vim32x32.xpm \
4278 ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004279objects/gui_at_sb.o: gui_at_sb.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004280 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004281 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004282 proto.h globals.h errors.h gui_at_sb.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004283objects/gui_at_fs.o: gui_at_fs.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004284 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004285 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004286 proto.h globals.h errors.h gui_at_sb.h
4287objects/gui_haiku.o: gui_haiku.cc vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004288 os_unix.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar8b5866d2020-09-05 15:48:51 +02004289 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004290 proto.h globals.h errors.h version.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004291objects/json_test.o: json_test.c main.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004292 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004293 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004294 proto.h globals.h errors.h json.c
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004295objects/kword_test.o: kword_test.c main.c vim.h protodef.h auto/config.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004296 feature.h os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004297 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004298 ex_cmds.h spell.h proto.h globals.h errors.h charset.c
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004299objects/memfile_test.o: memfile_test.c main.c vim.h protodef.h auto/config.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004300 feature.h os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004301 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004302 ex_cmds.h spell.h proto.h globals.h errors.h memfile.c
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004303objects/message_test.o: message_test.c main.c vim.h protodef.h auto/config.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004304 feature.h os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004305 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004306 ex_cmds.h spell.h proto.h globals.h errors.h message.c
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004307objects/if_lua.o: if_lua.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004308 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004309 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004310 proto.h globals.h errors.h version.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004311objects/if_mzsch.o: if_mzsch.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004312 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004313 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004314 proto.h globals.h errors.h if_mzsch.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004315objects/if_perl.o: auto/if_perl.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004316 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004317 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004318 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004319objects/if_perlsfio.o: if_perlsfio.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004320 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004321 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004322 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004323objects/if_python.o: if_python.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004324 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004325 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004326 proto.h globals.h errors.h if_py_both.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004327objects/if_python3.o: if_python3.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004328 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004329 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004330 proto.h globals.h errors.h if_py_both.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004331objects/if_tcl.o: if_tcl.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004332 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004333 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004334 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004335objects/if_ruby.o: if_ruby.c protodef.h auto/config.h vim.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004336 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaarb1c91982018-05-17 17:04:55 +02004337 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004338 proto.h globals.h errors.h version.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004339objects/gui_beval.o: gui_beval.c vim.h protodef.h auto/config.h feature.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004340 os_unix.h auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004341 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004342 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004343objects/netbeans.o: netbeans.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004344 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004345 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004346 proto.h globals.h errors.h version.h
4347objects/job.o: job.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004348 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004349 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
4350 proto.h globals.h errors.h
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004351objects/channel.o: channel.c vim.h protodef.h auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004352 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004353 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004354 proto.h globals.h errors.h
Bram Moolenaar2e230142016-01-24 20:54:37 +01004355objects/gui_gtk_gresources.o: auto/gui_gtk_gresources.c
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01004356objects/vterm_encoding.o: libvterm/src/encoding.c libvterm/src/vterm_internal.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004357 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4358 libvterm/src/encoding/DECdrawing.inc libvterm/src/encoding/uk.inc
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01004359objects/vterm_keyboard.o: libvterm/src/keyboard.c libvterm/src/vterm_internal.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004360 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4361 libvterm/src/utf8.h
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01004362objects/vterm_mouse.o: libvterm/src/mouse.c libvterm/src/vterm_internal.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004363 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4364 libvterm/src/utf8.h
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01004365objects/vterm_parser.o: libvterm/src/parser.c libvterm/src/vterm_internal.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004366 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01004367objects/vterm_pen.o: libvterm/src/pen.c libvterm/src/vterm_internal.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004368 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01004369objects/vterm_screen.o: libvterm/src/screen.c libvterm/src/vterm_internal.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004370 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4371 libvterm/src/rect.h libvterm/src/utf8.h
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01004372objects/vterm_state.o: libvterm/src/state.c libvterm/src/vterm_internal.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004373 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01004374objects/vterm_unicode.o: libvterm/src/unicode.c libvterm/src/vterm_internal.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004375 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4376 libvterm/src/fullwidth.inc
Bram Moolenaar9810cfb2019-12-11 21:23:00 +01004377objects/vterm_vterm.o: libvterm/src/vterm.c libvterm/src/vterm_internal.h \
Bram Moolenaar78dcd4f2018-09-13 17:23:28 +02004378 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
4379 libvterm/src/utf8.h
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004380objects/xdiffi.o: xdiff/xdiffi.c xdiff/xinclude.h auto/config.h \
4381 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4382 auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004383 auto/osdef.h ascii.h keymap.h termdefs.h \
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004384 macros.h option.h beval.h proto/gui_beval.pro \
4385 structs.h regexp.h gui.h alloc.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004386 ex_cmds.h spell.h proto.h globals.h \
4387 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4388 xdiff/xdiffi.h xdiff/xemit.h
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004389objects/xemit.o: xdiff/xemit.c xdiff/xinclude.h auto/config.h \
4390 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4391 auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004392 auto/osdef.h ascii.h keymap.h termdefs.h \
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004393 macros.h option.h beval.h proto/gui_beval.pro \
4394 structs.h regexp.h gui.h alloc.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004395 ex_cmds.h spell.h proto.h globals.h \
4396 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4397 xdiff/xdiffi.h xdiff/xemit.h
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004398objects/xprepare.o: xdiff/xprepare.c xdiff/xinclude.h auto/config.h \
4399 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4400 auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004401 auto/osdef.h ascii.h keymap.h termdefs.h \
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004402 macros.h option.h beval.h proto/gui_beval.pro \
4403 structs.h regexp.h gui.h alloc.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004404 ex_cmds.h spell.h proto.h globals.h \
4405 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4406 xdiff/xdiffi.h xdiff/xemit.h
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004407objects/xutils.o: xdiff/xutils.c xdiff/xinclude.h auto/config.h \
4408 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4409 auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004410 auto/osdef.h ascii.h keymap.h termdefs.h \
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004411 macros.h option.h beval.h proto/gui_beval.pro \
4412 structs.h regexp.h gui.h alloc.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004413 ex_cmds.h spell.h proto.h globals.h \
4414 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4415 xdiff/xdiffi.h xdiff/xemit.h
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004416objects/xhistogram.o: xdiff/xhistogram.c xdiff/xinclude.h auto/config.h \
4417 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4418 auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004419 auto/osdef.h ascii.h keymap.h termdefs.h \
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004420 macros.h option.h beval.h proto/gui_beval.pro \
4421 structs.h regexp.h gui.h alloc.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004422 ex_cmds.h spell.h proto.h globals.h \
4423 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4424 xdiff/xdiffi.h xdiff/xemit.h
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004425objects/xpatience.o: xdiff/xpatience.c xdiff/xinclude.h auto/config.h \
4426 xdiff/xmacros.h xdiff/xdiff.h vim.h protodef.h \
4427 auto/config.h feature.h os_unix.h \
Bram Moolenaarb3a29552021-11-19 11:28:04 +00004428 auto/osdef.h ascii.h keymap.h termdefs.h \
Bram Moolenaar0f7683f2018-09-13 18:01:31 +02004429 macros.h option.h beval.h proto/gui_beval.pro \
4430 structs.h regexp.h gui.h alloc.h \
Bram Moolenaar2446ec92021-10-26 12:00:01 +01004431 ex_cmds.h spell.h proto.h globals.h \
4432 errors.h xdiff/xtypes.h xdiff/xutils.h xdiff/xprepare.h \
4433 xdiff/xdiffi.h xdiff/xemit.h