Mercurial > vim
annotate src/Make_sas.mak @ 14019:dc67449d648c v8.1.0027
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
commit https://github.com/vim/vim/commit/f273245f6433d5d43a5671306b520a3230c35787
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 3 14:47:35 2018 +0200
patch 8.1.0027: difficult to make a plugin that feeds a line to a job
Problem: Difficult to make a plugin that feeds a line to a job.
Solution: Add the nitial code for the "prompt" buftype.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 03 Jun 2018 15:00:07 +0200 |
parents | b0c7061d6439 |
children | a6330a49e036 |
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 \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
93 blowfish.c \ |
7 | 94 buffer.c \ |
95 charset.c \ | |
6126 | 96 crypt.c \ |
97 crypt_zip.c \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
98 dict.c \ |
7 | 99 diff.c \ |
100 digraph.c \ | |
101 edit.c \ | |
102 eval.c \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
103 evalfunc.c \ |
7 | 104 ex_cmds.c \ |
105 ex_cmds2.c \ | |
106 ex_docmd.c \ | |
107 ex_eval.c \ | |
108 ex_getln.c \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
109 farsi.c \ |
7 | 110 fileio.c \ |
111 fold.c \ | |
112 getchar.c \ | |
440 | 113 hardcopy.c \ |
799 | 114 hashtab.c \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
115 json.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
116 list.c \ |
7 | 117 main.c \ |
118 mark.c \ | |
119 memfile.c \ | |
120 memline.c \ | |
121 menu.c \ | |
122 message.c \ | |
123 misc1.c \ | |
124 misc2.c \ | |
125 move.c \ | |
126 mbyte.c \ | |
127 normal.c \ | |
128 ops.c \ | |
129 option.c \ | |
130 os_amiga.c \ | |
799 | 131 popupmnu.c \ |
7 | 132 quickfix.c \ |
133 regexp.c \ | |
134 screen.c \ | |
135 search.c \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
136 sha256.c \ |
221 | 137 spell.c \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
138 spellfile.c \ |
7 | 139 syntax.c \ |
140 tag.c \ | |
141 term.c \ | |
142 ui.c \ | |
143 undo.c \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
144 userfunc.c \ |
7 | 145 window.c \ |
146 version.c | |
147 | |
148 OBJ = \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
149 arabic.o \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
150 blowfish.o \ |
7 | 151 buffer.o \ |
152 charset.o \ | |
6126 | 153 crypt.o \ |
154 crypt_zip.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
155 dict.o \ |
7 | 156 diff.o \ |
157 digraph.o \ | |
158 edit.o \ | |
159 eval.o \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
160 evalfunc.o \ |
7 | 161 ex_cmds.o \ |
162 ex_cmds2.o \ | |
163 ex_docmd.o \ | |
164 ex_eval.o \ | |
165 ex_getln.o \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
166 farsi.o \ |
7 | 167 fileio.o \ |
168 fold.o \ | |
169 getchar.o \ | |
440 | 170 hardcopy.o \ |
799 | 171 hashtab.o \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
172 json.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
173 list.o \ |
7 | 174 main.o \ |
175 mark.o \ | |
176 memfile.o \ | |
177 memline.o \ | |
178 menu.o \ | |
179 message.o \ | |
180 misc1.o \ | |
181 misc2.o \ | |
182 move.o \ | |
183 mbyte.o \ | |
184 normal.o \ | |
185 ops.o \ | |
186 option.o \ | |
187 os_amiga.o \ | |
799 | 188 popupmnu.o \ |
7 | 189 quickfix.o \ |
190 regexp.o \ | |
191 screen.o \ | |
192 search.o \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
193 sha256.o \ |
221 | 194 spell.o \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
195 spellfile.o \ |
7 | 196 syntax.o \ |
197 tag.o \ | |
198 term.o \ | |
199 ui.o \ | |
200 undo.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
201 userfunc.o \ |
7 | 202 window.o \ |
203 $(TERMLIB) | |
204 | |
205 PRO = \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
206 proto/arabic.pro \ |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
207 proto/blowfish.pro \ |
7 | 208 proto/buffer.pro \ |
209 proto/charset.pro \ | |
6126 | 210 proto/crypt.pro \ |
211 proto/crypt_zip.pro \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
212 proto/dict.pro \ |
7 | 213 proto/diff.pro \ |
214 proto/digraph.pro \ | |
215 proto/edit.pro \ | |
216 proto/eval.pro \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
217 proto/evalfunc.pro \ |
7 | 218 proto/ex_cmds.pro \ |
219 proto/ex_cmds2.pro \ | |
220 proto/ex_docmd.pro \ | |
221 proto/ex_eval.pro \ | |
222 proto/ex_getln.pro \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
223 proto/farsi.pro \ |
7 | 224 proto/fileio.pro \ |
225 proto/fold.pro \ | |
226 proto/getchar.pro \ | |
440 | 227 proto/hardcopy.pro \ |
799 | 228 proto/hashtab.pro \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
229 proto/json.pro \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
230 proto/list.pro \ |
7 | 231 proto/main.pro \ |
232 proto/mark.pro \ | |
233 proto/memfile.pro \ | |
234 proto/memline.pro \ | |
235 proto/menu.pro \ | |
236 proto/message.pro \ | |
237 proto/misc1.pro \ | |
238 proto/misc2.pro \ | |
239 proto/move.pro \ | |
240 proto/mbyte.pro \ | |
241 proto/normal.pro \ | |
242 proto/ops.pro \ | |
243 proto/option.pro \ | |
244 proto/os_amiga.pro \ | |
799 | 245 proto/popupmnu.pro \ |
7 | 246 proto/quickfix.pro \ |
247 proto/regexp.pro \ | |
248 proto/screen.pro \ | |
249 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
|
250 proto/sha256.pro \ |
221 | 251 proto/spell.pro \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
252 proto/spellfile.pro \ |
7 | 253 proto/syntax.pro \ |
254 proto/tag.pro \ | |
255 proto/term.pro \ | |
256 proto/termlib.pro \ | |
257 proto/ui.pro \ | |
258 proto/undo.pro \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
259 proto/userfunc.pro \ |
7 | 260 proto/window.pro |
261 | |
262 all: proto Vim | |
263 | |
264 Vim: scoptions $(OBJ) version.c version.h | |
265 $(CC) $(CFLAGS) version.c | |
266 $(CC) LINK $(COPTS) $(OBJ) version.o $(DBG) PNAME=Vim | |
267 | |
268 debug: scoptions $(OBJ) version.c version.h | |
269 $(CC) $(CFLAGS) version.c | |
270 $(CC) LINK $(COPTS) $(OBJ) version.o $(DBG) PNAME=Vim | |
271 | |
272 proto: $(GST) $(PRO) | |
273 | |
274 tags: | |
275 spat ctags $(SRC) *.h | |
276 # csh -c ctags $(SRC) *.h | |
277 | |
278 # can't use delete here, too many file names | |
279 clean: | |
280 $(DEL) *.o Vim $(GST) | |
281 | |
282 # generate GlobalSymbolTable, which speeds up the compile time. | |
283 # | |
4352 | 284 # A preprocessing stage is used to work around a bug in the GST generator, in |
7 | 285 # that it does not handle nested makefiles properly in this stage. |
286 # Ignore error message for not producing any code (105). | |
287 $(GST): scoptions vim.h keymap.h macros.h ascii.h term.h structs.h | |
288 $(CC) $(CFLAGS) PREPROCESSORONLY vim.h objectname pre.h | |
289 $(CC) MGST=$(GST) pre.h ignore=105 | |
290 $(DEL) pre.h | |
291 | |
292 # generate an options file, because SAS/C smake can't handle the amiga command | |
293 # line can handle the lengths that this makefile will impose on the shell. | |
294 # (Manx's make can do this). | |
295 scoptions: Make_sas.mak | |
296 @echo "Generating - $@ ..." | |
297 @echo $(CFLAGS) > scoptions | |
298 @echo $(CFLAGS1) >> scoptions | |
299 @echo $(CFLAGS2) >> scoptions | |
300 @echo $(CFLAGS3) >> scoptions | |
301 @echo $(CFLAGS4) >> scoptions | |
302 @echo $(COPTS) >>scoptions | |
303 @echo done | |
304 | |
305 ########################################################################### | |
306 | |
307 $(OBJ): $(GST) vim.h | |
308 $(PRO): $(GST) vim.h | |
309 | |
310 .c.o: | |
311 $(CC) $(CFLAGS) $*.c | |
312 | |
313 .c.pro: | |
314 $(CC) $(CFLAGS) GPFILE=proto/$*.pro $(PROPT) $*.c | |
315 | |
4352 | 316 # dependencies |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
317 arabic.o: arabic.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
318 proto/arabic.pro: arabic.c |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
319 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
|
320 proto/blowfish.pro: blowfish.c |
7 | 321 buffer.o: buffer.c |
322 proto/buffer.pro: buffer.c | |
323 charset.o: charset.c | |
324 proto/charset.pro: charset.c | |
6126 | 325 crypt.o: crypt.c |
326 proto/crypt.pro: crypt.c | |
327 crypt_zip.o: crypt_zip.c | |
328 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
|
329 dict.o: dict.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
330 proto/dict.pro: dict.c |
7 | 331 diff.o: diff.c |
332 proto/diff.pro: diff.c | |
333 digraph.o: digraph.c | |
334 proto/digraph.pro: digraph.c | |
335 edit.o: edit.c | |
336 proto/edit.pro: edit.c | |
337 eval.o: eval.c | |
338 proto/eval.pro: eval.c | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
339 evalfunc.o: evalfunc.c |
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
340 proto/evalfunc.pro: evalfunc.c |
7 | 341 ex_cmds.o: ex_cmds.c |
342 proto/ex_cmds.pro: ex_cmds.c | |
343 ex_cmds2.o: ex_cmds2.c | |
344 proto/ex_cmds2.pro: ex_cmds2.c | |
345 ex_docmd.o: ex_docmd.c ex_cmds.h | |
346 proto/ex_docmd.pro: ex_docmd.c ex_cmds.h | |
347 ex_eval.o: ex_eval.c ex_cmds.h | |
348 proto/ex_eval.pro: ex_eval.c ex_cmds.h | |
349 ex_getln.o: ex_getln.c | |
350 proto/ex_getln.pro: ex_getln.c | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
351 farsi.o: farsi.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
352 proto/farsi.pro: farsi.c |
7 | 353 fileio.o: fileio.c |
354 proto/fileio.pro: fileio.c | |
355 fold.o: fold.c | |
356 proto/fold.pro: fold.c | |
357 getchar.o: getchar.c | |
358 proto/getchar.pro: getchar.c | |
440 | 359 hardcopy.o: hardcopy.c |
360 proto/hardcopy.pro: hardcopy.c | |
799 | 361 hashtab.o: hashtab.c |
362 proto/hashtab.pro: hashtab.c | |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
363 json.o: json.c |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
364 proto/json.pro: json.c |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
365 list.o: list.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
366 proto/list.pro: list.c |
7 | 367 main.o: main.c |
368 proto/main.pro: main.c | |
369 mark.o: mark.c | |
370 proto/mark.pro: mark.c | |
371 memfile.o: memfile.c | |
372 proto/memfile.pro: memfile.c | |
373 memline.o: memline.c | |
374 proto/memline.pro: memline.c | |
375 menu.o: menu.c | |
376 proto/menu.pro: menu.c | |
377 message.o: message.c | |
378 proto/message.pro: message.c | |
379 misc1.o: misc1.c | |
380 proto/misc1.pro: misc1.c | |
381 misc2.o: misc2.c | |
382 proto/misc2.pro: misc2.c | |
383 move.o: move.c | |
384 proto/move.pro: move.c | |
385 mbyte.o: mbyte.c | |
386 proto/mbyte.pro: mbyte.c | |
387 normal.o: normal.c | |
388 proto/normal.pro: normal.c | |
389 ops.o: ops.c | |
390 proto/ops.pro: ops.c | |
391 option.o: option.c | |
392 proto/option.pro: option.c | |
393 os_amiga.o: os_amiga.c | |
394 proto/os_amiga.pro: os_amiga.c | |
799 | 395 popupmnu.o: popupmnu.c |
396 proto/popupmnu.pro: popupmnu.c | |
7 | 397 quickfix.o: quickfix.c |
398 proto/quickfix.pro: quickfix.c | |
399 regexp.o: regexp.c | |
400 proto/regexp.pro: regexp.c | |
401 screen.o: screen.c | |
402 proto/screen.pro: screen.c | |
403 search.o: search.c | |
404 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
|
405 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
|
406 proto/sha256.pro: sha256.c |
221 | 407 spell.o: spell.c |
408 proto/spell.pro: spell.c | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
409 spellfile.o: spellfile.c |
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
410 proto/spellfile.pro: spellfile.c |
7 | 411 syntax.o: syntax.c |
412 proto/syntax.pro: syntax.c | |
413 tag.o: tag.c | |
414 proto/tag.pro: tag.c | |
415 term.o: term.c | |
416 proto/term.pro: term.c | |
417 termlib.o: termlib.c | |
418 proto/termlib.pro: termlib.c | |
419 ui.o: ui.c | |
420 proto/ui.pro: ui.c | |
421 undo.o: undo.c | |
422 proto/undo.pro: undo.c | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
423 userfunc.o: userfunc.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
424 proto/userfunc.pro: userfunc.c |
7 | 425 window.o: window.c |