Mercurial > vim
annotate src/Make_sas.mak @ 16309:f21de4c36152
Added tag v8.1.1159 for changeset 6400235ca4ad0400059a20ad2c6c255d73bbac58
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 12 Apr 2019 21:30:05 +0200 |
parents | 570a296aa0b4 |
children | 1dcbaa780b8e |
rev | line source |
---|---|
7 | 1 # vim: set ft=make : |
2 # Makefile for VIM on the Amiga, using SAS/Lattice C 6.0 to 6.58 | |
3 # | |
4 # Do NOT use the peephole optimizer with a version before 6.56! | |
5 # It messes up all kinds of things: | |
6 # For 6.0 and 6.1, expand_env() will not work correctly. | |
7 # For 6.2 and 6.3 the call to free_line in u_freeentry is wrong. | |
8 # The "read.me" file for version 6.56 includes a remark about a fix for the | |
9 # peephole optimizer. Everything before 6.56 will probably fail. | |
10 # | |
11 # You should use Manx Aztec C whenever possible, because it has been tested. | |
12 # | |
13 # The prototypes from Manx and SAS are incompatible. If the prototypes | |
14 # were generated by Manx, first do "touch *.c; make proto" before "make". | |
15 # The prototypes generated on Unix work for both. | |
16 # | |
17 # Note: Not all dependencies are included. This was done to avoid having | |
18 # to compile everything when a global variable or function is added. | |
19 | |
20 #>>>>> choose options: | |
21 | |
22 ### See feature.h for a list of optionals. | |
23 ### Any other defines can be included here. | |
24 | |
25 # NO_ARP Don't include ARP functions | |
26 # SASC=658 Sas/C version number | |
27 # NEWSASC fixes a bug in the syntax highlighting? | |
28 DEFINES = DEF=NO_ARP DEF=NEWSASC DEF="SASC=658" | |
29 | |
30 #>>>>> if HAVE_TGETENT is defined termlib.o has to be used | |
31 #TERMLIB = termlib.o | |
32 TERMLIB = | |
33 | |
34 #>>>>> choose NODEBUG for normal compiling, the other for debugging and | |
35 # profiling | |
36 # don't switch on debugging when generating proto files, it crashes the | |
37 # compiler. | |
38 DBG = NODEBUG | |
39 #DBG = DBG=SF | |
40 | |
41 #>>>>> choose NOOPTPEEP for 6.0 to 6.3, NOOPT for debugging | |
42 # with version 6.56 and later you can probably use OPT | |
43 OPTIMIZE = OPT | |
44 #OPTIMIZE = NOOPTPEEP | |
45 #OPTIMIZE = NOOPT | |
46 | |
47 # for 6.58 you can use the line below, but be warned it takes a loooonnnggg time | |
48 #OPTIMIZE=OPT OPTIMIZERSCHEDULER OPTIMIZERTIME NoOPTIMIZERALIAS \ | |
49 OptimizerComplexity=10 OptimizerDepth=10 OptimizerRecurDepth=10 \ | |
50 OptimizerInLocal OPTPEEP | |
51 | |
52 #generate code for your processor - 68060 will work for 040's as well. | |
53 CPU=68000 | |
54 #CPU=68020 | |
55 #CPU=68030 | |
56 #CPU=68040 | |
57 #CPU=68060 | |
58 | |
59 #Error reporting - rexx or console | |
60 ERROR = ERRORCONSOLE ERRORSOURCE ERRORHIGHLIGHT | |
61 #ERROR = ERRORREXX ERRORCONSOLE ERRORSOURCE ERRORHIGHLIGHT | |
62 | |
63 #memory types, if you have fast use it :->, | |
64 # ANY = will work on all machines | |
65 # FAST = this is the best option, for speed | |
66 #MEMORYTYPE=FAST | |
67 MEMORYTYPE=ANY | |
68 | |
69 #MEMSIZE - this is for compile time only for speed of compilation | |
70 #MEMSIZE=HUGE | |
71 MEMSIZE=LARGE | |
72 #MEMSIZE=SMALL | |
73 | |
74 #>>>>> end of choices | |
75 ########################################################################### | |
76 | |
77 CC = sc | |
78 GST = vim.gst | |
79 COPTS = SINT SCODE SDATA | |
80 SHELL = csh | |
81 DEL = $(SHELL) -c rm -f | |
82 | |
83 # ignore error messages for uninitialized variables, they are mostly not correct | |
84 CFLAGS = NOLINK $(DBG) CPU=$(CPU) NOSTACKCHECK DEF=AMIGA CODE=FAR idir=proto ignore=317 | |
85 CFLAGS2 = $(OPTIMIZE) $(ERROR) GSTIMMEDIATE GST=$(GST) | |
86 CFLAGS3 = $(COPTS) STRINGMERGE MEMSIZE=$(MEMSIZE) | |
87 CFLAGS4 = $(DEFINES) DATAMEMORY=$(MEMORYTYPE) | |
88 | |
89 PROPT = DEF=PROTO GPROTO GPPARM MAXIMUMERRORS=999 GENPROTOSTATICS GENPROTOPARAMETERS | |
90 | |
91 SRC = \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
92 arabic.c \ |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
93 autocmd.c \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
94 blowfish.c \ |
7 | 95 buffer.c \ |
96 charset.c \ | |
6126 | 97 crypt.c \ |
98 crypt_zip.c \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
99 dict.c \ |
7 | 100 diff.c \ |
101 digraph.c \ | |
102 edit.c \ | |
103 eval.c \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
104 evalfunc.c \ |
7 | 105 ex_cmds.c \ |
106 ex_cmds2.c \ | |
107 ex_docmd.c \ | |
108 ex_eval.c \ | |
109 ex_getln.c \ | |
110 fileio.c \ | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
111 findfile.c \ |
7 | 112 fold.c \ |
113 getchar.c \ | |
440 | 114 hardcopy.c \ |
799 | 115 hashtab.c \ |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
116 indent.c \ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
117 insexpand.c \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
118 json.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
119 list.c \ |
7 | 120 main.c \ |
121 mark.c \ | |
122 memfile.c \ | |
123 memline.c \ | |
124 menu.c \ | |
125 message.c \ | |
126 misc1.c \ | |
127 misc2.c \ | |
128 move.c \ | |
129 mbyte.c \ | |
130 normal.c \ | |
131 ops.c \ | |
132 option.c \ | |
133 os_amiga.c \ | |
799 | 134 popupmnu.c \ |
7 | 135 quickfix.c \ |
136 regexp.c \ | |
137 screen.c \ | |
138 search.c \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
139 sha256.c \ |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
140 sign.c \ |
221 | 141 spell.c \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
142 spellfile.c \ |
7 | 143 syntax.c \ |
144 tag.c \ | |
145 term.c \ | |
146 ui.c \ | |
147 undo.c \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
148 userfunc.c \ |
7 | 149 window.c \ |
150 version.c | |
151 | |
152 OBJ = \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
153 arabic.o \ |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
154 autocmd.o \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
155 blowfish.o \ |
7 | 156 buffer.o \ |
157 charset.o \ | |
6126 | 158 crypt.o \ |
159 crypt_zip.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
160 dict.o \ |
7 | 161 diff.o \ |
162 digraph.o \ | |
163 edit.o \ | |
164 eval.o \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
165 evalfunc.o \ |
7 | 166 ex_cmds.o \ |
167 ex_cmds2.o \ | |
168 ex_docmd.o \ | |
169 ex_eval.o \ | |
170 ex_getln.o \ | |
171 fileio.o \ | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
172 findfile.o \ |
7 | 173 fold.o \ |
174 getchar.o \ | |
440 | 175 hardcopy.o \ |
799 | 176 hashtab.o \ |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
177 indent.o \ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
178 insexpand.o \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
179 json.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
180 list.o \ |
7 | 181 main.o \ |
182 mark.o \ | |
183 memfile.o \ | |
184 memline.o \ | |
185 menu.o \ | |
186 message.o \ | |
187 misc1.o \ | |
188 misc2.o \ | |
189 move.o \ | |
190 mbyte.o \ | |
191 normal.o \ | |
192 ops.o \ | |
193 option.o \ | |
194 os_amiga.o \ | |
799 | 195 popupmnu.o \ |
7 | 196 quickfix.o \ |
197 regexp.o \ | |
198 screen.o \ | |
199 search.o \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
200 sha256.o \ |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
201 sign.o \ |
221 | 202 spell.o \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
203 spellfile.o \ |
7 | 204 syntax.o \ |
205 tag.o \ | |
206 term.o \ | |
207 ui.o \ | |
208 undo.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
209 userfunc.o \ |
7 | 210 window.o \ |
211 $(TERMLIB) | |
212 | |
213 PRO = \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
214 proto/arabic.pro \ |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
215 proto/autocmd.pro \ |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
216 proto/blowfish.pro \ |
7 | 217 proto/buffer.pro \ |
218 proto/charset.pro \ | |
6126 | 219 proto/crypt.pro \ |
220 proto/crypt_zip.pro \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
221 proto/dict.pro \ |
7 | 222 proto/diff.pro \ |
223 proto/digraph.pro \ | |
224 proto/edit.pro \ | |
225 proto/eval.pro \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
226 proto/evalfunc.pro \ |
7 | 227 proto/ex_cmds.pro \ |
228 proto/ex_cmds2.pro \ | |
229 proto/ex_docmd.pro \ | |
230 proto/ex_eval.pro \ | |
231 proto/ex_getln.pro \ | |
232 proto/fileio.pro \ | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
233 proto/findfile.pro \ |
7 | 234 proto/fold.pro \ |
235 proto/getchar.pro \ | |
440 | 236 proto/hardcopy.pro \ |
799 | 237 proto/hashtab.pro \ |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
238 proto/indent.pro \ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
239 proto/insexpand.pro \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
240 proto/json.pro \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
241 proto/list.pro \ |
7 | 242 proto/main.pro \ |
243 proto/mark.pro \ | |
244 proto/memfile.pro \ | |
245 proto/memline.pro \ | |
246 proto/menu.pro \ | |
247 proto/message.pro \ | |
248 proto/misc1.pro \ | |
249 proto/misc2.pro \ | |
250 proto/move.pro \ | |
251 proto/mbyte.pro \ | |
252 proto/normal.pro \ | |
253 proto/ops.pro \ | |
254 proto/option.pro \ | |
255 proto/os_amiga.pro \ | |
799 | 256 proto/popupmnu.pro \ |
7 | 257 proto/quickfix.pro \ |
258 proto/regexp.pro \ | |
259 proto/screen.pro \ | |
260 proto/search.pro \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
261 proto/sha256.pro \ |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
262 proto/sign.pro \ |
221 | 263 proto/spell.pro \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
264 proto/spellfile.pro \ |
7 | 265 proto/syntax.pro \ |
266 proto/tag.pro \ | |
267 proto/term.pro \ | |
268 proto/termlib.pro \ | |
269 proto/ui.pro \ | |
270 proto/undo.pro \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
271 proto/userfunc.pro \ |
7 | 272 proto/window.pro |
273 | |
274 all: proto Vim | |
275 | |
276 Vim: scoptions $(OBJ) version.c version.h | |
277 $(CC) $(CFLAGS) version.c | |
278 $(CC) LINK $(COPTS) $(OBJ) version.o $(DBG) PNAME=Vim | |
279 | |
280 debug: scoptions $(OBJ) version.c version.h | |
281 $(CC) $(CFLAGS) version.c | |
282 $(CC) LINK $(COPTS) $(OBJ) version.o $(DBG) PNAME=Vim | |
283 | |
284 proto: $(GST) $(PRO) | |
285 | |
286 tags: | |
287 spat ctags $(SRC) *.h | |
288 # csh -c ctags $(SRC) *.h | |
289 | |
290 # can't use delete here, too many file names | |
291 clean: | |
292 $(DEL) *.o Vim $(GST) | |
293 | |
294 # generate GlobalSymbolTable, which speeds up the compile time. | |
295 # | |
4352 | 296 # A preprocessing stage is used to work around a bug in the GST generator, in |
7 | 297 # that it does not handle nested makefiles properly in this stage. |
298 # Ignore error message for not producing any code (105). | |
299 $(GST): scoptions vim.h keymap.h macros.h ascii.h term.h structs.h | |
300 $(CC) $(CFLAGS) PREPROCESSORONLY vim.h objectname pre.h | |
301 $(CC) MGST=$(GST) pre.h ignore=105 | |
302 $(DEL) pre.h | |
303 | |
304 # generate an options file, because SAS/C smake can't handle the amiga command | |
305 # line can handle the lengths that this makefile will impose on the shell. | |
306 # (Manx's make can do this). | |
307 scoptions: Make_sas.mak | |
308 @echo "Generating - $@ ..." | |
309 @echo $(CFLAGS) > scoptions | |
310 @echo $(CFLAGS1) >> scoptions | |
311 @echo $(CFLAGS2) >> scoptions | |
312 @echo $(CFLAGS3) >> scoptions | |
313 @echo $(CFLAGS4) >> scoptions | |
314 @echo $(COPTS) >>scoptions | |
315 @echo done | |
316 | |
317 ########################################################################### | |
318 | |
319 $(OBJ): $(GST) vim.h | |
320 $(PRO): $(GST) vim.h | |
321 | |
322 .c.o: | |
323 $(CC) $(CFLAGS) $*.c | |
324 | |
325 .c.pro: | |
326 $(CC) $(CFLAGS) GPFILE=proto/$*.pro $(PROPT) $*.c | |
327 | |
4352 | 328 # dependencies |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
329 arabic.o: arabic.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
330 proto/arabic.pro: arabic.c |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
331 autocmd.o: autocmd.c |
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
332 proto/autocmd.pro: autocmd.c |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
333 blowfish.o: blowfish.c |
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
334 proto/blowfish.pro: blowfish.c |
7 | 335 buffer.o: buffer.c |
336 proto/buffer.pro: buffer.c | |
337 charset.o: charset.c | |
338 proto/charset.pro: charset.c | |
6126 | 339 crypt.o: crypt.c |
340 proto/crypt.pro: crypt.c | |
341 crypt_zip.o: crypt_zip.c | |
342 proto/crypt_zip.pro: crypt_zip.c | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
343 dict.o: dict.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
344 proto/dict.pro: dict.c |
7 | 345 diff.o: diff.c |
346 proto/diff.pro: diff.c | |
347 digraph.o: digraph.c | |
348 proto/digraph.pro: digraph.c | |
349 edit.o: edit.c | |
350 proto/edit.pro: edit.c | |
351 eval.o: eval.c | |
352 proto/eval.pro: eval.c | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
353 evalfunc.o: evalfunc.c |
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
354 proto/evalfunc.pro: evalfunc.c |
7 | 355 ex_cmds.o: ex_cmds.c |
356 proto/ex_cmds.pro: ex_cmds.c | |
357 ex_cmds2.o: ex_cmds2.c | |
358 proto/ex_cmds2.pro: ex_cmds2.c | |
359 ex_docmd.o: ex_docmd.c ex_cmds.h | |
360 proto/ex_docmd.pro: ex_docmd.c ex_cmds.h | |
361 ex_eval.o: ex_eval.c ex_cmds.h | |
362 proto/ex_eval.pro: ex_eval.c ex_cmds.h | |
363 ex_getln.o: ex_getln.c | |
364 proto/ex_getln.pro: ex_getln.c | |
365 fileio.o: fileio.c | |
366 proto/fileio.pro: fileio.c | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
367 findfile.o: findfile.c |
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
368 proto/findfile.pro: findfile.c |
7 | 369 fold.o: fold.c |
370 proto/fold.pro: fold.c | |
371 getchar.o: getchar.c | |
372 proto/getchar.pro: getchar.c | |
440 | 373 hardcopy.o: hardcopy.c |
374 proto/hardcopy.pro: hardcopy.c | |
799 | 375 hashtab.o: hashtab.c |
376 proto/hashtab.pro: hashtab.c | |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
377 indent.o: indent.c |
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
378 proto/indent.pro: indent.c |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
379 insexpand.o: insexpand.c |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
380 proto/insexpand.pro: insexpand.c |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
381 json.o: json.c |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
382 proto/json.pro: json.c |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
383 list.o: list.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
384 proto/list.pro: list.c |
7 | 385 main.o: main.c |
386 proto/main.pro: main.c | |
387 mark.o: mark.c | |
388 proto/mark.pro: mark.c | |
389 memfile.o: memfile.c | |
390 proto/memfile.pro: memfile.c | |
391 memline.o: memline.c | |
392 proto/memline.pro: memline.c | |
393 menu.o: menu.c | |
394 proto/menu.pro: menu.c | |
395 message.o: message.c | |
396 proto/message.pro: message.c | |
397 misc1.o: misc1.c | |
398 proto/misc1.pro: misc1.c | |
399 misc2.o: misc2.c | |
400 proto/misc2.pro: misc2.c | |
401 move.o: move.c | |
402 proto/move.pro: move.c | |
403 mbyte.o: mbyte.c | |
404 proto/mbyte.pro: mbyte.c | |
405 normal.o: normal.c | |
406 proto/normal.pro: normal.c | |
407 ops.o: ops.c | |
408 proto/ops.pro: ops.c | |
409 option.o: option.c | |
410 proto/option.pro: option.c | |
411 os_amiga.o: os_amiga.c | |
412 proto/os_amiga.pro: os_amiga.c | |
799 | 413 popupmnu.o: popupmnu.c |
414 proto/popupmnu.pro: popupmnu.c | |
7 | 415 quickfix.o: quickfix.c |
416 proto/quickfix.pro: quickfix.c | |
417 regexp.o: regexp.c | |
418 proto/regexp.pro: regexp.c | |
419 screen.o: screen.c | |
420 proto/screen.pro: screen.c | |
421 search.o: search.c | |
422 proto/search.pro: search.c | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
423 sha256.o: sha256.c |
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
424 proto/sha256.pro: sha256.c |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
425 sign.o: sign.c |
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
426 proto/sign.pro: sign.c |
221 | 427 spell.o: spell.c |
428 proto/spell.pro: spell.c | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
429 spellfile.o: spellfile.c |
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
430 proto/spellfile.pro: spellfile.c |
7 | 431 syntax.o: syntax.c |
432 proto/syntax.pro: syntax.c | |
433 tag.o: tag.c | |
434 proto/tag.pro: tag.c | |
435 term.o: term.c | |
436 proto/term.pro: term.c | |
437 termlib.o: termlib.c | |
438 proto/termlib.pro: termlib.c | |
439 ui.o: ui.c | |
440 proto/ui.pro: ui.c | |
441 undo.o: undo.c | |
442 proto/undo.pro: undo.c | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
443 userfunc.o: userfunc.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
444 proto/userfunc.pro: userfunc.c |
7 | 445 window.o: window.c |