Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / src / lisp.mk
blob59d5b86c33aae3d09951a6162e98c1e750378ea0
1 ### lisp.mk --- src/Makefile fragment for GNU Emacs
3 ## Copyright (C) 1985, 1987-1988, 1993-1995, 1999-2014 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 ## Confusingly, international/cp51932 and international/eucjp-ms are
38 ## unconditionally loaded from language/japanese, instead of being
39 ## loaded directly from loadup.el; FIXME.
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.
45 ## Place loaddefs.el first, so it gets generated first, since it is on
46 ## the critical path (relevant in parallel compilations).
48 ### Code:
50 ## NB: This list is parsed by sed in the main src/Makefile.
51 ## Do not change the formatting.
52 lisp = \
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 \
58 $(lispsource)/version.elc \
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 \
69 $(lispsource)/emacs-lisp/macroexp.elc \
70 $(lispsource)/cus-face.elc \
71 $(lispsource)/faces.elc \
72 $(lispsource)/button.elc \
73 $(lispsource)/startup.elc \
74 $(lispsource)/emacs-lisp/nadvice.elc \
75 $(lispsource)/minibuffer.elc \
76 $(lispsource)/abbrev.elc \
77 $(lispsource)/simple.elc \
78 $(lispsource)/help.elc \
79 $(lispsource)/jka-cmpr-hook.elc \
80 $(lispsource)/epa-hook.elc \
81 $(lispsource)/international/mule-cmds.elc \
82 $(lispsource)/case-table.elc \
83 $(lispsource)/international/characters.elc \
84 $(lispsource)/composite.elc \
85 $(lispsource)/international/charprop.el \
86 $(lispsource)/language/chinese.elc \
87 $(lispsource)/language/cyrillic.elc \
88 $(lispsource)/language/indian.elc \
89 $(lispsource)/language/sinhala.elc \
90 $(lispsource)/language/english.elc \
91 $(lispsource)/language/ethiopic.elc \
92 $(lispsource)/language/european.elc \
93 $(lispsource)/language/czech.elc \
94 $(lispsource)/language/slovak.elc \
95 $(lispsource)/language/romanian.elc \
96 $(lispsource)/language/greek.elc \
97 $(lispsource)/language/hebrew.elc \
98 $(lispsource)/language/japanese.elc \
99 $(lispsource)/international/cp51932.el \
100 $(lispsource)/international/eucjp-ms.el \
101 $(lispsource)/language/korean.elc \
102 $(lispsource)/language/lao.elc \
103 $(lispsource)/language/tai-viet.elc \
104 $(lispsource)/language/thai.elc \
105 $(lispsource)/language/tibetan.elc \
106 $(lispsource)/language/vietnamese.elc \
107 $(lispsource)/language/misc-lang.elc \
108 $(lispsource)/language/utf-8-lang.elc \
109 $(lispsource)/language/georgian.elc \
110 $(lispsource)/language/khmer.elc \
111 $(lispsource)/language/burmese.elc \
112 $(lispsource)/language/cham.elc \
113 $(lispsource)/indent.elc \
114 $(lispsource)/window.elc \
115 $(lispsource)/frame.elc \
116 $(lispsource)/term/tty-colors.elc \
117 $(lispsource)/font-core.elc \
118 $(lispsource)/facemenu.elc \
119 $(lispsource)/emacs-lisp/syntax.elc \
120 $(lispsource)/font-lock.elc \
121 $(lispsource)/jit-lock.elc \
122 $(lispsource)/mouse.elc \
123 $(lispsource)/scroll-bar.elc \
124 $(lispsource)/select.elc \
125 $(lispsource)/emacs-lisp/timer.elc \
126 $(lispsource)/isearch.elc \
127 $(lispsource)/rfn-eshadow.elc \
128 $(lispsource)/menu-bar.elc \
129 $(lispsource)/emacs-lisp/lisp.elc \
130 $(lispsource)/textmodes/page.elc \
131 $(lispsource)/register.elc \
132 $(lispsource)/textmodes/paragraphs.elc \
133 $(lispsource)/progmodes/prog-mode.elc \
134 $(lispsource)/emacs-lisp/lisp-mode.elc \
135 $(lispsource)/textmodes/text-mode.elc \
136 $(lispsource)/textmodes/fill.elc \
137 $(lispsource)/newcomment.elc \
138 $(lispsource)/replace.elc \
139 $(lispsource)/emacs-lisp/tabulated-list.elc \
140 $(lispsource)/buff-menu.elc \
141 $(lispsource)/fringe.elc \
142 $(lispsource)/emacs-lisp/regexp-opt.elc \
143 $(lispsource)/image.elc \
144 $(lispsource)/international/fontset.elc \
145 $(lispsource)/dnd.elc \
146 $(lispsource)/tool-bar.elc \
147 $(lispsource)/dynamic-setting.elc \
148 $(lispsource)/x-dnd.elc \
149 $(lispsource)/term/common-win.elc \
150 $(lispsource)/term/x-win.elc \
151 $(lispsource)/w32-vars.elc \
152 $(lispsource)/term/w32-win.elc \
153 $(lispsource)/ls-lisp.elc \
154 $(lispsource)/disp-table.elc \
155 $(lispsource)/w32-common-fns.elc \
156 $(lispsource)/dos-w32.elc \
157 $(lispsource)/w32-fns.elc \
158 $(lispsource)/dos-fns.elc \
159 $(lispsource)/dos-vars.elc \
160 $(lispsource)/term/pc-win.elc \
161 $(lispsource)/term/internal.elc \
162 $(lispsource)/term/ns-win.elc \
163 $(lispsource)/mwheel.elc \
164 $(lispsource)/emacs-lisp/float-sup.elc \
165 $(lispsource)/vc/vc-hooks.elc \
166 $(lispsource)/vc/ediff-hook.elc \
167 $(lispsource)/electric.elc \
168 $(lispsource)/uniquify.elc \
169 $(lispsource)/tooltip.elc
172 ### lisp.mk ends here