Macro-expand interpreted code during load.
[bpt/emacs.git] / src / lisp.mk
CommitLineData
b9704ad9
GM
1### lisp.mk --- src/Makefile fragment for GNU Emacs
2
acaf905b 3## Copyright (C) 1985, 1987-1988, 1993-1995, 1999-2012
b9704ad9
GM
4## Free Software Foundation, Inc.
5
6## This file is part of GNU Emacs.
7
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.
12
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.
17
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/>.
20
21### Commentary:
22
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.
f9f334f0
GM
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.
b9704ad9
GM
36
37## Confusingly, term/internal is not in loadup, but is unconditionally
38## loaded by pc-win, which is.
39
40## Note that this list should not include lisp files which might not
41## be present, like site-load.el and site-init.el; this makefile
42## expects them all to be either present or buildable.
43
44## Place loaddefs.el first, so it gets generated first, since it is on
45## the critical path (relevant in parallel compilations).
46
47### Code:
48
49## NB: This list is parsed by sed in the main src/Makefile.
50## Do not change the formatting.
51lisp = \
52 $(lispsource)/loaddefs.el \
53 $(lispsource)/loadup.el \
54 $(lispsource)/emacs-lisp/byte-run.elc \
55 $(lispsource)/emacs-lisp/backquote.elc \
56 $(lispsource)/subr.elc \
c6574eb5 57 $(lispsource)/version.elc \
b9704ad9
GM
58 $(lispsource)/widget.elc \
59 $(lispsource)/custom.elc \
60 $(lispsource)/emacs-lisp/map-ynp.elc \
61 $(lispsource)/cus-start.elc \
62 $(lispsource)/international/mule.elc \
63 $(lispsource)/international/mule-conf.elc \
64 $(lispsource)/env.elc \
65 $(lispsource)/format.elc \
66 $(lispsource)/bindings.elc \
67 $(lispsource)/files.elc \
972debf2 68 $(lispsource)/emacs-lisp/macroexp.elc \
b9704ad9
GM
69 $(lispsource)/cus-face.elc \
70 $(lispsource)/faces.elc \
71 $(lispsource)/button.elc \
72 $(lispsource)/startup.elc \
73 $(lispsource)/minibuffer.elc \
74 $(lispsource)/abbrev.elc \
75 $(lispsource)/simple.elc \
76 $(lispsource)/help.elc \
77 $(lispsource)/jka-cmpr-hook.elc \
78 $(lispsource)/epa-hook.elc \
79 $(lispsource)/international/mule-cmds.elc \
80 $(lispsource)/case-table.elc \
81 $(lispsource)/international/characters.elc \
82 $(lispsource)/composite.elc \
83 $(lispsource)/international/charprop.el \
84 $(lispsource)/language/chinese.elc \
85 $(lispsource)/language/cyrillic.elc \
86 $(lispsource)/language/indian.elc \
c6574eb5
GM
87 $(lispsource)/language/sinhala.elc \
88 $(lispsource)/language/english.elc \
b9704ad9
GM
89 $(lispsource)/language/ethiopic.elc \
90 $(lispsource)/language/european.elc \
c6574eb5
GM
91 $(lispsource)/language/czech.elc \
92 $(lispsource)/language/slovak.elc \
93 $(lispsource)/language/romanian.elc \
94 $(lispsource)/language/greek.elc \
b9704ad9 95 $(lispsource)/language/hebrew.elc \
c6574eb5
GM
96 $(lispsource)/language/japanese.elc \
97 $(lispsource)/language/korean.elc \
98 $(lispsource)/language/lao.elc \
99 $(lispsource)/language/tai-viet.elc \
100 $(lispsource)/language/thai.elc \
b9704ad9
GM
101 $(lispsource)/language/tibetan.elc \
102 $(lispsource)/language/vietnamese.elc \
c6574eb5
GM
103 $(lispsource)/language/misc-lang.elc \
104 $(lispsource)/language/utf-8-lang.elc \
105 $(lispsource)/language/georgian.elc \
106 $(lispsource)/language/khmer.elc \
107 $(lispsource)/language/burmese.elc \
108 $(lispsource)/language/cham.elc \
b9704ad9
GM
109 $(lispsource)/indent.elc \
110 $(lispsource)/window.elc \
111 $(lispsource)/frame.elc \
112 $(lispsource)/term/tty-colors.elc \
113 $(lispsource)/font-core.elc \
114 $(lispsource)/facemenu.elc \
115 $(lispsource)/emacs-lisp/syntax.elc \
116 $(lispsource)/font-lock.elc \
117 $(lispsource)/jit-lock.elc \
118 $(lispsource)/mouse.elc \
119 $(lispsource)/scroll-bar.elc \
120 $(lispsource)/select.elc \
121 $(lispsource)/emacs-lisp/timer.elc \
122 $(lispsource)/isearch.elc \
123 $(lispsource)/rfn-eshadow.elc \
124 $(lispsource)/menu-bar.elc \
b9704ad9
GM
125 $(lispsource)/emacs-lisp/lisp.elc \
126 $(lispsource)/textmodes/page.elc \
127 $(lispsource)/register.elc \
128 $(lispsource)/textmodes/paragraphs.elc \
129 $(lispsource)/emacs-lisp/lisp-mode.elc \
130 $(lispsource)/textmodes/text-mode.elc \
131 $(lispsource)/textmodes/fill.elc \
c1a1d7a3 132 $(lispsource)/newcomment.elc \
b9704ad9 133 $(lispsource)/replace.elc \
e5f9458f 134 $(lispsource)/emacs-lisp/tabulated-list.elc \
b9704ad9
GM
135 $(lispsource)/buff-menu.elc \
136 $(lispsource)/fringe.elc \
6114eb15 137 $(lispsource)/emacs-lisp/regexp-opt.elc \
b9704ad9
GM
138 $(lispsource)/image.elc \
139 $(lispsource)/international/fontset.elc \
140 $(lispsource)/dnd.elc \
141 $(lispsource)/tool-bar.elc \
142 $(lispsource)/dynamic-setting.elc \
143 $(lispsource)/x-dnd.elc \
144 $(lispsource)/term/common-win.elc \
145 $(lispsource)/term/x-win.elc \
146 $(lispsource)/w32-vars.elc \
147 $(lispsource)/term/w32-win.elc \
148 $(lispsource)/ls-lisp.elc \
149 $(lispsource)/disp-table.elc \
150 $(lispsource)/dos-w32.elc \
151 $(lispsource)/w32-fns.elc \
152 $(lispsource)/dos-fns.elc \
153 $(lispsource)/dos-vars.elc \
154 $(lispsource)/term/pc-win.elc \
155 $(lispsource)/term/internal.elc \
156 $(lispsource)/term/ns-win.elc \
157 $(lispsource)/mwheel.elc \
158 $(lispsource)/emacs-lisp/float-sup.elc \
159 $(lispsource)/vc/vc-hooks.elc \
160 $(lispsource)/vc/ediff-hook.elc \
161 $(lispsource)/tooltip.elc
162
163
164### lisp.mk ends here