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