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