annotate src/Make_vms.mms @ 30731:2295ee9c025d v9.0.0700

patch 9.0.0700: there is no real need for a "big" build Commit: https://github.com/vim/vim/commit/25f3a146a0e4c731b8608f4cfbbfdf7a71b2d05e Author: Martin Tournoij <martin@arp242.net> Date: Sat Oct 8 19:26:41 2022 +0100 patch 9.0.0700: there is no real need for a "big" build Problem: There is no real need for a "big" build. Solution: Move common features to "normal" build, less often used features to the "huge" build. (Martin Tournoij, closes #11283)
author Bram Moolenaar <Bram@vim.org>
date Sat, 08 Oct 2022 20:30:05 +0200
parents 101f08b49ed3
children fa309d9af73c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 # Makefile for Vim on OpenVMS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com>
26662
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
5 # Last change: 2021 Dec 20
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 #
18761
e3785af3ba0f patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents: 18673
diff changeset
7 # This script has been tested on VMS 6.2 to 8.4 on DEC Alpha, VAX and IA64
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 # with MMS and MMK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 # The following could be built:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 # vim.exe: standard (terminal, GUI/Motif, GUI/GTK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 # dvim.exe: debug
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 # Edit the lines in the Configuration section below for fine tuning.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 #
1045
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 856
diff changeset
16 # To build: mms/descrip=Make_vms.mms /ignore=warning
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 # To clean up: mms/descrip=Make_vms.mms clean
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 # Hints and detailed description could be found in INSTALLVMS.TXT file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 # Configuration section.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 # Compiler selection.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 # Comment out if you use the VAXC compiler
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 DECC = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 # Build model selection
30645
101f08b49ed3 patch 9.0.0657: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 27484
diff changeset
30 # TINY - No optional features enabled
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 # NORMAL - A default selection of features enabled
4352
04736b4030ec updated for version 7.3.925
Bram Moolenaar <bram@vim.org>
parents: 2441
diff changeset
32 # HUGE - All possible features enabled.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 # Please select one of these alternatives above.
1709
71eaeb69efe4 updated for version 7.2-007
vimboss
parents: 1431
diff changeset
34 MODEL = HUGE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 # GUI or terminal mode executable.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 # Comment out if you want just the character terminal mode only.
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
38 # GUI with Motif
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
39 # GUI = YES
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 # GUI with GTK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 # If you have GTK installed you might want to enable this option.
1045
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 856
diff changeset
43 # NOTE: you will need to properly define GTK_DIR below
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
44 # NOTE: since Vim 7.3 GTK 2+ is used that is not ported to VMS,
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
45 # therefore this option should not be used
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 # GTK = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
48 # GUI/Motif with XPM
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
49 # If you have XPM installed you might want to build Motif version with toolbar
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
50 # XPM = YES
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
51
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 # Comment out if you want the compiler version with :ver command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53 # NOTE: This part can make some complications if you're using some
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54 # predefined symbols/flags for your compiler. If does, just leave behind
4352
04736b4030ec updated for version 7.3.925
Bram Moolenaar <bram@vim.org>
parents: 2441
diff changeset
55 # the comment variable CCVER.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 CCVER = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 # Uncomment if want a debug version. Resulting executable is DVIM.EXE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 # Development purpose only! Normally, it should not be defined. !!!
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
60 # DEBUG = YES
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 # Languages support for Perl, Python, TCL etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 # If you don't need it really, leave them behind the comment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 # You will need related libraries, include files etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 # VIM_TCL = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 # VIM_PERL = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 # VIM_PYTHON = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 # VIM_RUBY = YES
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
69 # VIM_LUA = YES
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 # X Input Method. For entering special languages like chinese and
18673
f1658662ea84 patch 8.1.2328: a few hangul input pieces remain
Bram Moolenaar <Bram@vim.org>
parents: 18265
diff changeset
72 # Japanese.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 # If you don't need it really, leave it behind the comment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 # VIM_XIM = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 # Allow any white space to separate the fields in a tags file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 # When not defined, only a TAB is allowed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 # VIM_TAG_ANYWHITE = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79
2441
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
80 # Allow FEATURE_MZSCHEME
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
81 # VIM_MZSCHEME = YES
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
82
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
83 # Use ICONV
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
84 # VIM_ICONV = YES
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
85
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 # Directory, library and include files configuration section.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 # Normally you need not to change anything below. !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 # These may need to be defined if things are not in standard locations
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 # You can find some explanation in INSTALLVMS.TXT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 # Compiler setup
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95
1045
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 856
diff changeset
96 .IFDEF MMSVAX
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 .IFDEF DECC # VAX with DECC
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
98 CC_DEF = cc # /decc # some versions require /decc switch but when it is not required /ver might fail
23408
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
99 PREFIX = /prefix=all/name=(upper,short)
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
100 OPTIMIZE= /noopt # do not optimize on VAX. The compiler has hard time with crypto functions
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 .ELSE # VAX with VAXC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 CC_DEF = cc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 PREFIX =
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
104 OPTIMIZE= /noopt
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 CCVER =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 .ENDIF
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
107 .ELSE # AXP and IA64 with DECC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 CC_DEF = cc
23408
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
109 PREFIX = /prefix=all/name=(upper,short)
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
110 OPTIMIZE= /opt
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
113
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114 LD_DEF = link
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115 C_INC = [.proto]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 .IFDEF DEBUG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 DEBUG_DEF = ,"DEBUG"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 TARGET = dvim.exe
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 CFLAGS = /debug/noopt$(PREFIX)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 LDFLAGS = /debug
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 TARGET = vim.exe
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
124 CFLAGS = $(OPTIMIZE)$(PREFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 LDFLAGS =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 # Predefined VIM directories
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129 # Please, use $VIM and $VIMRUNTIME logicals instead
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 VIMLOC = ""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 VIMRUN = ""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 CONFIG_H = os_vms_conf.h
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
135 # GTK or XPM but not both
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 .IFDEF GTK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137 .IFDEF GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 GUI = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140 .ENDIF
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
141 .IFDEF XPM
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
142 XPM = ""
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
143 .ENDIF
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
144 .ENDIF
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
145
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
146 .IFDEF XPM
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
147 .IFDEF GUI
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
148 .ELSE
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
149 GUI = YES
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
150 .ENDIF
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
151 .IFDEF GTK
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
152 GTK = ""
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153 .ENDIF
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
154 .ENDIF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 .IFDEF GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 # X/Motif/GTK executable (also works in terminal mode )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 .IFDEF GTK
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 800
diff changeset
160 # NOTE: you need to set up your GTK_DIR (GTK root directory), because it is
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 800
diff changeset
161 # unique on every system - logicals are not accepted
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
162 # please note: directory should end with . in order to /trans=conc work
1045
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 856
diff changeset
163 # This value for GTK_DIR is an example.
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
164 GTK_DIR = DKA0:[WORK.GTK1210.]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 LIBS = ,OS_VMS_GTK.OPT/OPT
23408
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
167 GUI_FLAG = /float=ieee/ieee=denorm
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
168 GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
169 GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 # GUI_INC_VER is used just for :ver information
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 # this string should escape from C and DCL in the same time
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
174 .ELSE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 MOTIF = YES
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
176 .IFDEF XPM
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
177 DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM"
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
178 XPM_INC = ,[.xpm.include]
23408
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
179 XPM_LIB = ,OS_VMS_XPM.OPT/OPT
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
180 .ELSE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
182 XPM_INC =
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
183 .ENDIF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184 LIBS = ,OS_VMS_MOTIF.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 GUI_FLAG =
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
186 GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
187 GUI_OBJ = gui.obj gui_motif.obj gui_x11.obj gui_beval.obj gui_xmdlg.obj gui_xmebw.obj
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 GUI_INC =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191 # You need to define these variables if you do not have DECW files
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 # at standard location
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 GUI_INC_DIR = ,decw$include:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 # GUI_LIB_DIR = ,sys$library:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 # Character terminal only executable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 DEFS = "HAVE_CONFIG_H"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 LIBS =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 .IFDEF VIM_PERL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 # Perl related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 PERL = perl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 PERL_DEF = ,"FEAT_PERL"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 PERL_SRC = if_perlsfio.c if_perl.xs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 PERL_OBJ = if_perlsfio.obj if_perl.obj
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 PERL_LIB = ,OS_VMS_PERL.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 .IFDEF VIM_PYTHON
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 # Python related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 PYTHON_DEF = ,"FEAT_PYTHON"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 PYTHON_SRC = if_python.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 PYTHON_OBJ = if_python.obj
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 PYTHON_INC = ,PYTHON_INCLUDE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 .IFDEF VIM_TCL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 # TCL related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 TCL_DEF = ,"FEAT_TCL"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 TCL_SRC = if_tcl.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 TCL_OBJ = if_tcl.obj
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 TCL_LIB = ,OS_VMS_TCL.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 TCL_INC = ,dka0:[tcl80.generic]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 .IFDEF VIM_RUBY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 # RUBY related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 RUBY_DEF = ,"FEAT_RUBY"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 RUBY_SRC = if_ruby.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234 RUBY_OBJ = if_ruby.obj
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
235 RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
236 RUBY_INC =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
239 .IFDEF VIM_LUA
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
240 # LUA related setup.
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
241 LUA_DEF = ,"FEAT_LUA"
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
242 LUA_SRC = if_lua.c
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
243 LUA_OBJ = if_lua.obj
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
244 LUA_LIB = ,OS_VMS_LUA.OPT/OPT
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
245 LUA_INC = ,LUA$ROOT:[INCLUDE]
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
246 .ENDIF
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
247
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248 .IFDEF VIM_XIM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 # XIM related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 .IFDEF GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 XIM_DEF = ,"FEAT_XIM"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254
2441
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
255 .IFDEF VIM_MZSCHEME
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
256 # MZSCHEME related setup
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
257 MZSCH_DEF = ,"FEAT_MZSCHEME"
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
258 MZSCH_SRC = if_mzsch.c
2441
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
259 MZSCH_OBJ = if_mzsch.obj
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
260 .ENDIF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
262 .IFDEF VIM_ICONV
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
263 # ICONV related setup
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
264 ICONV_DEF = ,"USE_ICONV"
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
265 .ENDIF
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
266
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
267 # XDIFF related setup.
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
268 XDIFF_SRC = xdiffi.c,xemit.c,xprepare.c,xutils.c,xhistogram.c,xpatience.c
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
269 XDIFF_OBJ = xdiffi.obj,xemit.obj,xprepare.obj,xutils.obj,xhistogram.obj,xpatience.obj
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
270 XDIFF_INC = ,[.xdiff]
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
271
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273 # End of configuration section.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 # Please, do not change anything below without programming experience.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 MODEL_DEF = "FEAT_$(MODEL)",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 # These go into pathdef.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280 VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
281 VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 .SUFFIXES : .obj .c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
285 ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
286 $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCH_DEF) -
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
287 $(ICONV_DEF)) -
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 $(CFLAGS)$(GUI_FLAG) -
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
289 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC) -
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
290 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 # CFLAGS displayed in :ver information
19195
2ef19eed524a patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents: 18884
diff changeset
293 # It is specially formatted for correct display of unix like includes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
294 # as $(GUI_INC) - replaced with $(GUI_INC_VER)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295 # Otherwise should not be any other difference.
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
296 ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
297 $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCH_DEF) -
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
298 $(ICONV_DEF)) -
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 $(CFLAGS)$(GUI_FLAG) -
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
300 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC) -
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
301 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
302
23408
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
303 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) $(XPM_LIB)\
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
304 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB) $(LUA_LIB)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
306 SRC = \
25529
bb1097899693 patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
307 alloc.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
308 arabic.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
309 arglist.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
310 autocmd.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
311 beval.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
312 blob.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
313 blowfish.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
314 buffer.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
315 bufwrite.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
316 change.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
317 charset.c \
18265
fe5afdc03bd2 patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents: 18199
diff changeset
318 cindent.c \
19920
5e41b2e63c73 patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19774
diff changeset
319 clientserver.c \
19774
00a1b89256ea patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19396
diff changeset
320 clipboard.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
321 cmdexpand.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
322 cmdhist.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
323 crypt.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
324 crypt_zip.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
325 debugger.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
326 dict.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
327 diff.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
328 digraph.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
329 drawline.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
330 drawscreen.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
331 edit.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
332 eval.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
333 evalbuffer.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
334 evalfunc.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
335 evalvars.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
336 evalwindow.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
337 ex_cmds.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
338 ex_cmds2.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
339 ex_docmd.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
340 ex_eval.c \
18010
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
341 ex_getln.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
342 fileio.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
343 filepath.c, \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
344 findfile.c \
24780
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 23503
diff changeset
345 float.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
346 fold.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
347 getchar.c \
20637
6c5b11458f31 patch 8.2.0872: XIM code is mixed with multi-byte code
Bram Moolenaar <Bram@vim.org>
parents: 20587
diff changeset
348 gui_xim.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
349 hardcopy.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
350 hashtab.c \
21423
5db63c2c6929 patch 8.2.1262: src/ex_cmds.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 21054
diff changeset
351 help.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
352 highlight.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
353 if_cscope.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
354 if_xcmdsrv.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
355 indent.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
356 insexpand.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
357 json.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
358 list.c \
21437
b32b67a108f2 patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents: 21423
diff changeset
359 locale.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
360 main.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
361 map.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
362 mark.c \
21054
b1fac55cf8a3 patch 8.2.1078: highlight and match functionality together in one file
Bram Moolenaar <Bram@vim.org>
parents: 20637
diff changeset
363 match.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
364 mbyte.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
365 memfile.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
366 memline.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
367 menu.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
368 message.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
369 misc1.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
370 misc2.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
371 mouse.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
372 move.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
373 normal.c \
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18124
diff changeset
374 ops.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
375 option.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
376 optionstr.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
377 os_unix.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
378 os_vms.c \
17744
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
379 pathdef.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
380 popupmenu.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
381 popupwin.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
382 profiler.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
383 quickfix.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
384 regexp.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
385 register.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
386 screen.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
387 scriptfile.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
388 search.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
389 session.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
390 sha256.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
391 sign.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
392 spell.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
393 spellfile.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
394 spellsuggest.c \
25206
dc66d0284518 patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24780
diff changeset
395 strings.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
396 syntax.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
397 tag.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
398 term.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
399 termlib.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
400 testing.c \
20237
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 20209
diff changeset
401 textformat.c \
20209
6ca6a372fef6 patch 8.2.0660: the search.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents: 19920
diff changeset
402 textobject.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
403 textprop.c \
19396
a961efb326e5 patch 8.2.0256: time and timer related code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19394
diff changeset
404 time.c \
20587
f502455965c0 patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 20237
diff changeset
405 typval.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
406 ui.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
407 undo.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
408 usercmd.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
409 userfunc.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
410 version.c \
26662
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
411 vim9cmds.c \
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
412 vim9compile.c \
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
413 vim9execute.c \
26662
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
414 vim9expr.c \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
415 vim9instr.c \
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
416 vim9script.c \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
417 vim9type.c \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
418 viminfo.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
419 window.c \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
420 $(GUI_SRC) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
421 $(PERL_SRC) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
422 $(PYTHON_SRC) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
423 $(TCL_SRC) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
424 $(RUBY_SRC) \
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
425 $(LUA_SRC) \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
426 $(MZSCH_SRC) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
427 $(XDIFF_SRC)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
428
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
429 OBJ = \
25529
bb1097899693 patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
430 alloc.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
431 arabic.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
432 arglist.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
433 autocmd.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
434 beval.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
435 blob.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
436 blowfish.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
437 buffer.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
438 bufwrite.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
439 change.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
440 charset.obj \
18265
fe5afdc03bd2 patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents: 18199
diff changeset
441 cindent.obj \
19920
5e41b2e63c73 patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19774
diff changeset
442 clientserver.obj \
19774
00a1b89256ea patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19396
diff changeset
443 clipboard.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
444 cmdexpand.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
445 cmdhist.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
446 crypt.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
447 crypt_zip.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
448 debugger.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
449 dict.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
450 diff.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
451 digraph.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
452 drawline.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
453 drawscreen.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
454 edit.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
455 eval.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
456 evalbuffer.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
457 evalfunc.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
458 evalvars.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
459 evalwindow.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
460 ex_cmds.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
461 ex_cmds2.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
462 ex_docmd.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
463 ex_eval.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
464 ex_getln.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
465 fileio.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
466 filepath.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
467 findfile.obj \
24780
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 23503
diff changeset
468 float.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
469 fold.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
470 getchar.obj \
20637
6c5b11458f31 patch 8.2.0872: XIM code is mixed with multi-byte code
Bram Moolenaar <Bram@vim.org>
parents: 20587
diff changeset
471 gui_xim.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
472 hardcopy.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
473 hashtab.obj \
21423
5db63c2c6929 patch 8.2.1262: src/ex_cmds.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 21054
diff changeset
474 help.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
475 highlight.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
476 if_cscope.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
477 if_mzsch.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
478 if_xcmdsrv.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
479 indent.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
480 insexpand.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
481 json.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
482 list.obj \
21437
b32b67a108f2 patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents: 21423
diff changeset
483 locale.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
484 main.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
485 map.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
486 mark.obj \
21054
b1fac55cf8a3 patch 8.2.1078: highlight and match functionality together in one file
Bram Moolenaar <Bram@vim.org>
parents: 20637
diff changeset
487 match.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
488 mbyte.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
489 memfile.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
490 memline.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
491 menu.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
492 message.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
493 misc1.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
494 misc2.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
495 mouse.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
496 move.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
497 normal.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
498 ops.obj \
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18124
diff changeset
499 option.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
500 optionstr.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
501 os_unix.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
502 os_vms.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
503 pathdef.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
504 popupmenu.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
505 popupwin.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
506 profiler.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
507 quickfix.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
508 regexp.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
509 register.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
510 screen.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
511 scriptfile.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
512 search.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
513 session.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
514 sha256.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
515 sign.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
516 spell.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
517 spellfile.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
518 spellsuggest.obj \
25206
dc66d0284518 patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24780
diff changeset
519 strings.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
520 syntax.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
521 tag.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
522 term.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
523 termlib.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
524 testing.obj \
20237
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 20209
diff changeset
525 textformat.obj \
20209
6ca6a372fef6 patch 8.2.0660: the search.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents: 19920
diff changeset
526 textobject.obj \
18172
6e53d83e021d patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
527 textprop.obj \
19396
a961efb326e5 patch 8.2.0256: time and timer related code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19394
diff changeset
528 time.obj \
20587
f502455965c0 patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 20237
diff changeset
529 typval.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
530 ui.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
531 undo.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
532 usercmd.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
533 userfunc.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
534 version.obj \
26662
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
535 vim9cmds.obj \
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
536 vim9compile.obj \
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
537 vim9execute.obj \
26662
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
538 vim9expr.obj \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
539 vim9instr.obj \
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
540 vim9script.obj \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
541 vim9type.obj \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
542 viminfo.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
543 window.obj \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
544 $(GUI_OBJ) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
545 $(PERL_OBJ) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
546 $(PYTHON_OBJ) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
547 $(TCL_OBJ) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
548 $(RUBY_OBJ) \
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
549 $(LUA_OBJ) \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
550 $(MZSCH_OBJ) \
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
551 $(XDIFF_OBJ)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 # Default target is making the executable
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
554 all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env lua_env $(TARGET)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
555 ! $@
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
556
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
557 [.auto]config.h : $(CONFIG_H)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
558 copy/nolog $(CONFIG_H) [.auto]config.h
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560 mmk_compat :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
561 -@ open/write pd pathdef.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562 -@ write pd "/* Empty file to satisfy MMK depend. */"
1221
dc65bb5de20e updated for version 7.1b
vimboss
parents: 1045
diff changeset
563 -@ write pd "/* It will be overwritten later on... */"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
564 -@ close pd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
565 clean :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
23408
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
572 -@ if "''F$SEARCH("*.dmp")'" .NES. "" then delete/noconfirm/nolog *.dmp;*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
574 # Link the target
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
575 $(TARGET) : $(OBJ)
18761
e3785af3ba0f patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents: 18673
diff changeset
576 # make an OPT file - as the obj file list is too long for one command line
e3785af3ba0f patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents: 18673
diff changeset
577 -@ DIRECTORY *.OBJ. /BRIEF/COLUMNS=1/NOHEADING/NOTRAILING /SELECT=FILE=(NONODE,NODEVICE,NODIRECTORY,NOVERSION)/OUTPUT=ALL_OBJS_LIST.OPT
e3785af3ba0f patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents: 18673
diff changeset
578 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
579
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580 .c.obj :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
581 $(CC_DEF) $(ALL_CFLAGS) $<
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 pathdef.c : check_ccver $(CONFIG_H)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
584 -@ write sys$output "creating PATHDEF.C file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 -@ open/write pd pathdef.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
588 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
589 -@ write pd "typedef unsigned char char_u;"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
590 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
591 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
592 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
18761
e3785af3ba0f patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents: 18673
diff changeset
593 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS)"";"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
594 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
595 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
1045
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 856
diff changeset
596 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 856
diff changeset
597 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
598 -@ close pd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
599
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
600 if_perl.c : if_perl.xs
18761
e3785af3ba0f patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents: 18673
diff changeset
601 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap - PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
602
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603 make_vms.mms :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
606 .IFDEF CCVER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607 # This part can make some complications if you're using some predefined
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608 # symbols/flags for your compiler. If does, just comment out CCVER variable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609 check_ccver :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 -@ define sys$output cc_ver.tmp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
611 -@ $(CC_DEF)/version
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
612 -@ deassign sys$output
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613 -@ open/read file cc_ver.tmp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614 -@ read file CC_VER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
615 -@ close file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616 -@ delete/noconfirm/nolog cc_ver.tmp.*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618 check_ccver :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
622 .IFDEF MOTIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
623 motif_env :
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
624 .IFDEF XPM
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
625 -@ write sys$output "using DECW/Motif/XPM environment."
23408
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
626 -@ write sys$output "creating OS_VMS_XPM.OPT file."
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
627 -@ open/write opt_file OS_VMS_XPM.OPT
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
628 .IFDEF MMSVAX
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
629 -@ write opt_file "[.xpm.vms.vax]libxpm.olb/lib"
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
630 .ENDIF
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
631 .IFDEF MMSALPHA
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
632 -@ write opt_file "[.xpm.vms.axp]libxpm.olb/lib"
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
633 .ENDIF
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
634 .IFDEF MMSIA64
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
635 -@ write opt_file "[.xpm.vms.ia64]libxpm.olb/lib"
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
636 .ENDIF
23408
bdda90ed5f6c patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
637 -@ close opt_file
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
638 .ELSE
856
8cd729851562 updated for version 7.0g
vimboss
parents: 826
diff changeset
639 -@ write sys$output "using DECW/Motif environment."
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
640 .ENDIF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
641 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
642 -@ open/write opt_file OS_VMS_MOTIF.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
644 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
645 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648 motif_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
649 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 .IFDEF GTK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654 gtk_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 -@ write sys$output "using GTK environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
656 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 -@ show logical gtk_root
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658 -@ write sys$output " include path: "$(GUI_INC)""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 -@ write sys$output "creating OS_VMS_GTK.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 -@ open/write opt_file OS_VMS_GTK.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
661 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
662 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
666 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
669 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
670 gtk_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
671 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674 .IFDEF VIM_PERL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
675 perl_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
676 -@ write sys$output "using PERL environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
677 -@ show logical PERLSHR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
678 -@ write sys$output " include path: ""$(PERL_INC)"""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
679 -@ show symbol perl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680 -@ open/write pd if_perl.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681 -@ write pd "/* Empty file to satisfy MMK depend. */"
1221
dc65bb5de20e updated for version 7.1b
vimboss
parents: 1045
diff changeset
682 -@ write pd "/* It will be overwritten later on... */"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 -@ close pd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 -@ write sys$output "creating OS_VMS_PERL.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 -@ open/write opt_file OS_VMS_PERL.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 -@ write opt_file "PERLSHR /share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689 perl_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
690 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
691 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
692
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 .IFDEF VIM_PYTHON
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
694 python_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695 -@ write sys$output "using PYTHON environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 -@ show logical PYTHON_INCLUDE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 -@ show logical PYTHON_OLB
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699 -@ open/write opt_file OS_VMS_PYTHON.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
700 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
701 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
703 python_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
705 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
706
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
707 .IFDEF VIM_TCL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
708 tcl_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 -@ write sys$output "using TCL environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710 -@ show logical TCLSHR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
711 -@ write sys$output " include path: ""$(TCL_INC)"""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
712 -@ write sys$output "creating OS_VMS_TCL.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
713 -@ open/write opt_file OS_VMS_TCL.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 -@ write opt_file "TCLSHR /share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
715 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717 tcl_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
719 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
720
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
721 .IFDEF VIM_RUBY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
722 ruby_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723 -@ write sys$output "using RUBY environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 -@ write sys$output " include path: ""$(RUBY_INC)"""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
725 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
726 -@ open/write opt_file OS_VMS_RUBY.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
727 -@ write opt_file "RUBYSHR /share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
728 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
730 ruby_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
731 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
733
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
734 .IFDEF VIM_LUA
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
735 lua_env :
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
736 -@ write sys$output "using LUA environment:"
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
737 -@ write sys$output " include path: ""$(LUA_INC)"""
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
738 -@ write sys$output "creating OS_VMS_LUA.OPT file."
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
739 -@ open/write opt_file OS_VMS_LUA.OPT
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
740 -@ write opt_file "LUA$ROOT:[LIB]LUA$SHR.EXE /share"
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
741 -@ close opt_file
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
742 .ELSE
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
743 lua_env :
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
744 -@ !
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
745 .ENDIF
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
746
25529
bb1097899693 patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
747 alloc.obj : alloc.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
748 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
25529
bb1097899693 patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
749 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
9408
6814811b90d5 commit https://github.com/vim/vim/commit/3b98b830017b8bf5fd270db93dfe187434df1960
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
750 arabic.obj : arabic.c vim.h
17744
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
751 arglist.obj : arglist.c vim.h [.auto]config.h feature.h os_unix.h
15634
746b95fd25ad patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents: 15533
diff changeset
752 autocmd.obj : autocmd.c vim.h [.auto]config.h feature.h os_unix.h
15533
08604d82fc9e patch 8.1.0774: VMS build is missing the blob file
Bram Moolenaar <Bram@vim.org>
parents: 15517
diff changeset
753 blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
754 blob.obj : blob.c vim.h [.auto]config.h feature.h os_unix.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
755 buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
756 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
757 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
758 errors.h globals.h version.h
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
759 bufwrite.obj : bufwrite.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
760 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
18199
e2be5a6485f5 patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18174
diff changeset
761 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
762 errors.h globals.h
16632
30de89c1d090 patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents: 16411
diff changeset
763 change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
764 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
16632
30de89c1d090 patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents: 16411
diff changeset
765 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
766 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
767 charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
768 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
769 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
770 errors.h globals.h
18265
fe5afdc03bd2 patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents: 18199
diff changeset
771 cindent.obj : cindent.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
772 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
18265
fe5afdc03bd2 patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents: 18199
diff changeset
773 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
774 errors.h globals.h
19920
5e41b2e63c73 patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19774
diff changeset
775 clientserver.obj : clientserver.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
776 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
19920
5e41b2e63c73 patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19774
diff changeset
777 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
778 errors.h globals.h
19774
00a1b89256ea patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19396
diff changeset
779 clipboard.obj : clipboard.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
780 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
19774
00a1b89256ea patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19396
diff changeset
781 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
782 errors.h globals.h
17779
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
783 cmdexpand.obj : cmdexpand.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
784 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
17779
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
785 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
786 errors.h globals.h
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17576
diff changeset
787 cmdhist.obj : cmdhist.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
788 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17576
diff changeset
789 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
790 errors.h globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
791 crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
792 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
793 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
794 errors.h globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
795 crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
796 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
797 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
798 proto.h errors.h globals.h
16381
1dcbaa780b8e patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
799 debugger.obj : debugger.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
800 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
16381
1dcbaa780b8e patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
801 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
802 errors.h globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
803 dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
804 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
805 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
806 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
807 diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
808 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
809 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
810 digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
811 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
812 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
813 errors.h globals.h
18124
2a806e3c39f6 patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
814 drawline.obj : drawline.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
815 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
18124
2a806e3c39f6 patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
816 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
817 errors.h globals.h
18124
2a806e3c39f6 patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
818 drawscreen.obj : drawscreen.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
819 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
18124
2a806e3c39f6 patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
820 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
821 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
822 edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
823 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
824 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
825 eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
826 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
827 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
18010
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
828 evalbuffer.obj : evalbuffer.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
829 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
18010
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
830 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
831 proto.h errors.h globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
832 evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
833 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
834 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
835 proto.h errors.h globals.h version.h
17873
d50a5faa75bd patch 8.1.1933: the eval.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17861
diff changeset
836 evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
837 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
17873
d50a5faa75bd patch 8.1.1933: the eval.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17861
diff changeset
838 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
839 proto.h errors.h globals.h version.h
18010
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
840 evalwindow.obj : evalwindow.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
841 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
18010
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
842 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
843 proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
844 ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
845 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
846 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
847 errors.h globals.h version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
848 ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
849 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
850 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
851 errors.h globals.h version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
852 ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
853 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
854 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
855 errors.h globals.h ex_cmdidxs.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
856 ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
857 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
858 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
859 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
860 ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
861 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
862 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
863 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
864 fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
865 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
866 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
867 errors.h globals.h
17966
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
868 filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
869 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
17966
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
870 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
871 errors.h globals.h
15814
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
872 findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
873 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
15814
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
874 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
875 errors.h globals.h
24780
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 23503
diff changeset
876 float.obj : float.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
877 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
24780
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 23503
diff changeset
878 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
879 fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
880 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
881 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
882 getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
883 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
884 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
885 errors.h globals.h
20637
6c5b11458f31 patch 8.2.0872: XIM code is mixed with multi-byte code
Bram Moolenaar <Bram@vim.org>
parents: 20587
diff changeset
886 gui_xim.obj : gui_xim.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
887 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
20637
6c5b11458f31 patch 8.2.0872: XIM code is mixed with multi-byte code
Bram Moolenaar <Bram@vim.org>
parents: 20587
diff changeset
888 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
889 errors.h globals.h
440
eb531146be0e updated for version 7.0114
vimboss
parents: 414
diff changeset
890 hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
891 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
892 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
893 errors.h globals.h version.h
800
d8f905020502 updated for version 7.0b
vimboss
parents: 683
diff changeset
894 hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
895 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
896 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
897 errors.h globals.h
21423
5db63c2c6929 patch 8.2.1262: src/ex_cmds.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 21054
diff changeset
898 help.obj : help.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
899 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
21423
5db63c2c6929 patch 8.2.1262: src/ex_cmds.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 21054
diff changeset
900 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
901 errors.h globals.h
17389
635d7f5010b8 patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents: 17377
diff changeset
902 highlight.obj : highlight.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
903 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
17389
635d7f5010b8 patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents: 17377
diff changeset
904 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
905 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
906 if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
907 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
908 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
27104
92e0b1f2b72f patch 8.2.4081: CodeQL reports problem in if_cscope causing it to fail
Bram Moolenaar <Bram@vim.org>
parents: 26662
diff changeset
909 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
910 if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
911 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
912 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
913 errors.h globals.h version.h
2441
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
914 if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
915 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
916 regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
917 errors.h globals.h if_mzsch.h
15699
2d941023bd2f patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents: 15634
diff changeset
918 indent.obj : indent.c vim.h [.auto]config.h feature.h os_unix.h
16142
570a296aa0b4 patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents: 16070
diff changeset
919 insexpand.obj : insexpand.c vim.h [.auto]config.h feature.h os_unix.h
7712
bce3b5ddb393 commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents: 6448
diff changeset
920 json.obj : json.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
921 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
922 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
923 list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
924 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
925 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
926 errors.h globals.h
21437
b32b67a108f2 patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents: 21423
diff changeset
927 locale.obj : locale.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
928 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \
21437
b32b67a108f2 patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents: 21423
diff changeset
929 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
930 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
931 main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
932 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
933 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
934 arabic.c
17576
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17536
diff changeset
935 map.obj : map.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
936 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
937 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
938 mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
939 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
940 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
21054
b1fac55cf8a3 patch 8.2.1078: highlight and match functionality together in one file
Bram Moolenaar <Bram@vim.org>
parents: 20637
diff changeset
941 match.obj : match.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
942 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
943 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
944 memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
945 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
946 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
947 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
948 memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
949 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
950 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
951 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
952 menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
953 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
954 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
955 message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
956 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
957 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
958 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
959 misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
960 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
961 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
962 version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
963 misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
964 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
965 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18124
diff changeset
966 mouse.obj : mouse.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
967 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
968 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
969 move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
970 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
971 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
972 mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
973 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
974 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
975 normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
976 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
977 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
27484
ee1019e59bef patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twice
Bram Moolenaar <Bram@vim.org>
parents: 27447
diff changeset
978 errors.h globals.h nv_cmdidxs.h nv_cmds.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
979 ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
980 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
981 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
982 option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
983 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
984 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
985 errors.h globals.h optiondefs.h
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
986 optionstr.obj : optionstr.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
987 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
988 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
989 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
990 os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
991 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
992 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
993 errors.h globals.h os_unixx.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
994 os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
995 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
996 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
997 errors.h globals.h os_unixx.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
998 pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
999 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1000 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1001 errors.h globals.h
18174
1ec6539cef68 patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents: 18172
diff changeset
1002 popupmenu.obj : popupmenu.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1003 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1004 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1005 errors.h globals.h
16778
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16644
diff changeset
1006 popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1007 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
16778
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16644
diff changeset
1008 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1009 errors.h globals.h
17370
ba06a1c42274 patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16778
diff changeset
1010 profiler.obj : profiler.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1011 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
17370
ba06a1c42274 patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16778
diff changeset
1012 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1013 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1014 quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1015 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1016 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1017 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1018 regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1019 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1020 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1021 errors.h globals.h
18164
f57481564f2c patch 8.1.2077: the ops.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1022 register.obj : register.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1023 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
18164
f57481564f2c patch 8.1.2077: the ops.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1024 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1025 errors.h globals.h
17861
0a5c615cd949 patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17779
diff changeset
1026 scriptfile.obj : scriptfile.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1027 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
17861
0a5c615cd949 patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17779
diff changeset
1028 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1029 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1030 screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1031 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1032 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1033 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1034 search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1035 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1036 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1037 errors.h globals.h
17536
e00d12c085a5 patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
1038 session.obj : session.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1039 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
17536
e00d12c085a5 patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
1040 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1041 errors.h globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
1042 sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1043 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1044 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1045 errors.h globals.h
15330
a6330a49e036 patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents: 12871
diff changeset
1046 sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1047 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \
15330
a6330a49e036 patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents: 12871
diff changeset
1048 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1049 errors.h globals.h
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 119
diff changeset
1050 spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1051 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1052 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1053 errors.h globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
1054 spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1055 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1056 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1057 proto.h errors.h globals.h
18172
6e53d83e021d patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
1058 spellsuggest.obj : spellsuggest.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1059 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
18172
6e53d83e021d patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18164
diff changeset
1060 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1061 proto.h errors.h globals.h
25206
dc66d0284518 patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24780
diff changeset
1062 strings.obj : strings.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1063 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
25206
dc66d0284518 patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24780
diff changeset
1064 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
dc66d0284518 patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24780
diff changeset
1065 proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1066 syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1067 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1068 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1069 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1070 tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1071 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1072 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1073 term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1074 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1075 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1076 termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1077 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1078 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
17377
cb008de2a6ec patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17370
diff changeset
1079 testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1080 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1081 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
20237
918245588b50 patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 20209
diff changeset
1082 textformat.obj : textformat.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1083 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1084 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
20209
6ca6a372fef6 patch 8.2.0660: the search.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents: 19920
diff changeset
1085 textobject.obj : textobject.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1086 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1087 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
1088 textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1089 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1090 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
19396
a961efb326e5 patch 8.2.0256: time and timer related code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 19394
diff changeset
1091 time.obj : time.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1092 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1093 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
20587
f502455965c0 patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 20237
diff changeset
1094 typval.obj : typval.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1095 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1096 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1097 ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1098 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1099 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1100 undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1101 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1102 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
16411
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16381
diff changeset
1103 usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1104 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
16411
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16381
diff changeset
1105 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1106 proto.h errors.h globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
1107 userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1108 ascii.h keymap.h termdefs.h macros.h option.h structs.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1109 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1110 proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1111 version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1112 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1113 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1114 errors.h globals.h version.h
17458
cfdef48743ed patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17389
diff changeset
1115 viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1116 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
17458
cfdef48743ed patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17389
diff changeset
1117 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1118 errors.h globals.h version.h
26662
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1119 vim9cmds.obj : vim9cmds.c vim.h [.auto]config.h feature.h os_unix.h \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1120 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1121 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1122 errors.h globals.h version.h
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
1123 vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1124 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
1125 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1126 errors.h globals.h version.h
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
1127 vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1128 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
1129 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1130 errors.h globals.h version.h
26662
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1131 vim9expr.obj : vim9expr.c vim.h [.auto]config.h feature.h os_unix.h \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1132 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1133 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1134 errors.h globals.h version.h
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1135 vim9instr.obj : vim9instr.c vim.h [.auto]config.h feature.h os_unix.h \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1136 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1137 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 26177
diff changeset
1138 errors.h globals.h version.h
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
1139 vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1140 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
19394
4d4c489e8be1 patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
1141 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1142 errors.h globals.h version.h
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1143 vim9type.obj : vim9type.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1144 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1145 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1146 errors.h globals.h version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1147 window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1148 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1149 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1150 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1151 gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1152 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1153 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1154 gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1155 os_unix.h ascii.h keymap.h termdefs.h macros.h structs.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1156 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1157 proto.h errors.h globals.h [-.pixmaps]stock_icons.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1158 gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1159 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1160 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1161 errors.h globals.h gui_gtk_f.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1162 gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1163 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1164 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1165 errors.h globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1166 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1167 gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1168 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1169 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1170 errors.h globals.h gui_at_sb.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1171 gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1172 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1173 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1174 errors.h globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
18884
9a723f1e2d4e patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents: 18853
diff changeset
1175 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1176 gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1177 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1178 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1179 errors.h globals.h [-.runtime]vim32x32.xpm \
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1180 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1181 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1182 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1183 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1184 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1185 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1186 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1187 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1188 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1189 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1190 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1191 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1192 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1193 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1194 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1195 [-.pixmaps]tb_minwidth.xpm
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1196 gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1197 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1198 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1199 errors.h globals.h gui_at_sb.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1200 gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1201 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1202 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1203 errors.h globals.h gui_at_sb.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1204 pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1205 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1206 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1207 if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1208 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1209 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1210 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1211 if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1212 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1213 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1214 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1215 if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1216 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1217 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1218 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1219 if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1220 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1221 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1222 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1223 if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1224 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1225 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1226 errors.h globals.h version.h
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
1227 if_lua.obj : if_lua.c vim.h [.auto]config.h feature.h os_unix.h \
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
1228 errors.h globals.h version.h
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1229 beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1230 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1231 gui.h beval.h option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1232 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1233 gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1234 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1235 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1236 errors.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
1237 netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
26177
13e09dc59f0f patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
1238 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
1239 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
21789
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents: 21437
diff changeset
1240 errors.h globals.h version.h
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
1241 gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
1242 gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
1243 xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
1244 xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
1245 xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
1246 xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
1247 xhistogram.obj : [.xdiff]xhistogram.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
23503
49d866e9b439 patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents: 23408
diff changeset
1248 xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h