annotate src/Make_vms.mms @ 18010:cf8e0c7e0cb9 v8.1.2001

patch 8.1.2001: some source files are too big Commit: https://github.com/vim/vim/commit/261f346f8154c0ec7094a4a211c653c74e9f7c2e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 7 15:45:32 2019 +0200 patch 8.1.2001: some source files are too big Problem: Some source files are too big. Solution: Move buffer and window related functions to evalbuffer.c and evalwindow.c. (Yegappan Lakshmanan, closes #4898)
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 Sep 2019 16:00:03 +0200
parents 46f95606b9ec
children 88b5c2b4e3d2
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>
17966
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
5 # Last change: 2019 Sep 04
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 #
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
7 # This has script been tested on VMS 6.2 to 8.2 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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 # TINY - Almost no features enabled, not even multiple windows
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 # SMALL - Few features enabled, as basic as possible
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 # NORMAL - A default selection of features enabled
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 # BIG - Many features enabled, as rich as possible. (default)
4352
04736b4030ec updated for version 7.3.925
Bram Moolenaar <bram@vim.org>
parents: 2441
diff changeset
34 # HUGE - All possible features enabled.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 # Please select one of these alternatives above.
1709
71eaeb69efe4 updated for version 7.2-007
vimboss
parents: 1431
diff changeset
36 MODEL = HUGE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 # GUI or terminal mode executable.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 # Comment out if you want just the character terminal mode only.
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
40 # GUI with Motif
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
41 GUI = YES
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 # GUI with GTK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 # 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
45 # NOTE: you will need to properly define GTK_DIR below
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
46 # NOTE: since Vim 7.3 GTK 2+ is used that is not ported to VMS,
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
47 # therefore this option should not be used
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 # GTK = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
50 # GUI/Motif with XPM
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
51 # If you have XPM installed you might want to build Motif version with toolbar
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
52 # XPM = YES
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
53
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54 # Comment out if you want the compiler version with :ver command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 # NOTE: This part can make some complications if you're using some
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56 # 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
57 # the comment variable CCVER.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 CCVER = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 # Uncomment if want a debug version. Resulting executable is DVIM.EXE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 # Development purpose only! Normally, it should not be defined. !!!
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
62 # DEBUG = YES
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 # Languages support for Perl, Python, TCL etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 # If you don't need it really, leave them behind the comment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 # You will need related libraries, include files etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 # VIM_TCL = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 # VIM_PERL = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 # VIM_PYTHON = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 # VIM_RUBY = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 # X Input Method. For entering special languages like chinese and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 # Japanese. Please define just one: VIM_XIM or VIM_HANGULIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 # If you don't need it really, leave it behind the comment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 # VIM_XIM = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 # Internal Hangul input method. GUI only.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 # If you don't need it really, leave it behind the comment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 # VIM_HANGULIN = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 # Allow any white space to separate the fields in a tags file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 # When not defined, only a TAB is allowed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 # VIM_TAG_ANYWHITE = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84
2441
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
85 # Allow FEATURE_MZSCHEME
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
86 # VIM_MZSCHEME = YES
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
87
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
88 # Use ICONV
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
89 # VIM_ICONV = YES
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
90
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 # Directory, library and include files configuration section.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 # Normally you need not to change anything below. !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 # These may need to be defined if things are not in standard locations
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 #
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 # You can find some explanation in INSTALLVMS.TXT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 # Compiler setup
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100
1045
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 856
diff changeset
101 .IFDEF MMSVAX
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 .IFDEF DECC # VAX with DECC
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
103 CC_DEF = cc # /decc # some versions require /decc switch but when it is not required /ver might fail
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 PREFIX = /prefix=all
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
105 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
106 .ELSE # VAX with VAXC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 CC_DEF = cc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 PREFIX =
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
109 OPTIMIZE= /noopt
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110 CCVER =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 .ENDIF
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
112 .ELSE # AXP and IA64 with DECC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 CC_DEF = cc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114 PREFIX = /prefix=all
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
115 OPTIMIZE= /opt
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
118
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 LD_DEF = link
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 C_INC = [.proto]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 .IFDEF DEBUG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 DEBUG_DEF = ,"DEBUG"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 TARGET = dvim.exe
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 CFLAGS = /debug/noopt$(PREFIX)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 LDFLAGS = /debug
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 TARGET = vim.exe
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
129 CFLAGS = $(OPTIMIZE)$(PREFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 LDFLAGS =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 # Predefined VIM directories
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 # Please, use $VIM and $VIMRUNTIME logicals instead
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 VIMLOC = ""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 VIMRUN = ""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 CONFIG_H = os_vms_conf.h
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
140 # GTK or XPM but not both
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 .IFDEF GTK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
142 .IFDEF GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144 GUI = YES
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 .ENDIF
826
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 XPM = ""
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
148 .ENDIF
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
149 .ENDIF
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
150
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
151 .IFDEF XPM
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
152 .IFDEF GUI
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
153 .ELSE
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
154 GUI = YES
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
155 .ENDIF
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
156 .IFDEF GTK
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 819
diff changeset
157 GTK = ""
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158 .ENDIF
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
159 .ENDIF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 .IFDEF GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 # X/Motif/GTK executable (also works in terminal mode )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 .IFDEF GTK
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 800
diff changeset
165 # 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
166 # unique on every system - logicals are not accepted
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
167 # 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
168 # 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
169 GTK_DIR = DKA0:[WORK.GTK1210.]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 LIBS = ,OS_VMS_GTK.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
173 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
174 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
175 GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 # GUI_INC_VER is used just for :ver information
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 # this string should escape from C and DCL in the same time
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
179 .ELSE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 MOTIF = YES
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
181 .IFDEF XPM
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
182 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
183 XPM_INC = ,[.xpm.include]
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
184 .ELSE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
186 XPM_INC =
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
187 .ENDIF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 LIBS = ,OS_VMS_MOTIF.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 GUI_FLAG =
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
190 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
191 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
192 GUI_INC =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 # You need to define these variables if you do not have DECW files
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 # at standard location
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 GUI_INC_DIR = ,decw$include:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 # GUI_LIB_DIR = ,sys$library:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 # Character terminal only executable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 DEFS = "HAVE_CONFIG_H"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 LIBS =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 .IFDEF VIM_PERL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 # Perl related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 PERL = perl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 PERL_DEF = ,"FEAT_PERL"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 PERL_SRC = if_perlsfio.c if_perl.xs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 PERL_OBJ = if_perlsfio.obj if_perl.obj
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 PERL_LIB = ,OS_VMS_PERL.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 .IFDEF VIM_PYTHON
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 # Python related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 PYTHON_DEF = ,"FEAT_PYTHON"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 PYTHON_SRC = if_python.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 PYTHON_OBJ = if_python.obj
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 PYTHON_INC = ,PYTHON_INCLUDE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 .IFDEF VIM_TCL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 # TCL related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 TCL_DEF = ,"FEAT_TCL"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 TCL_SRC = if_tcl.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 TCL_OBJ = if_tcl.obj
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 TCL_LIB = ,OS_VMS_TCL.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 TCL_INC = ,dka0:[tcl80.generic]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234 .IFDEF VIM_RUBY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
235 # RUBY related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
236 RUBY_DEF = ,"FEAT_RUBY"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237 RUBY_SRC = if_ruby.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238 RUBY_OBJ = if_ruby.obj
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239 RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
240 RUBY_INC =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243 .IFDEF VIM_XIM
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
244 # XIM related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245 .IFDEF GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246 XIM_DEF = ,"FEAT_XIM"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
247 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
248 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 .IFDEF VIM_HANGULIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 # HANGULIN related setup.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 .IFDEF GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 HANGULIN_DEF = ,"FEAT_HANGULIN"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 HANGULIN_SRC = hangulin.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 HANGULIN_OBJ = hangulin.obj
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258
2441
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
259 .IFDEF VIM_MZSCHEME
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
260 # MZSCHEME related setup
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
261 MZSCH_DEF = ,"FEAT_MZSCHEME"
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
262 MZSCH_SRC = if_mzsch.c
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
263 MZSCH_OBJ = if_mzsch.obj
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
264 .ENDIF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
266 .IFDEF VIM_ICONV
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
267 # ICONV related setup
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
268 ICONV_DEF = ,"USE_ICONV"
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
269 .ENDIF
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
270
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
271 # XDIFF related setup.
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
272 XDIFF_SRC = xdiffi.c,xemit.c,xprepare.c,xutils.c,xhistogram.c,xpatience.c
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
273 XDIFF_OBJ = xdiffi.obj,xemit.obj,xprepare.obj,xutils.obj,xhistogram.obj,xpatience.obj
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
274 XDIFF_INC = ,[.xdiff]
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
275
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277 # End of configuration section.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
278 # Please, do not change anything below without programming experience.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 ######################################################################
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
281 MODEL_DEF = "FEAT_$(MODEL)",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 # These go into pathdef.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284 VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 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
286
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287 .SUFFIXES : .obj .c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
289 ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
290 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) -
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
291 $(ICONV_DEF)) -
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 $(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
293 /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
294 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 # CFLAGS displayed in :ver information
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 # It is specially formated for correct display of unix like includes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 # as $(GUI_INC) - replaced with $(GUI_INC_VER)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 # Otherwise should not be any other difference.
5704
47a673b20e49 updated for version 7.4.197
Bram Moolenaar <bram@vim.org>
parents: 4352
diff changeset
300 ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
301 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) -
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
302 $(ICONV_DEF)) -
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 $(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
304 /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
305 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
306
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
8281
74b15ed0a259 commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents: 7712
diff changeset
308 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309
17744
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
310 SRC = arabic.c arglist.c autocmd.c beval.c blob.c blowfish.c buffer.c \
17779
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
311 change.c charset.c cmdexpand.c cmdhist.c crypt.c crypt_zip.c \
18010
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
312 debugger.c dict.c diff.c digraph.c edit.c eval.c evalbuffer.c \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
313 evalfunc.c \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
314 evalvars.c evalwindow.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
315 ex_getln.c \
17966
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
316 if_cscope.c if_xcmdsrv.c fileio.c filepath.c, findfile.c fold.c \
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
317 getchar.c hardcopy.c hashtab.c highlight.c \
17779
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
318 indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \
17744
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
319 memfile.c memline.c message.c misc1.c misc2.c move.c normal.c ops.c \
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
320 option.c popupmnu.c popupwin.c profiler.c quickfix.c regexp.c \
17861
0a5c615cd949 patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17779
diff changeset
321 scriptfile.c \
17744
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
322 search.c session.c sha256.c sign.c spell.c spellfile.c syntax.c tag.c \
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
323 term.c termlib.c testing.c textprop.c ui.c undo.c usercmd.c \
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
324 userfunc.c version.c viminfo.c screen.c window.c os_unix.c os_vms.c \
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
325 pathdef.c \
8281
74b15ed0a259 commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents: 7712
diff changeset
326 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
327 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
328
17744
4a3dca734d36 patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
329 OBJ = arabic.obj arglist.obj autocmd.obj beval.obj blob.obj blowfish.obj \
17779
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
330 buffer.obj change.obj charset.obj cmdexpand.obj cmdhist.obj \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
331 crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj digraph.obj \
18010
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
332 edit.obj eval.obj evalbuffer.obj evalfunc.obj evalvars.obj \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
333 evalwindow.obj ex_cmds.obj ex_cmds2.obj \
17966
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
334 ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
335 fileio.obj filepath.obj \
17779
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
336 findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
337 highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
338 map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
339 misc1.obj misc2.obj move.obj mbyte.obj normal.obj ops.obj option.obj \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
340 popupmnu.obj popupwin.obj profiler.obj quickfix.obj regexp.obj \
17861
0a5c615cd949 patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17779
diff changeset
341 scriptfile.obj \
17779
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
342 search.obj session.obj sha256.obj sign.obj spell.obj spellfile.obj \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
343 syntax.obj tag.obj term.obj termlib.obj testing.obj textprop.obj \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
344 ui.obj undo.obj usercmd.obj userfunc.obj screen.obj version.obj \
17536
e00d12c085a5 patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
345 viminfo.obj window.obj os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \
8281
74b15ed0a259 commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents: 7712
diff changeset
346 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
347 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
348
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349 # Default target is making the executable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
350 all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 ! $@
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
353 [.auto]config.h : $(CONFIG_H)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354 copy/nolog $(CONFIG_H) [.auto]config.h
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356 mmk_compat :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
357 -@ open/write pd pathdef.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358 -@ write pd "/* Empty file to satisfy MMK depend. */"
1221
dc65bb5de20e updated for version 7.1b
vimboss
parents: 1045
diff changeset
359 -@ write pd "/* It will be overwritten later on... */"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 -@ close pd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
361 clean :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 # Link the target
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 $(TARGET) : $(OBJ)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 .c.obj :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374 $(CC_DEF) $(ALL_CFLAGS) $<
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
375
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 pathdef.c : check_ccver $(CONFIG_H)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 -@ write sys$output "creating PATHDEF.C file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
378 -@ open/write pd pathdef.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
379 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 -@ write pd "typedef unsigned char char_u;"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
385 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
388 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
1045
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 856
diff changeset
389 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
7f01e52cc97a updated for version 7.0-171
vimboss
parents: 856
diff changeset
390 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
391 -@ close pd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
393 if_perl.c : if_perl.xs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
394 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
395 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
396
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
397 make_vms.mms :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
398 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400 .IFDEF CCVER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
401 # This part can make some complications if you're using some predefined
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
402 # symbols/flags for your compiler. If does, just comment out CCVER variable
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403 check_ccver :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404 -@ define sys$output cc_ver.tmp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405 -@ $(CC_DEF)/version
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
406 -@ deassign sys$output
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
407 -@ open/read file cc_ver.tmp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408 -@ read file CC_VER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409 -@ close file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
410 -@ delete/noconfirm/nolog cc_ver.tmp.*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
411 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
412 check_ccver :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
413 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
414 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
415
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
416 .IFDEF MOTIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
417 motif_env :
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
418 .IFDEF XPM
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
419 -@ write sys$output "using DECW/Motif/XPM environment."
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
420 .ELSE
856
8cd729851562 updated for version 7.0g
vimboss
parents: 826
diff changeset
421 -@ write sys$output "using DECW/Motif environment."
414
8ab9c77240d4 updated for version 7.0108
vimboss
parents: 221
diff changeset
422 .ENDIF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
423 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
424 -@ open/write opt_file OS_VMS_MOTIF.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
425 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
426 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
427 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
428 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
430 motif_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
431 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
432 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
433
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
434
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
435 .IFDEF GTK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
436 gtk_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
437 -@ write sys$output "using GTK environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
438 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 -@ show logical gtk_root
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 -@ write sys$output " include path: "$(GUI_INC)""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 -@ write sys$output "creating OS_VMS_GTK.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 -@ open/write opt_file OS_VMS_GTK.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
447 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
448 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
449 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
450 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
452 gtk_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
453 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456 .IFDEF VIM_PERL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
457 perl_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
458 -@ write sys$output "using PERL environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459 -@ show logical PERLSHR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
460 -@ write sys$output " include path: ""$(PERL_INC)"""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 -@ show symbol perl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 -@ open/write pd if_perl.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 -@ write pd "/* Empty file to satisfy MMK depend. */"
1221
dc65bb5de20e updated for version 7.1b
vimboss
parents: 1045
diff changeset
464 -@ write pd "/* It will be overwritten later on... */"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
465 -@ close pd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
466 -@ write sys$output "creating OS_VMS_PERL.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 -@ open/write opt_file OS_VMS_PERL.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468 -@ write opt_file "PERLSHR /share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
471 perl_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
474
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
475 .IFDEF VIM_PYTHON
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
476 python_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
477 -@ write sys$output "using PYTHON environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478 -@ show logical PYTHON_INCLUDE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
479 -@ show logical PYTHON_OLB
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
480 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 -@ open/write opt_file OS_VMS_PYTHON.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
482 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
483 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
484 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
485 python_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
486 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
487 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
488
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
489 .IFDEF VIM_TCL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
490 tcl_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
491 -@ write sys$output "using TCL environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
492 -@ show logical TCLSHR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493 -@ write sys$output " include path: ""$(TCL_INC)"""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
494 -@ write sys$output "creating OS_VMS_TCL.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
495 -@ open/write opt_file OS_VMS_TCL.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
496 -@ write opt_file "TCLSHR /share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
497 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
498 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
499 tcl_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
500 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
501 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
502
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
503 .IFDEF VIM_RUBY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
504 ruby_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
505 -@ write sys$output "using RUBY environment:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 -@ write sys$output " include path: ""$(RUBY_INC)"""
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
507 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 -@ open/write opt_file OS_VMS_RUBY.OPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509 -@ write opt_file "RUBYSHR /share"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
510 -@ close opt_file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
511 .ELSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
512 ruby_env :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
513 -@ !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
514 .ENDIF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
515
9408
6814811b90d5 commit https://github.com/vim/vim/commit/3b98b830017b8bf5fd270db93dfe187434df1960
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
516 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
517 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
518 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
519 blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h
08604d82fc9e patch 8.1.0774: VMS build is missing the blob file
Bram Moolenaar <Bram@vim.org>
parents: 15517
diff changeset
520 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
521 buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
522 ascii.h keymap.h term.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
523 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
524 globals.h version.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
525 change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \
30de89c1d090 patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents: 16411
diff changeset
526 ascii.h keymap.h term.h macros.h structs.h regexp.h \
30de89c1d090 patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents: 16411
diff changeset
527 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
30de89c1d090 patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents: 16411
diff changeset
528 globals.h version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
529 charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
530 ascii.h keymap.h term.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
531 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
532 globals.h
17779
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
533 cmdexpand.obj : cmdexpand.c vim.h [.auto]config.h feature.h os_unix.h \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
534 ascii.h keymap.h term.h macros.h structs.h regexp.h \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
535 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17744
diff changeset
536 globals.h
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17576
diff changeset
537 cmdhist.obj : cmdhist.c vim.h [.auto]config.h feature.h os_unix.h \
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17576
diff changeset
538 ascii.h keymap.h term.h macros.h structs.h regexp.h \
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17576
diff changeset
539 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17576
diff changeset
540 globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
541 crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
542 ascii.h keymap.h term.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
543 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
544 globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
545 crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
546 ascii.h keymap.h term.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
547 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
548 proto.h globals.h
16381
1dcbaa780b8e patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
549 debugger.obj : debugger.c vim.h [.auto]config.h feature.h os_unix.h \
1dcbaa780b8e patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
550 ascii.h keymap.h term.h macros.h structs.h regexp.h \
1dcbaa780b8e patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
551 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1dcbaa780b8e patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
552 globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
553 dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
554 ascii.h keymap.h term.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
555 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
556 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
557 diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.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
558 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
559 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
560
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
561 digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
562 ascii.h keymap.h term.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
563 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
564 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
565 edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.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
566 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
567 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
568
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
569 eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.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
570 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
571 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
572 version.h
18010
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
573 evalbuffer.obj : evalbuffer.c vim.h [.auto]config.h feature.h os_unix.h \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
574 ascii.h keymap.h term.h macros.h option.h structs.h \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
575 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
576 proto.h globals.h version.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
577 evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
578 ascii.h keymap.h term.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
579 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
580 proto.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
581 evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \
d50a5faa75bd patch 8.1.1933: the eval.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17861
diff changeset
582 ascii.h keymap.h term.h macros.h option.h structs.h \
d50a5faa75bd patch 8.1.1933: the eval.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17861
diff changeset
583 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
d50a5faa75bd patch 8.1.1933: the eval.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17861
diff changeset
584 proto.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
585 evalwindow.obj : evalwindow.c vim.h [.auto]config.h feature.h os_unix.h \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
586 ascii.h keymap.h term.h macros.h option.h structs.h \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
587 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
cf8e0c7e0cb9 patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
588 proto.h globals.h version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
589 ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
590 ascii.h keymap.h term.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
591 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
592 globals.h version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
593 ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
594 ascii.h keymap.h term.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
595 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
596 globals.h version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
597 ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
598 ascii.h keymap.h term.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
599 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
600 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
601 ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
602 ascii.h keymap.h term.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
603 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
604 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
605 ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
606 ascii.h keymap.h term.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
607 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
608 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
609 fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
610 ascii.h keymap.h term.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
611 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
612 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
613 filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
614 ascii.h keymap.h term.h macros.h structs.h regexp.h \
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
615 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
46f95606b9ec patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17873
diff changeset
616 globals.h
15814
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
617 findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
618 ascii.h keymap.h term.h macros.h structs.h regexp.h \
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
619 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
620 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
621 fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.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
622 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
623 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
624
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
625 getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
626 ascii.h keymap.h term.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
627 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
628 globals.h
440
eb531146be0e updated for version 7.0114
vimboss
parents: 414
diff changeset
629 hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
eb531146be0e updated for version 7.0114
vimboss
parents: 414
diff changeset
630 ascii.h keymap.h term.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
631 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
632 globals.h
800
d8f905020502 updated for version 7.0b
vimboss
parents: 683
diff changeset
633 hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
119
e8f07016e34d updated for version 7.0042
vimboss
parents: 39
diff changeset
634 ascii.h keymap.h term.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
635 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
636 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
637 highlight.obj : highlight.c vim.h [.auto]config.h feature.h os_unix.h \
635d7f5010b8 patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents: 17377
diff changeset
638 ascii.h keymap.h term.h macros.h structs.h regexp.h \
635d7f5010b8 patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents: 17377
diff changeset
639 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
635d7f5010b8 patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents: 17377
diff changeset
640 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
641 if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
642 ascii.h keymap.h term.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
643 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
644 globals.h if_cscope.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
645 if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
646 ascii.h keymap.h term.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
647 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
648 globals.h version.h
2441
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
649 if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \
620a42739426 Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents: 2428
diff changeset
650 ascii.h keymap.h term.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
651 regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
652 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
653 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
654 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
655 json.obj : json.c vim.h [.auto]config.h feature.h os_unix.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
656 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
657 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
658 version.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
659 list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
660 ascii.h keymap.h term.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
661 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
662 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
663 main.obj : main.c vim.h [.auto]config.h feature.h os_unix.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
664 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
665 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
666 arabic.c
17576
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17536
diff changeset
667 map.obj : map.c vim.h [.auto]config.h feature.h os_unix.h \
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17536
diff changeset
668 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
97a750e8707f patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents: 17536
diff changeset
669 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
670 mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.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
671 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
672 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
673
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
674 memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
675 ascii.h keymap.h term.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
676 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
677 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
678 memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
679 ascii.h keymap.h term.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
680 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
681 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
682 menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.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
683 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
684 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
685
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
686 message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
687 ascii.h keymap.h term.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
688 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
689 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
690 misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.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
691 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
692 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
693 version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
694 misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.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
695 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
696 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
697
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
698 move.obj : move.c vim.h [.auto]config.h feature.h os_unix.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
699 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
700 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
701
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
702 mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.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
703 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
704 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
705
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
706 normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
707 ascii.h keymap.h term.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
708 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
709 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
710 ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.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
711 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
712 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
713
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
714 option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
715 ascii.h keymap.h term.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
716 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
717 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
718 os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
719 ascii.h keymap.h term.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
720 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
721 globals.h os_unixx.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
722 os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
723 ascii.h keymap.h term.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
724 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
725 globals.h os_unixx.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
726 pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
727 ascii.h keymap.h term.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
728 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
729 globals.h
800
d8f905020502 updated for version 7.0b
vimboss
parents: 683
diff changeset
730 popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
683
a39b8af64334 updated for version 7.0205
vimboss
parents: 440
diff changeset
731 ascii.h keymap.h term.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
732 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
733 globals.h
16778
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16644
diff changeset
734 popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16644
diff changeset
735 ascii.h keymap.h term.h macros.h structs.h regexp.h \
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16644
diff changeset
736 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16644
diff changeset
737 globals.h
17370
ba06a1c42274 patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16778
diff changeset
738 profiler.obj : profiler.c vim.h [.auto]config.h feature.h os_unix.h \
ba06a1c42274 patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16778
diff changeset
739 ascii.h keymap.h term.h macros.h structs.h regexp.h \
ba06a1c42274 patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16778
diff changeset
740 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
ba06a1c42274 patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16778
diff changeset
741 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
742 quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
743 ascii.h keymap.h term.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
744 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
745 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
746 regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
747 ascii.h keymap.h term.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
748 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
749 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
750 scriptfile.obj : scriptfile.c vim.h [.auto]config.h feature.h os_unix.h \
0a5c615cd949 patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17779
diff changeset
751 ascii.h keymap.h term.h macros.h structs.h regexp.h \
0a5c615cd949 patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17779
diff changeset
752 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
0a5c615cd949 patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17779
diff changeset
753 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
754 screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
755 ascii.h keymap.h term.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
756 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
757 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
758 search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
759 ascii.h keymap.h term.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
760 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
761 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
762 session.obj : session.c vim.h [.auto]config.h feature.h os_unix.h \
e00d12c085a5 patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
763 ascii.h keymap.h term.h macros.h structs.h regexp.h \
e00d12c085a5 patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
764 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
e00d12c085a5 patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
765 globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
766 sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
767 ascii.h keymap.h term.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
768 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
769 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
770 sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \
a6330a49e036 patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents: 12871
diff changeset
771 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
a6330a49e036 patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents: 12871
diff changeset
772 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
773 globals.h
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 119
diff changeset
774 spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
7fd4b5df33be updated for version 7.0062
vimboss
parents: 119
diff changeset
775 ascii.h keymap.h term.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
776 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
777 globals.h
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
778 spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
779 ascii.h keymap.h term.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
780 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
781 proto.h globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
782 syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
783 ascii.h keymap.h term.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
784 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
785 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
786 tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.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
787 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
788 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
789
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
790 term.obj : term.c vim.h [.auto]config.h feature.h os_unix.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
791 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
792 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
793
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
794 termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.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
795 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
796 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
797
17377
cb008de2a6ec patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17370
diff changeset
798 testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \
cb008de2a6ec patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17370
diff changeset
799 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
cb008de2a6ec patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17370
diff changeset
800 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
cb008de2a6ec patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 17370
diff changeset
801
15517
2ad5f0ffaa2e patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
802 textprop.obj : textprop.c vim.h [.auto]config.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
803 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
804 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
805
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
806 ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.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
807 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
808 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
809
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
810 undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.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
811 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
812 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
813
16411
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16381
diff changeset
814 usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16381
diff changeset
815 ascii.h keymap.h term.h macros.h option.h structs.h \
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16381
diff changeset
816 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16381
diff changeset
817 proto.h globals.h
5b5c5daf57de patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents: 16381
diff changeset
818
10328
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
819 userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \
299f1669c20e commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents: 9408
diff changeset
820 ascii.h keymap.h term.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
821 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
822 proto.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
823
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
824 version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
825 ascii.h keymap.h term.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
826 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
827 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
828 viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \
cfdef48743ed patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17389
diff changeset
829 ascii.h keymap.h term.h macros.h structs.h regexp.h \
cfdef48743ed patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17389
diff changeset
830 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
cfdef48743ed patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17389
diff changeset
831 globals.h version.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
832 window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
833 ascii.h keymap.h term.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
834 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
835 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
836 gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.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
837 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
838 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
839
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
840 gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
841 os_unix.h ascii.h keymap.h term.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
842 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
843 proto.h globals.h [-.pixmaps]stock_icons.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
844 gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
845 ascii.h keymap.h term.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 \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
847 globals.h gui_gtk_f.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
848 gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
849 ascii.h keymap.h term.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 \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
851 globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
852 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
853 gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
854 ascii.h keymap.h term.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
855 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
856 globals.h gui_at_sb.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
857 gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
858 ascii.h keymap.h term.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
859 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
860 globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
861 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
862 gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
863 ascii.h keymap.h term.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
864 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
865 globals.h [-.runtime]vim32x32.xpm \
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
866 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
867 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
868 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
869 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
870 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
871 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
872 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
873 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
874 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
875 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
876 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
877 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
878 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
879 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
880 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
881 [-.pixmaps]tb_minwidth.xpm
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
882 gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
883 ascii.h keymap.h term.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 \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
885 globals.h gui_at_sb.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
886 gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
887 ascii.h keymap.h term.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
888 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
889 globals.h gui_at_sb.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
890 pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.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
891 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
15850
a6ca8cf07a98 patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
892 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
893
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
894 hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
895 ascii.h keymap.h term.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 \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
897 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
898 if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
899 ascii.h keymap.h term.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
900 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
901 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
902 if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
903 ascii.h keymap.h term.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
904 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
905 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
906 if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
907 ascii.h keymap.h term.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 \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
909 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
910 if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
911 ascii.h keymap.h term.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 \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
913 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
914 if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
915 ascii.h keymap.h term.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
916 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
917 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
918 beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
919 ascii.h keymap.h term.h macros.h structs.h regexp.h \
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 10328
diff changeset
920 gui.h beval.h option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
921 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
922 gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
923 ascii.h keymap.h term.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
924 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
925 globals.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
926 workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
927 os_unix.h ascii.h keymap.h term.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
928 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
929 proto.h globals.h version.h workshop.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
930 wsdebug.obj : wsdebug.c
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
931 integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
932 ascii.h keymap.h term.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
933 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
934 globals.h integration.h
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
935 netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
410fa1a31baf updated for version 7.0023
vimboss
parents: 7
diff changeset
936 ascii.h keymap.h term.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
937 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
16068
8c160339de22 patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
938 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
939 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
940 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
941 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
942 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
943 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
944 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
945 xhistogram.obj : [.xdiff]xhistogram.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
946 xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h