(cp855, ibm855): New coding systems.
[bpt/emacs.git] / lisp / Makefile.in
1 # Maintenance productions for the Lisp directory
2 # Copyright (C) 2000, 2001 Free Software Foundation, Inc.
3
4 # This file is part of GNU Emacs.
5
6 # GNU Emacs is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
20
21 SHELL = /bin/sh
22
23 lisp=@srcdir@
24 VPATH=@srcdir@
25 srcdir=@srcdir@/..
26
27 # You can specify a different executable on the make command line,
28 # e.g. "make EMACS=../src/emacs ...".
29
30 EMACS = ../src/emacs
31
32 # Command line flags for Emacs. This must include --multibyte,
33 # otherwise some files will not compile.
34
35 EMACSOPT = -batch --no-site-file --multibyte
36
37 SOURCES = *.el COPYING Makefile
38 lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el
39 lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el
40 ETAGS = ../lib-src/etags
41
42 # Files which should not be compiled. If you change the name `DONTCOMPILE'
43 # to something different, you'll have to change make-dist as well, and
44 # modify the lists in $lisp and $shortlisp on src/Makefile.in.
45 #
46 # - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's
47 # no point compiling it, although it doesn't hurt.
48
49 DONTCOMPILE = \
50 $(lisp)/cus-load.el \
51 $(lisp)/emacs-lisp/cl-specs.el \
52 $(lisp)/eshell/esh-maint.el \
53 $(lisp)/eshell/esh-groups.el \
54 $(lisp)/finder-inf.el \
55 $(lisp)/forms-d2.el \
56 $(lisp)/forms-pass.el \
57 $(lisp)/generic-x.el \
58 $(lisp)/international/latin-1.el \
59 $(lisp)/international/latin-2.el \
60 $(lisp)/international/latin-3.el \
61 $(lisp)/international/latin-4.el \
62 $(lisp)/international/latin-5.el \
63 $(lisp)/international/latin-8.el \
64 $(lisp)/international/latin-9.el \
65 $(lisp)/international/latin1-disp.el \
66 $(lisp)/international/mule-conf.el \
67 $(lisp)/language/czech.el \
68 $(lisp)/language/devanagari.el \
69 $(lisp)/language/english.el \
70 $(lisp)/language/greek.el \
71 $(lisp)/language/hebrew.el \
72 $(lisp)/language/japanese.el \
73 $(lisp)/language/korean.el \
74 $(lisp)/language/lao.el \
75 $(lisp)/language/misc-lang.el \
76 $(lisp)/language/romanian.el \
77 $(lisp)/language/slovak.el \
78 $(lisp)/language/thai.el \
79 $(lisp)/language/utf-8-lang.el \
80 $(lisp)/language/georgian.el \
81 $(lisp)/language/vietnamese.el \
82 $(lisp)/language/cyrillic.el \
83 $(lisp)/language/czech.el \
84 $(lisp)/loaddefs.el \
85 $(lisp)/loadup.el \
86 $(lisp)/mail/blessmail.el \
87 $(lisp)/patcomp.el \
88 $(lisp)/paths.el \
89 $(lisp)/play/bruce.el \
90 $(lisp)/subdirs.el \
91 $(lisp)/term/internal.el \
92 $(lisp)/term/AT386.el \
93 $(lisp)/term/apollo.el \
94 $(lisp)/term/bobcat.el \
95 $(lisp)/term/iris-ansi.el \
96 $(lisp)/term/keyswap.el \
97 $(lisp)/term/linux.el \
98 $(lisp)/term/lk201.el \
99 $(lisp)/term/news.el \
100 $(lisp)/term/vt102.el \
101 $(lisp)/term/vt125.el \
102 $(lisp)/term/vt200.el \
103 $(lisp)/term/vt201.el \
104 $(lisp)/term/vt220.el \
105 $(lisp)/term/vt240.el \
106 $(lisp)/term/vt300.el \
107 $(lisp)/term/vt320.el \
108 $(lisp)/term/vt400.el \
109 $(lisp)/term/vt420.el \
110 $(lisp)/term/wyse50.el \
111 $(lisp)/version.el
112
113 # Files to compile before others during a bootstrap. This is done to
114 # speed up the bootstrap process. The CC files are compiled first
115 # because CC mode tweaks the compilation process, and requiring
116 # cc-mode when it is not compiled doesn't work during the
117 # bootstrapping.
118
119 COMPILE_FIRST = \
120 $(lisp)/emacs-lisp/byte-opt.el \
121 $(lisp)/emacs-lisp/bytecomp.el \
122 $(lisp)/subr.el \
123 $(lisp)/progmodes/cc-mode.el \
124 $(lisp)/progmodes/cc-vars.el
125
126 # The actual Emacs command run in the targets below.
127
128 emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT)
129
130 # Common command to find subdirectories
131
132 setwins=subdirs=`find $$wd -type d -print`; \
133 for file in $$subdirs; do \
134 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
135 *) wins="$$wins $$file" ;; \
136 esac; \
137 done
138
139 finder_setwins=subdirs=`find $$wd -type d -print`; \
140 for file in $$subdirs; do \
141 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term ) ;; \
142 *) wins="$$wins $$file" ;; \
143 esac; \
144 done
145
146 doit:
147
148 cus-load.el:
149 touch $@
150 custom-deps: cus-load.el doit
151 wd=$(lisp); $(setwins); \
152 echo Directories: $$wins; \
153 LC_ALL=C $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins
154
155 finder-inf.el:
156 echo "(provide 'finder-inf)" >> $@
157 finder-data: finder-inf.el doit
158 wd=$(lisp); $(finder_setwins); \
159 echo Directories: $$wins; \
160 LC_ALL=C $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins
161
162 loaddefs.el:
163 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@
164 echo ";;" >> $@; echo ";;; Code:" >> $@
165 echo "\f" >> $@
166 echo ";;; Local Variables:" >> $@
167 echo ";;; version-control: never" >> $@
168 echo ";;; no-byte-compile: t" >> $@
169 echo ";;; no-update-autoloads: t" >> $@
170 echo ";;; End:" >> $@
171 echo ";;; loaddefs.el ends here" >> $@
172 autoloads: loaddefs.el doit
173 wd=$(lisp); $(setwins); \
174 echo Directories: $$wins; \
175 LC_ALL=C $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
176
177 subdirs.el:
178 $(MAKE) $(MFLAGS) update-subdirs
179 update-subdirs: doit
180 wd=$(lisp); $(setwins); \
181 for file in $$wins; do \
182 $(srcdir)/update-subdirs $$file; \
183 done;
184
185 updates: update-subdirs autoloads finder-data custom-deps
186
187 # Update the AUTHORS file.
188
189 update-authors:
190 $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir)
191
192 TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
193 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs.el,,"`; \
194 ${ETAGS} $$els
195
196 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
197 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs.el,,"`; \
198 ${ETAGS} -o TAGS-LISP $$els
199
200 .SUFFIXES: .elc .el
201
202 .el.elc: subdirs.el
203 -$(emacs) -f batch-byte-compile $<
204
205 $(DONTCOMPILE:.el=.elc):
206 -rm -f $@
207
208 # Compile all Lisp files, except those from DONTCOMPILE,
209 # but don't recompile those that are up to date.
210
211 # All .elc files are made writable
212 # before compilation in case we checked out read-only (CVS option -r).
213 # Files MUST be compiled one by one. If we compile several files in a
214 # row we can't make sure that the compilation environment is clean.
215 # We also set the load-path of the Emacs used for compilation to the
216 # current directory and its subdirectories, to make sure require's and
217 # load's in the files being compiled find the right files.
218
219 compile: subdirs.el doit
220 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \
221 wd=$(lisp); $(setwins); \
222 elpat=`echo $$wins | tr ' ' '\012\012' | \
223 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
224 els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \
225 tr ' ' '\012\012' | sort | uniq -u`; \
226 for el in $(COMPILE_FIRST) $$els; do \
227 echo Compiling $$el; \
228 LC_ALL=C $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \
229 done
230
231 # Compile all Lisp files, except those from DONTCOMPILE. This
232 # is like `compile' but compiles files unconditionally.
233 compile-always: subdirs.el doit
234 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \
235 wd=$(lisp); $(setwins); \
236 elpat=`echo $$wins | tr ' ' '\012\012' | \
237 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
238 els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \
239 tr ' ' '\012\012' | sort | uniq -u`; \
240 for el in $(COMPILE_FIRST) $$els; do \
241 echo Compiling $$el; \
242 LC_ALL=C $(emacs) -f batch-byte-compile $$el || exit 1; \
243 done
244
245 compile-calc:
246 for el in $(find $(lisp)/calc -name '*.el'); do \
247 echo Compiling $$el; \
248 LC_ALL=C $(emacs) -f batch-byte-compile $$el || exit 1; \
249 done
250
251 # Backup compiled Lisp files in elc.tar.gz. If that file already
252 # exists, make a backup of it.
253
254 backup-compiled-files:
255 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
256 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
257
258 # Compile Lisp files, but save old compiled files first.
259
260 compile-after-backup: backup-compiled-files compile-always
261
262 # Recompile all Lisp files which are newer than their .elc files.
263 # Note that this doesn't create .elc files. It only recompiles if an
264 # .elc is present.
265
266 recompile: doit
267 LC_ALL=C $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp)
268
269 # Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el,
270 # because it's not sure it's up-to-date, and if it's not, that might
271 # lead to errors during the bootstrap because something fails to
272 # autoload as expected. Remove compiled Lisp files so that
273 # bootstrap-emacs will be built from sources only.
274
275 bootstrap-clean:
276 if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
277 -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
278
279 # Generate/update files for the bootstrap process.
280
281 bootstrap: autoloads compile-always custom-deps
282
283 distclean:
284 -rm -f ./Makefile
285
286 # Makefile ends here.