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