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