Mercurial > vim
annotate Filelist @ 6183:fca35aa9380a v7.4.427
updated for version 7.4.427
Problem: When an InsertCharPre autocommand executes system() typeahead may
be echoed and messes up the display. (Jacob Niehus)
Solution: Do not set cooked mode when invoked from ":silent".
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Fri, 29 Aug 2014 15:53:52 +0200 |
parents | 7ab9a9cf2859 |
children | 112c80234ce3 |
rev | line source |
---|---|
7 | 1 # List of distributed Vim files. |
2 # Used by Makefile and upload.aap. | |
3 | |
4 # source files for all source archives | |
574 | 5 SRC_ALL = \ |
5889 | 6 .hgignore \ |
7 | 7 src/README.txt \ |
8 src/arabic.c \ | |
9 src/arabic.h \ | |
10 src/ascii.h \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2160
diff
changeset
|
11 src/blowfish.c \ |
7 | 12 src/buffer.c \ |
13 src/charset.c \ | |
6124 | 14 src/crypt.c \ |
15 src/crypt_zip.c \ | |
7 | 16 src/diff.c \ |
17 src/digraph.c \ | |
18 src/edit.c \ | |
19 src/eval.c \ | |
20 src/ex_cmds.c \ | |
21 src/ex_cmds.h \ | |
22 src/ex_cmds2.c \ | |
23 src/ex_docmd.c \ | |
24 src/ex_eval.c \ | |
25 src/ex_getln.c \ | |
26 src/farsi.c \ | |
27 src/farsi.h \ | |
28 src/feature.h \ | |
29 src/fileio.c \ | |
30 src/fold.c \ | |
31 src/getchar.c \ | |
32 src/globals.h \ | |
33 src/gui.c \ | |
34 src/gui.h \ | |
35 src/gui_beval.c \ | |
36 src/gui_beval.h \ | |
442 | 37 src/hardcopy.c \ |
800 | 38 src/hashtab.c \ |
7 | 39 src/keymap.h \ |
40 src/macros.h \ | |
41 src/main.c \ | |
42 src/mark.c \ | |
43 src/mbyte.c \ | |
44 src/memfile.c \ | |
2730 | 45 src/memfile_test.c \ |
7 | 46 src/memline.c \ |
47 src/menu.c \ | |
48 src/message.c \ | |
49 src/misc1.c \ | |
50 src/misc2.c \ | |
51 src/move.c \ | |
52 src/mysign \ | |
53 src/nbdebug.c \ | |
54 src/nbdebug.h \ | |
55 src/netbeans.c \ | |
56 src/normal.c \ | |
57 src/ops.c \ | |
58 src/option.c \ | |
59 src/option.h \ | |
800 | 60 src/popupmnu.c \ |
7 | 61 src/quickfix.c \ |
62 src/regexp.c \ | |
4444 | 63 src/regexp_nfa.c \ |
7 | 64 src/regexp.h \ |
65 src/screen.c \ | |
66 src/search.c \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2160
diff
changeset
|
67 src/sha256.c \ |
7 | 68 src/structs.h \ |
224 | 69 src/spell.c \ |
7 | 70 src/syntax.c \ |
71 src/tag.c \ | |
72 src/term.c \ | |
73 src/term.h \ | |
74 src/termlib.c \ | |
75 src/ui.c \ | |
76 src/undo.c \ | |
77 src/version.c \ | |
78 src/version.h \ | |
79 src/vim.h \ | |
4174 | 80 src/winclip.c \ |
7 | 81 src/window.c \ |
82 src/xxd/xxd.c \ | |
83 src/main.aap \ | |
84 src/testdir/main.aap \ | |
6181 | 85 src/testdir/README.txt \ |
7 | 86 src/testdir/*.in \ |
5619 | 87 src/testdir/sautest/autoload/*.vim \ |
140 | 88 src/testdir/test[0-9]*.ok \ |
5812 | 89 src/testdir/test[0-9]*a.ok \ |
90 src/testdir/test_[a-z]*.ok \ | |
7 | 91 src/testdir/test49.vim \ |
625 | 92 src/testdir/test60.vim \ |
3137 | 93 src/testdir/test83-tags? \ |
5812 | 94 src/testdir/test77a.com \ |
5850 | 95 src/testdir/test_*.vim \ |
4839
d59ff2114733
updated for version 7.3.1166
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
96 src/testdir/python2/*.py \ |
d59ff2114733
updated for version 7.3.1166
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
97 src/testdir/python3/*.py \ |
d59ff2114733
updated for version 7.3.1166
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
98 src/testdir/pythonx/*.py \ |
4993
c87476046967
updated for version 7.3.1241
Bram Moolenaar <bram@vim.org>
parents:
4851
diff
changeset
|
99 src/testdir/pythonx/topmodule/__init__.py \ |
c87476046967
updated for version 7.3.1241
Bram Moolenaar <bram@vim.org>
parents:
4851
diff
changeset
|
100 src/testdir/pythonx/topmodule/submodule/__init__.py \ |
c87476046967
updated for version 7.3.1241
Bram Moolenaar <bram@vim.org>
parents:
4851
diff
changeset
|
101 src/testdir/pythonx/topmodule/submodule/subsubmodule/__init__.py \ |
c87476046967
updated for version 7.3.1241
Bram Moolenaar <bram@vim.org>
parents:
4851
diff
changeset
|
102 src/testdir/pythonx/topmodule/submodule/subsubmodule/subsubsubmodule.py \ |
4851
96e154e825a7
updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents:
4839
diff
changeset
|
103 src/testdir/python_after/*.py \ |
96e154e825a7
updated for version 7.3.1172
Bram Moolenaar <bram@vim.org>
parents:
4839
diff
changeset
|
104 src/testdir/python_before/*.py \ |
7 | 105 src/proto.h \ |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2160
diff
changeset
|
106 src/proto/blowfish.pro \ |
7 | 107 src/proto/buffer.pro \ |
108 src/proto/charset.pro \ | |
6124 | 109 src/proto/crypt.pro \ |
110 src/proto/crypt_zip.pro \ | |
7 | 111 src/proto/diff.pro \ |
112 src/proto/digraph.pro \ | |
113 src/proto/edit.pro \ | |
114 src/proto/eval.pro \ | |
115 src/proto/ex_cmds.pro \ | |
116 src/proto/ex_cmds2.pro \ | |
117 src/proto/ex_docmd.pro \ | |
118 src/proto/ex_eval.pro \ | |
119 src/proto/ex_getln.pro \ | |
120 src/proto/fileio.pro \ | |
121 src/proto/fold.pro \ | |
122 src/proto/getchar.pro \ | |
123 src/proto/gui.pro \ | |
124 src/proto/gui_beval.pro \ | |
442 | 125 src/proto/hardcopy.pro \ |
800 | 126 src/proto/hashtab.pro \ |
7 | 127 src/proto/main.pro \ |
128 src/proto/mark.pro \ | |
129 src/proto/mbyte.pro \ | |
130 src/proto/memfile.pro \ | |
131 src/proto/memline.pro \ | |
132 src/proto/menu.pro \ | |
133 src/proto/message.pro \ | |
134 src/proto/misc1.pro \ | |
135 src/proto/misc2.pro \ | |
136 src/proto/move.pro \ | |
137 src/proto/netbeans.pro \ | |
138 src/proto/normal.pro \ | |
139 src/proto/ops.pro \ | |
140 src/proto/option.pro \ | |
800 | 141 src/proto/popupmnu.pro \ |
7 | 142 src/proto/quickfix.pro \ |
143 src/proto/regexp.pro \ | |
144 src/proto/screen.pro \ | |
145 src/proto/search.pro \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
2160
diff
changeset
|
146 src/proto/sha256.pro \ |
224 | 147 src/proto/spell.pro \ |
7 | 148 src/proto/syntax.pro \ |
149 src/proto/tag.pro \ | |
150 src/proto/term.pro \ | |
151 src/proto/termlib.pro \ | |
152 src/proto/ui.pro \ | |
153 src/proto/undo.pro \ | |
154 src/proto/version.pro \ | |
4174 | 155 src/proto/winclip.pro \ |
7 | 156 src/proto/window.pro \ |
157 | |
158 | |
159 # source files for Unix only | |
160 SRC_UNIX = \ | |
161 Makefile \ | |
162 Filelist \ | |
163 README_src.txt \ | |
164 configure \ | |
165 pixmaps/*.xpm \ | |
166 pixmaps/gen-inline-pixbufs.sh \ | |
167 pixmaps/stock_icons.h \ | |
168 src/INSTALL \ | |
1648 | 169 src/INSTALLx.txt \ |
7 | 170 src/Makefile \ |
171 src/auto/configure \ | |
172 src/config.aap.in \ | |
173 src/config.h.in \ | |
174 src/config.mk.dist \ | |
175 src/config.mk.in \ | |
176 src/configure \ | |
177 src/configure.in \ | |
178 src/gui_at_fs.c \ | |
179 src/gui_at_sb.c \ | |
180 src/gui_at_sb.h \ | |
181 src/gui_athena.c \ | |
182 src/gui_gtk.c \ | |
183 src/gui_gtk_f.c \ | |
184 src/gui_gtk_f.h \ | |
185 src/gui_gtk_x11.c \ | |
186 src/gui_motif.c \ | |
45 | 187 src/gui_xmdlg.c \ |
50 | 188 src/gui_xmebw.c \ |
189 src/gui_xmebw.h \ | |
190 src/gui_xmebwp.h \ | |
7 | 191 src/gui_x11.c \ |
50 | 192 src/gui_x11_pm.h \ |
7 | 193 src/hangulin.c \ |
194 src/if_xcmdsrv.c \ | |
195 src/integration.c \ | |
196 src/integration.h \ | |
197 src/link.sh \ | |
40 | 198 src/installman.sh \ |
199 src/installml.sh \ | |
7 | 200 src/mkinstalldirs \ |
201 src/os_unix.c \ | |
202 src/os_unix.h \ | |
203 src/os_unixx.h \ | |
204 src/osdef.sh \ | |
205 src/osdef1.h.in \ | |
206 src/osdef2.h.in \ | |
207 src/pathdef.sh \ | |
208 src/proto/gui_athena.pro \ | |
209 src/proto/gui_gtk.pro \ | |
210 src/proto/gui_gtk_x11.pro \ | |
211 src/proto/gui_motif.pro \ | |
45 | 212 src/proto/gui_xmdlg.pro \ |
7 | 213 src/proto/gui_x11.pro \ |
214 src/proto/hangulin.pro \ | |
215 src/proto/if_xcmdsrv.pro \ | |
216 src/proto/os_unix.pro \ | |
217 src/proto/pty.pro \ | |
218 src/proto/workshop.pro \ | |
219 src/pty.c \ | |
220 src/testdir/Makefile \ | |
221 src/testdir/unix.vim \ | |
222 src/toolcheck \ | |
223 src/vim_icon.xbm \ | |
224 src/vim_mask.xbm \ | |
225 src/vimtutor \ | |
1585 | 226 src/gvimtutor \ |
7 | 227 src/which.sh \ |
228 src/workshop.c \ | |
229 src/workshop.h \ | |
230 src/wsdebug.c \ | |
231 src/wsdebug.h \ | |
232 src/xxd/Makefile \ | |
233 | |
234 # source files for both DOS and Unix | |
235 SRC_DOS_UNIX = \ | |
236 src/if_cscope.c \ | |
237 src/if_cscope.h \ | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
238 src/if_lua.c \ |
14 | 239 src/if_mzsch.c \ |
240 src/if_mzsch.h \ | |
7 | 241 src/if_perl.xs \ |
242 src/if_perlsfio.c \ | |
243 src/if_python.c \ | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
244 src/if_python3.c \ |
2399
76f0c4918f5c
Move some common code from if_python.c and if_python3.c to if_py_both.h.
Bram Moolenaar <bram@vim.org>
parents:
2329
diff
changeset
|
245 src/if_py_both.h \ |
7 | 246 src/if_ruby.c \ |
574 | 247 src/if_sniff.h \ |
7 | 248 src/if_tcl.c \ |
249 src/proto/if_cscope.pro \ | |
2320
966a5609669e
Added Lua interfae. (Luis Carvalho)
Bram Moolenaar <bram@vim.org>
parents:
2309
diff
changeset
|
250 src/proto/if_lua.pro \ |
14 | 251 src/proto/if_mzsch.pro \ |
7 | 252 src/proto/if_perl.pro \ |
253 src/proto/if_perlsfio.pro \ | |
254 src/proto/if_python.pro \ | |
2329
ad2889f48843
Added support for Python 3. (Roland Puntaier)
Bram Moolenaar <bram@vim.org>
parents:
2320
diff
changeset
|
255 src/proto/if_python3.pro \ |
7 | 256 src/proto/if_ruby.pro \ |
257 src/proto/if_tcl.pro \ | |
258 src/typemap \ | |
259 | |
260 # source files for DOS (also in the extra archive) | |
261 SRC_DOS = \ | |
10 | 262 src/GvimExt/*.mak \ |
263 src/GvimExt/GvimExt.reg \ | |
264 src/GvimExt/Makefile \ | |
265 src/GvimExt/README.txt \ | |
266 src/GvimExt/gvimext.cpp \ | |
267 src/GvimExt/gvimext.def \ | |
268 src/GvimExt/gvimext.h \ | |
269 src/GvimExt/gvimext.inf \ | |
270 src/GvimExt/gvimext.rc \ | |
271 src/GvimExt/gvimext_ming.def \ | |
272 src/GvimExt/gvimext_ming.rc \ | |
273 src/GvimExt/resource.h \ | |
274 src/GvimExt/uninst.bat \ | |
7 | 275 README_srcdos.txt \ |
276 src/INSTALLpc.txt \ | |
277 src/Make_bc3.mak \ | |
278 src/Make_bc5.mak \ | |
279 src/Make_cyg.mak \ | |
280 src/Make_djg.mak \ | |
281 src/Make_ivc.mak \ | |
282 src/Make_dvc.mak \ | |
283 src/Make_ming.mak \ | |
284 src/Make_mvc.mak \ | |
285 src/Make_w16.mak \ | |
286 src/bigvim.bat \ | |
3845 | 287 src/bigvim64.bat \ |
714 | 288 src/msvcsetup.bat \ |
1648 | 289 src/msvc2008.bat \ |
2871 | 290 src/msvc2010.bat \ |
7 | 291 src/dimm.idl \ |
292 src/dlldata.c \ | |
293 src/dosinst.c \ | |
294 src/dosinst.h \ | |
295 src/glbl_ime.cpp \ | |
296 src/glbl_ime.h \ | |
6124 | 297 src/gui_dwrite.cpp \ |
298 src/gui_dwrite.h \ | |
7 | 299 src/gui_w16.c \ |
300 src/gui_w32.c \ | |
301 src/gui_w48.c \ | |
302 src/guiw16rc.h \ | |
303 src/gui_w32_rc.h \ | |
304 src/if_ole.cpp \ | |
305 src/if_ole.h \ | |
306 src/if_ole.idl \ | |
307 src/iid_ole.c \ | |
308 src/os_dos.h \ | |
309 src/os_msdos.c \ | |
310 src/os_msdos.h \ | |
311 src/os_w32dll.c \ | |
312 src/os_w32exe.c \ | |
313 src/os_win16.c \ | |
314 src/os_win32.c \ | |
315 src/os_mswin.c \ | |
316 src/os_win16.h \ | |
317 src/os_win32.h \ | |
318 src/proto/gui_w16.pro \ | |
319 src/proto/gui_w32.pro \ | |
320 src/proto/if_ole.pro \ | |
321 src/proto/os_msdos.pro \ | |
322 src/proto/os_win16.pro \ | |
323 src/proto/os_win32.pro \ | |
324 src/proto/os_mswin.pro \ | |
325 src/testdir/Make_dos.mak \ | |
1724 | 326 src/testdir/Make_ming.mak \ |
7 | 327 src/testdir/dos.vim \ |
328 src/uninstal.c \ | |
329 src/vim.def \ | |
330 src/vim.rc \ | |
714 | 331 src/vimio.h \ |
7 | 332 src/gvim.exe.mnf \ |
333 src/vim16.def \ | |
334 src/vim16.rc \ | |
335 src/vimrun.c \ | |
336 src/vimtbar.h \ | |
337 src/xpm_w32.c \ | |
338 src/xpm_w32.h \ | |
339 src/xxd/Make_bc3.mak \ | |
340 src/xxd/Make_bc5.mak \ | |
341 src/xxd/Make_cyg.mak \ | |
342 src/xxd/Make_djg.mak \ | |
3110 | 343 src/xxd/Make_ming.mak \ |
7 | 344 src/xxd/Make_mvc.mak \ |
345 nsis/gvim.nsi \ | |
346 nsis/README.txt \ | |
347 uninstal.txt \ | |
348 src/VisVim/Commands.cpp \ | |
349 src/VisVim/Commands.h \ | |
350 src/VisVim/DSAddIn.cpp \ | |
351 src/VisVim/DSAddIn.h \ | |
352 src/VisVim/OleAut.cpp \ | |
353 src/VisVim/OleAut.h \ | |
354 src/VisVim/README_VisVim.txt \ | |
355 src/VisVim/Reg.cpp \ | |
356 src/VisVim/Register.bat \ | |
357 src/VisVim/Resource.h \ | |
358 src/VisVim/StdAfx.cpp \ | |
359 src/VisVim/StdAfx.h \ | |
360 src/VisVim/UnRegist.bat \ | |
361 src/VisVim/VisVim.cpp \ | |
362 src/VisVim/VisVim.def \ | |
363 src/VisVim/VisVim.mak \ | |
364 src/VisVim/VisVim.h \ | |
365 src/VisVim/VisVim.odl \ | |
366 src/VisVim/VisVim.rc \ | |
367 src/VisVim/VsReadMe.txt \ | |
368 | |
369 # source files for DOS without CR/LF translation (also in the extra archive) | |
370 SRC_DOS_BIN = \ | |
179 | 371 src/VisVim/Res/*.bmp \ |
7 | 372 src/tearoff.bmp \ |
373 src/tools.bmp \ | |
374 src/tools16.bmp \ | |
375 src/vim*.ico \ | |
376 src/vim.tlb \ | |
377 src/vimtbar.lib \ | |
3762 | 378 src/xpm/COPYRIGHT \ |
379 src/xpm/README.txt \ | |
380 src/xpm/include/*.h \ | |
3845 | 381 src/xpm/x64/lib/libXpm.a \ |
3762 | 382 src/xpm/x64/lib/libXpm.lib \ |
383 src/xpm/x86/lib/libXpm.a \ | |
384 src/xpm/x86/lib/libXpm.lib \ | |
7 | 385 src/vimtbar.dll \ |
805 | 386 nsis/icons/*.bmp \ |
387 nsis/icons/*.ico \ | |
7 | 388 |
389 # source files for Amiga, DOS, etc. (also in the extra archive) | |
390 SRC_AMI_DOS = \ | |
391 | |
392 # source files for Amiga (also in the extra archive) | |
393 SRC_AMI = \ | |
394 README_amisrc.txt \ | |
395 README_amisrc.txt.info \ | |
396 src.info \ | |
397 src/INSTALLami.txt \ | |
398 src/Make_dice.mak \ | |
399 src/Make_manx.mak \ | |
400 src/Make_morph.mak \ | |
401 src/Make_sas.mak \ | |
402 src/os_amiga.c \ | |
403 src/os_amiga.h \ | |
404 src/proto/os_amiga.pro \ | |
405 src/testdir/Make_amiga.mak \ | |
406 src/testdir/amiga.vim \ | |
407 src/xxd/Make_amiga.mak \ | |
408 | |
409 # source files for the Mac (also in the extra archive) | |
410 SRC_MAC = \ | |
411 src/INSTALLmac.txt \ | |
412 src/dehqx.py \ | |
413 src/gui_mac.c \ | |
819 | 414 src/os_mac_rsrc/*.icns \ |
18 | 415 src/os_mac.h \ |
416 src/os_mac.rsr.hqx \ | |
417 src/os_mac_conv.c \ | |
2309
543ea69d037f
Add clipboard support in Mac console. (Bjorn Winckler)
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
418 src/os_macosx.m \ |
7 | 419 src/proto/gui_mac.pro \ |
501 | 420 src/proto/os_mac_conv.pro \ |
7 | 421 |
422 # source files for VMS (in the extra archive) | |
423 SRC_VMS = \ | |
424 src/INSTALLvms.txt \ | |
425 src/Make_vms.mms \ | |
426 src/gui_gtk_vms.h \ | |
427 src/os_vms.c \ | |
428 src/os_vms_conf.h \ | |
429 src/os_vms_mms.c \ | |
430 src/proto/os_vms.pro \ | |
431 src/testdir/Make_vms.mms \ | |
432 src/testdir/vms.vim \ | |
433 src/xxd/Make_vms.mms \ | |
434 vimtutor.com \ | |
435 | |
436 # source files for OS/2 (in the extra archive) | |
437 SRC_OS2 = \ | |
438 src/Make_os2.mak \ | |
439 src/os_os2_cfg.h \ | |
440 src/testdir/Make_os2.mak \ | |
441 src/testdir/todos.vim \ | |
442 src/testdir/os2.vim \ | |
443 src/xxd/Make_os2.mak \ | |
444 | |
445 # source files for QNX (in the extra archive) | |
446 SRC_QNX = \ | |
447 src/os_qnx.c \ | |
448 src/os_qnx.h \ | |
449 src/gui_photon.c \ | |
450 src/proto/gui_photon.pro \ | |
451 src/proto/os_qnx.pro \ | |
452 | |
453 | |
454 # source files for the extra archive (all sources that are not for Unix) | |
455 SRC_EXTRA = \ | |
456 $(SRC_AMI) \ | |
457 $(SRC_AMI_DOS) \ | |
458 $(SRC_DOS) \ | |
459 $(SRC_DOS_BIN) \ | |
460 $(SRC_MAC) \ | |
461 $(SRC_OS2) \ | |
462 $(SRC_QNX) \ | |
463 $(SRC_VMS) \ | |
464 README_os390.txt \ | |
465 src/Make_mint.mak \ | |
466 src/if_sniff.c \ | |
467 src/infplist.xml \ | |
468 src/link.390 \ | |
469 src/os_beos.c \ | |
470 src/os_beos.h \ | |
471 src/os_beos.rsrc \ | |
4174 | 472 src/proto/os_beos.pro \ |
7 | 473 src/os_mint.h \ |
474 src/os_vms_fix.com \ | |
475 src/toolbar.phi \ | |
476 | |
477 # runtime files for all distributions | |
478 RT_ALL = \ | |
479 README.txt \ | |
480 runtime/bugreport.vim \ | |
481 runtime/doc/*.awk \ | |
482 runtime/doc/*.pl \ | |
483 runtime/doc/*.txt \ | |
484 runtime/doc/Makefile \ | |
485 runtime/doc/doctags.c \ | |
486 runtime/doc/vim.1 \ | |
487 runtime/doc/evim.1 \ | |
488 runtime/doc/vimdiff.1 \ | |
489 runtime/doc/vimtutor.1 \ | |
490 runtime/doc/xxd.1 \ | |
491 runtime/ftoff.vim \ | |
492 runtime/gvimrc_example.vim \ | |
493 runtime/macros/README.txt \ | |
494 runtime/macros/dvorak \ | |
590 | 495 runtime/macros/editexisting.vim \ |
7 | 496 runtime/macros/hanoi/click.me \ |
497 runtime/macros/hanoi/hanoi.vim \ | |
498 runtime/macros/hanoi/poster \ | |
499 runtime/macros/justify.vim \ | |
3685 | 500 runtime/macros/less.bat \ |
7 | 501 runtime/macros/less.sh \ |
502 runtime/macros/less.vim \ | |
503 runtime/macros/life/click.me \ | |
504 runtime/macros/life/life.vim \ | |
505 runtime/macros/matchit.vim \ | |
506 runtime/macros/matchit.txt \ | |
507 runtime/macros/maze/README.txt \ | |
508 runtime/macros/maze/[mM]akefile \ | |
509 runtime/macros/maze/main.aap \ | |
510 runtime/macros/maze/maze.c \ | |
511 runtime/macros/maze/maze_5.78 \ | |
512 runtime/macros/maze/maze_mac \ | |
513 runtime/macros/maze/mazeansi.c \ | |
514 runtime/macros/maze/mazeclean.c \ | |
515 runtime/macros/maze/poster \ | |
516 runtime/macros/shellmenu.vim \ | |
517 runtime/macros/swapmous.vim \ | |
518 runtime/macros/urm/README.txt \ | |
519 runtime/macros/urm/examples \ | |
520 runtime/macros/urm/urm \ | |
521 runtime/macros/urm/urm.vim \ | |
522 runtime/mswin.vim \ | |
523 runtime/evim.vim \ | |
524 runtime/optwin.vim \ | |
525 runtime/ftplugin.vim \ | |
526 runtime/ftplugof.vim \ | |
527 runtime/indent.vim \ | |
528 runtime/indoff.vim \ | |
529 runtime/termcap \ | |
530 runtime/tools/README.txt \ | |
531 runtime/tools/[a-z]*[a-z0-9] \ | |
532 runtime/tutor/README.txt \ | |
533 runtime/tutor/tutor \ | |
534 runtime/tutor/tutor.vim \ | |
535 runtime/vimrc_example.vim \ | |
536 | |
537 # runtime files for all distributions without CR-NL translation | |
538 RT_ALL_BIN = \ | |
539 runtime/doc/tags \ | |
540 runtime/print/*.ps \ | |
541 | |
542 # runtime script files | |
543 RT_SCRIPTS = \ | |
544 runtime/filetype.vim \ | |
545 runtime/scripts.vim \ | |
546 runtime/menu.vim \ | |
719 | 547 runtime/macmap.vim \ |
7 | 548 runtime/delmenu.vim \ |
549 runtime/synmenu.vim \ | |
550 runtime/makemenu.vim \ | |
446 | 551 runtime/autoload/*.vim \ |
552 runtime/autoload/README.txt \ | |
827 | 553 runtime/autoload/xml/*.vim \ |
7 | 554 runtime/colors/*.vim \ |
555 runtime/colors/README.txt \ | |
556 runtime/compiler/*.vim \ | |
557 runtime/compiler/README.txt \ | |
558 runtime/indent/*.vim \ | |
559 runtime/indent/README.txt \ | |
560 runtime/ftplugin/*.vim \ | |
1668 | 561 runtime/ftplugin/logtalk.dict \ |
7 | 562 runtime/ftplugin/README.txt \ |
563 runtime/plugin/*.vim \ | |
564 runtime/plugin/README.txt \ | |
565 runtime/syntax/*.vim \ | |
566 runtime/syntax/README.txt \ | |
567 | |
568 # Unix runtime | |
569 RT_UNIX = \ | |
570 README_unix.txt \ | |
11 | 571 runtime/hi16-action-make.png \ |
572 runtime/hi22-action-make.png \ | |
7 | 573 runtime/vim16x16.png \ |
574 runtime/vim16x16.xpm \ | |
575 runtime/vim32x32.png \ | |
576 runtime/vim32x32.xpm \ | |
577 runtime/vim48x48.png \ | |
578 runtime/vim48x48.xpm \ | |
579 | |
580 # Unix and DOS runtime without CR-LF translation | |
581 RT_UNIX_DOS_BIN = \ | |
582 runtime/vim16x16.gif \ | |
583 runtime/vim32x32.gif \ | |
584 runtime/vim48x48.gif \ | |
585 | |
586 # runtime not for unix or extra | |
587 RT_NO_UNIX = \ | |
588 | |
589 # runtime for Amiga (also in the extra archive) | |
590 RT_AMI_DOS = \ | |
591 runtime/doc/vim.man \ | |
592 runtime/doc/vimdiff.man \ | |
593 runtime/doc/vimtutor.man \ | |
594 runtime/doc/xxd.man \ | |
595 | |
596 # DOS runtime (also in the extra archive) | |
597 RT_DOS = \ | |
598 README_dos.txt \ | |
599 runtime/rgb.txt \ | |
600 vimtutor.bat \ | |
601 | |
602 # DOS runtime without CR-LF translation (also in the extra archive) | |
603 RT_DOS_BIN = \ | |
604 runtime/vimlogo.cdr \ | |
605 runtime/vimlogo.eps \ | |
606 runtime/vimlogo.gif \ | |
607 runtime/vimlogo.pdf \ | |
608 | |
609 # Amiga runtime (also in the extra archive) | |
610 RT_AMI = \ | |
611 README.txt.info \ | |
612 README_ami.txt \ | |
613 README_ami.txt.info \ | |
614 libs/arp.library \ | |
615 runtime/doc.info \ | |
616 runtime/doc/*.info \ | |
1181 | 617 runtime/icons/README.txt \ |
618 runtime/icons/*.info \ | |
7 | 619 runtime/icons.info \ |
620 runtime/macros.info \ | |
621 runtime/macros/*.info \ | |
622 runtime/macros/hanoi/*.info \ | |
623 runtime/macros/life/*.info \ | |
624 runtime/macros/maze/*.info \ | |
625 runtime/macros/urm/*.info \ | |
626 runtime/tools.info \ | |
627 runtime/tutor.info \ | |
628 runtime/tutor/*.info \ | |
629 | |
630 # runtime files in extra archive | |
631 RT_EXTRA = \ | |
632 $(RT_AMI) \ | |
633 $(RT_AMI_DOS) \ | |
634 $(RT_DOS) \ | |
635 $(RT_DOS_BIN) \ | |
636 README_mac.txt \ | |
637 | |
638 # included in all Amiga archives | |
639 ROOT_AMI = \ | |
640 Contents \ | |
641 Contents.info \ | |
642 runtime.info \ | |
643 vimdir.info \ | |
644 | |
645 # root files for the extra archive | |
646 ROOT_EXTRA = \ | |
647 $(ROOT_AMI) \ | |
648 | |
649 # files for Amiga small binary (also in extra archive) | |
650 BIN_AMI = \ | |
651 README_amibin.txt \ | |
652 README_amibin.txt.info \ | |
653 Vim.info \ | |
654 Xxd.info \ | |
655 | |
656 # files for DOS binary (also in extra archive) | |
657 BIN_DOS = \ | |
658 README_bindos.txt \ | |
659 uninstal.txt \ | |
660 | |
661 # files for Win32 OLE binary (also in extra archive) | |
662 BIN_OLE = \ | |
663 README_ole.txt \ | |
664 | |
665 # files for Win32s binary (also in extra archive) | |
666 BIN_W32S = \ | |
667 README_w32s.txt \ | |
668 | |
669 # files for VMS binary (also in extra archive) | |
670 BIN_VMS = \ | |
671 README_vms.txt \ | |
672 | |
673 # files for OS/2 binary (also in extra archive) | |
674 BIN_OS2 = \ | |
675 README_os2.txt \ | |
676 | |
677 # binary files for extra archive | |
678 BIN_EXTRA = \ | |
679 $(BIN_AMI) \ | |
680 $(BIN_DOS) \ | |
681 $(BIN_OLE) \ | |
682 $(BIN_W32S) \ | |
683 $(BIN_VMS) \ | |
684 $(BIN_OS2) \ | |
685 | |
686 # all files for extra archive | |
687 EXTRA = \ | |
688 $(BIN_EXTRA) \ | |
689 $(ROOT_EXTRA) \ | |
690 $(RT_EXTRA) \ | |
691 $(SRC_EXTRA) \ | |
692 README_extra.txt \ | |
693 src/VisVim/VisVim.dll \ | |
1181 | 694 farsi/README.txt \ |
1217 | 695 farsi/fonts/*/far-* \ |
7 | 696 runtime/vimlogo.xpm \ |
697 src/swis.s \ | |
2160
c1d31f774a03
Get rid of the "extra" and "lang" archives.
Bram Moolenaar <bram@vim.org>
parents:
2044
diff
changeset
|
698 src/tee/Makefile \ |
7 | 699 src/tee/tee.c \ |
700 csdpmi4b.zip \ | |
701 | |
702 # generic language files | |
703 LANG_GEN = \ | |
3685 | 704 runtime/doc/*-de.1 \ |
705 runtime/doc/*-de.UTF-8.1 \ | |
237 | 706 runtime/doc/*-fr.1 \ |
707 runtime/doc/*-fr.UTF-8.1 \ | |
40 | 708 runtime/doc/*-it.1 \ |
221 | 709 runtime/doc/*-it.UTF-8.1 \ |
5178
7a1b782ec64a
updated for version 7.4a.015
Bram Moolenaar <bram@vim.org>
parents:
4993
diff
changeset
|
710 runtime/doc/*-ja.UTF-8.1 \ |
809 | 711 runtime/doc/*-pl.1 \ |
712 runtime/doc/*-pl.UTF-8.1 \ | |
221 | 713 runtime/doc/*-ru.1 \ |
714 runtime/doc/*-ru.UTF-8.1 \ | |
7 | 715 runtime/lang/README.txt \ |
716 runtime/lang/menu_*.vim \ | |
717 runtime/keymap/README.txt \ | |
718 runtime/keymap/*.vim \ | |
719 runtime/tutor/README.*.txt \ | |
720 runtime/tutor/Makefile \ | |
1648 | 721 runtime/tutor/tutor.utf-8 \ |
7 | 722 runtime/tutor/tutor.?? \ |
3848 | 723 runtime/tutor/tutor.??.utf-8 \ |
724 runtime/tutor/tutor.??.euc \ | |
725 runtime/tutor/tutor.??.sjis \ | |
726 runtime/tutor/tutor.??.iso9 \ | |
727 runtime/tutor/tutor.??.big5 \ | |
728 runtime/tutor/tutor.??.cp1250 \ | |
729 runtime/tutor/tutor.??.cp1251 \ | |
730 runtime/tutor/tutor.??.cp737 \ | |
731 runtime/tutor/tutor.??_??.utf-8 \ | |
2730 | 732 runtime/tutor/tutor.bar \ |
3848 | 733 runtime/tutor/tutor.bar.utf-8 \ |
237 | 734 runtime/spell/README.txt \ |
388 | 735 runtime/spell/??/*.diff \ |
736 runtime/spell/??/main.aap \ | |
2044
6c480c4aa7b0
Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
1899
diff
changeset
|
737 runtime/spell/tet/*.diff \ |
6c480c4aa7b0
Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
1899
diff
changeset
|
738 runtime/spell/tet/main.aap \ |
6c480c4aa7b0
Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
1899
diff
changeset
|
739 runtime/spell/check/main.aap \ |
6c480c4aa7b0
Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
1899
diff
changeset
|
740 runtime/spell/check/*.aff \ |
6c480c4aa7b0
Add a few missing runtime files.
Bram Moolenaar <bram@zimbu.org>
parents:
1899
diff
changeset
|
741 runtime/spell/check/*.dic \ |
477 | 742 runtime/spell/yi/README.txt \ |
388 | 743 runtime/spell/main.aap \ |
488 | 744 runtime/spell/*.vim \ |
242 | 745 |
746 # generic language files, binary | |
747 LANG_GEN_BIN = \ | |
446 | 748 runtime/spell/README_en.txt \ |
242 | 749 runtime/spell/en.ascii.spl \ |
237 | 750 runtime/spell/en.latin1.spl \ |
751 runtime/spell/en.utf-8.spl \ | |
625 | 752 runtime/spell/en.ascii.sug \ |
753 runtime/spell/en.latin1.sug \ | |
754 runtime/spell/en.utf-8.sug \ | |
7 | 755 |
756 # all files for lang archive | |
757 LANG_SRC = \ | |
758 src/po/README.txt \ | |
759 src/po/README_mingw.txt \ | |
760 src/po/README_mvc.txt \ | |
461 | 761 src/po/check.vim \ |
7 | 762 src/po/cleanup.vim \ |
763 src/po/Makefile \ | |
389 | 764 src/po/Make_cyg.mak \ |
7 | 765 src/po/Make_ming.mak \ |
766 src/po/Make_mvc.mak \ | |
767 src/po/sjiscorr.c \ | |
768 src/po/*.po \ | |
769 | |
770 # the language files for the Win32 lang archive | |
771 LANG_DOS = \ | |
772 src/po/*.mo \ | |
773 | |
774 # vim: set ft=make: |