ASCIIfy curved quotes on displays lacking them
[emacs.git] / src / lisp.mk
blob32882d1ed3d1044744651a0251278f3701745e05
1 ### lisp.mk --- src/Makefile fragment for GNU Emacs
3 ## Copyright (C) 1985, 1987-1988, 1993-1995, 1999-2015 Free Software
4 ## Foundation, Inc.
6 ## This file is part of GNU Emacs.
8 ## GNU Emacs is free software: you can redistribute it and/or modify
9 ## it under the terms of the GNU General Public License as published by
10 ## the Free Software Foundation, either version 3 of the License, or
11 ## (at your option) any later version.
13 ## GNU Emacs is distributed in the hope that it will be useful,
14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ## GNU General Public License for more details.
18 ## You should have received a copy of the GNU General Public License
19 ## along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21 ### Commentary:
23 ## This is the list of all Lisp files that might be loaded into the
24 ## dumped Emacs. Some of them are not loaded on all platforms, but
25 ## the DOC file on every platform uses them (because the DOC file is
26 ## supposed to be platform-independent).
27 ## It is arranged like this because it is easier to generate it
28 ## semi-mechanically from loadup.el this way.
29 ## Eg something like:
30 ## sed -e 's/"[ )].*//' -n -e '/(load "/ s/.*load "//p' loadup.el | \
31 ## grep -vE 'site-|ldefs-boot'
32 ## minus any duplicates.
33 ## Note that you can generally just add a ".elc" extension to every file
34 ## that does not have an explicit .el extension, but beware of any
35 ## no-byte-compile ones.
37 ## Note that this list should not include lisp files which might not
38 ## be present, like site-load.el and site-init.el; this makefile
39 ## expects them all to be either present or buildable.
41 ## Place loaddefs.el first, so it gets generated first, since it is on
42 ## the critical path (relevant in parallel compilations).
44 ### Code:
46 shortlisp = \
47 loaddefs.el \
48 loadup.el \
49 emacs-lisp/byte-run.elc \
50 emacs-lisp/backquote.elc \
51 subr.elc \
52 version.elc \
53 widget.elc \
54 custom.elc \
55 emacs-lisp/map-ynp.elc \
56 cus-start.elc \
57 international/mule.elc \
58 international/mule-conf.elc \
59 env.elc \
60 format.elc \
61 bindings.elc \
62 files.elc \
63 emacs-lisp/macroexp.elc \
64 cus-face.elc \
65 faces.elc \
66 button.elc \
67 startup.elc \
68 emacs-lisp/cl-preloaded.elc \
69 emacs-lisp/nadvice.elc \
70 minibuffer.elc \
71 abbrev.elc \
72 simple.elc \
73 help.elc \
74 jka-cmpr-hook.elc \
75 epa-hook.elc \
76 international/mule-cmds.elc \
77 case-table.elc \
78 international/characters.elc \
79 composite.elc \
80 international/charprop.el \
81 language/chinese.elc \
82 language/cyrillic.elc \
83 language/indian.elc \
84 language/sinhala.elc \
85 language/english.elc \
86 language/ethiopic.elc \
87 language/european.elc \
88 language/czech.elc \
89 language/slovak.elc \
90 language/romanian.elc \
91 language/greek.elc \
92 language/hebrew.elc \
93 international/cp51932.el \
94 international/eucjp-ms.el \
95 language/japanese.elc \
96 language/korean.elc \
97 language/lao.elc \
98 language/tai-viet.elc \
99 language/thai.elc \
100 language/tibetan.elc \
101 language/vietnamese.elc \
102 language/misc-lang.elc \
103 language/utf-8-lang.elc \
104 language/georgian.elc \
105 language/khmer.elc \
106 language/burmese.elc \
107 language/cham.elc \
108 indent.elc \
109 window.elc \
110 emacs-lisp/cl-generic.elc \
111 frame.elc \
112 term/tty-colors.elc \
113 font-core.elc \
114 facemenu.elc \
115 emacs-lisp/syntax.elc \
116 font-lock.elc \
117 jit-lock.elc \
118 mouse.elc \
119 scroll-bar.elc \
120 select.elc \
121 emacs-lisp/timer.elc \
122 isearch.elc \
123 rfn-eshadow.elc \
124 menu-bar.elc \
125 emacs-lisp/lisp.elc \
126 textmodes/page.elc \
127 register.elc \
128 textmodes/paragraphs.elc \
129 progmodes/prog-mode.elc \
130 emacs-lisp/lisp-mode.elc \
131 progmodes/elisp-mode.elc \
132 textmodes/text-mode.elc \
133 textmodes/fill.elc \
134 newcomment.elc \
135 replace.elc \
136 emacs-lisp/tabulated-list.elc \
137 buff-menu.elc \
138 fringe.elc \
139 emacs-lisp/regexp-opt.elc \
140 image.elc \
141 international/fontset.elc \
142 dnd.elc \
143 tool-bar.elc \
144 dynamic-setting.elc \
145 x-dnd.elc \
146 term/common-win.elc \
147 term/x-win.elc \
148 w32-vars.elc \
149 term/w32-win.elc \
150 ls-lisp.elc \
151 disp-table.elc \
152 dos-w32.elc \
153 w32-fns.elc \
154 dos-fns.elc \
155 dos-vars.elc \
156 term/pc-win.elc \
157 term/internal.elc \
158 term/ns-win.elc \
159 mwheel.elc \
160 emacs-lisp/float-sup.elc \
161 vc/vc-hooks.elc \
162 vc/ediff-hook.elc \
163 electric.elc \
164 emacs-lisp/eldoc.elc \
165 uniquify.elc \
166 tooltip.elc
168 ### lisp.mk ends here