Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-15
[bpt/emacs.git] / lisp / Makefile.in
1 # Maintenance productions for the Lisp directory
2 # Copyright (C) 2000, 01, 03, 2004 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/latin1-disp.el \
59 $(lisp)/international/mule-conf.el \
60 $(lisp)/language/czech.el \
61 $(lisp)/language/devanagari.el \
62 $(lisp)/language/malayalam.el \
63 $(lisp)/language/tamil.el \
64 $(lisp)/language/kannada.el \
65 $(lisp)/language/english.el \
66 $(lisp)/language/greek.el \
67 $(lisp)/language/hebrew.el \
68 $(lisp)/language/japanese.el \
69 $(lisp)/language/korean.el \
70 $(lisp)/language/lao.el \
71 $(lisp)/language/misc-lang.el \
72 $(lisp)/language/romanian.el \
73 $(lisp)/language/slovak.el \
74 $(lisp)/language/thai.el \
75 $(lisp)/language/utf-8-lang.el \
76 $(lisp)/language/georgian.el \
77 $(lisp)/language/vietnamese.el \
78 $(lisp)/language/cyrillic.el \
79 $(lisp)/language/chinese.el \
80 $(lisp)/language/indian.el \
81 $(lisp)/loaddefs.el \
82 $(lisp)/ldefs-boot.el \
83 $(lisp)/loadup.el \
84 $(lisp)/mail/blessmail.el \
85 $(lisp)/patcomp.el \
86 $(lisp)/paths.el \
87 $(lisp)/play/bruce.el \
88 $(lisp)/subdirs.el \
89 $(lisp)/term/internal.el \
90 $(lisp)/term/AT386.el \
91 $(lisp)/term/apollo.el \
92 $(lisp)/term/bobcat.el \
93 $(lisp)/term/iris-ansi.el \
94 $(lisp)/term/keyswap.el \
95 $(lisp)/term/linux.el \
96 $(lisp)/term/lk201.el \
97 $(lisp)/term/news.el \
98 $(lisp)/term/vt102.el \
99 $(lisp)/term/vt125.el \
100 $(lisp)/term/vt200.el \
101 $(lisp)/term/vt201.el \
102 $(lisp)/term/vt220.el \
103 $(lisp)/term/vt240.el \
104 $(lisp)/term/vt300.el \
105 $(lisp)/term/vt320.el \
106 $(lisp)/term/vt400.el \
107 $(lisp)/term/vt420.el \
108 $(lisp)/term/wyse50.el \
109 $(lisp)/version.el
110
111 # Elisp files auto-generated.
112 AUTOGENEL = loaddefs.el \
113 cus-load.el \
114 finder-inf.el \
115 subdirs.el \
116 eshell/esh-groups.el
117
118 # Files to compile before others during a bootstrap. This is done to
119 # speed up the bootstrap process. The CC files are compiled first
120 # because CC mode tweaks the compilation process, and requiring
121 # cc-mode when it is not compiled doesn't work during the
122 # bootstrapping.
123
124 COMPILE_FIRST = \
125 $(lisp)/emacs-lisp/byte-opt.el \
126 $(lisp)/emacs-lisp/bytecomp.el \
127 $(lisp)/subr.el \
128 $(lisp)/progmodes/cc-mode.el \
129 $(lisp)/progmodes/cc-vars.el
130
131 # The actual Emacs command run in the targets below.
132
133 emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT)
134
135 # Common command to find subdirectories
136
137 setwins=subdirs=`(cd $$wd; find . -type d -print)`; \
138 for file in $$subdirs; do \
139 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \
140 *) wins="$$wins $$wd/$$file" ;; \
141 esac; \
142 done
143
144 setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \
145 for file in $$subdirs; do \
146 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \
147 *) wins="$$wins $$wd/$$file" ;; \
148 esac; \
149 done
150
151 doit:
152
153 $(lisp)/cus-load.el:
154 touch $@
155 custom-deps: $(lisp)/cus-load.el doit
156 wd=$(lisp); $(setwins_almost); \
157 echo Directories: $$wins; \
158 LC_ALL=C $(EMACS) $(EMACSOPT) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins
159
160 finder-data: doit
161 wd=$(lisp); $(setwins_almost); \
162 echo Directories: $$wins; \
163 LC_ALL=C $(EMACS) $(EMACSOPT) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins
164
165 $(lisp)/loaddefs.el:
166 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@
167 echo ";;" >> $@; echo ";;; Code:" >> $@
168 echo "\f" >> $@
169 echo ";;; Local Variables:" >> $@
170 echo ";;; version-control: never" >> $@
171 echo ";;; no-byte-compile: t" >> $@
172 echo ";;; no-update-autoloads: t" >> $@
173 echo ";;; End:" >> $@
174 echo ";;; loaddefs.el ends here" >> $@
175 autoloads: $(lisp)/loaddefs.el doit
176 wd=$(lisp); $(setwins); \
177 echo Directories: $$wins; \
178 LC_ALL=C $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
179
180 $(lisp)/subdirs.el:
181 $(MAKE) $(MFLAGS) update-subdirs
182 update-subdirs: doit
183 wd=$(lisp); $(setwins); \
184 for file in $$wins; do \
185 $(srcdir)/update-subdirs $$file; \
186 done;
187
188 updates: update-subdirs autoloads finder-data custom-deps
189
190 # Update the AUTHORS file.
191
192 update-authors:
193 $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir)
194
195 TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
196 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
197 ${ETAGS} $$els
198
199 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
200 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
201 ${ETAGS} -o TAGS-LISP $$els
202
203 .SUFFIXES: .elc .el
204
205 .el.elc: $(lisp)/subdirs.el
206 -$(emacs) -f batch-byte-compile $<
207
208 $(DONTCOMPILE:.el=.elc):
209 -rm -f $@
210
211 # Compile all Lisp files, except those from DONTCOMPILE,
212 # but don't recompile those that are up to date.
213
214 # All .elc files are made writable
215 # before compilation in case we checked out read-only (CVS option -r).
216 # Files MUST be compiled one by one. If we compile several files in a
217 # row we can't make sure that the compilation environment is clean.
218 # We also set the load-path of the Emacs used for compilation to the
219 # current directory and its subdirectories, to make sure require's and
220 # load's in the files being compiled find the right files.
221
222 # NOTE about DONTCOMPILE: in the `echo <foo> | sort | uniq -u' we pass
223 # $(DONTCOMPILE) twice. This is in case one of the files in DONTCOMPILE
224 # is absent. -stef
225
226 compile: $(lisp)/subdirs.el doit
227 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \
228 wd=$(lisp); $(setwins); \
229 elpat=`echo $$wins | tr ' ' '\012\012' | \
230 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
231 els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \
232 tr ' ' '\012\012' | sort | uniq -u`; \
233 for el in $(COMPILE_FIRST) $$els; do \
234 if test -f $$el; \
235 then \
236 echo Compiling $$el; \
237 $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \
238 fi \
239 done
240
241 # Compile all Lisp files, except those from DONTCOMPILE. This
242 # is like `compile' but compiles files unconditionally.
243 compile-always: $(lisp)/subdirs.el doit
244 # `|| true' prevents old Bash versions from getting confused
245 # by an error.
246 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
247 wd=$(lisp); $(setwins); \
248 elpat=`echo $$wins | tr ' ' '\012\012' | \
249 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
250 els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \
251 tr ' ' '\012\012' | sort | uniq -u`; \
252 for el in $(COMPILE_FIRST) $$els; do \
253 if test -f $$el; \
254 then \
255 echo Compiling $$el; \
256 $(emacs) -f batch-byte-compile $$el || exit 1; \
257 fi \
258 done
259
260 compile-calc:
261 for el in `find $(lisp)/calc -name '*.el'`; do \
262 echo Compiling $$el; \
263 $(emacs) -f batch-byte-compile $$el || exit 1; \
264 done
265
266 # Backup compiled Lisp files in elc.tar.gz. If that file already
267 # exists, make a backup of it.
268
269 backup-compiled-files:
270 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
271 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
272
273 # Compile Lisp files, but save old compiled files first.
274
275 compile-after-backup: backup-compiled-files compile-always
276
277 # Recompile all Lisp files which are newer than their .elc files.
278 # Note that this doesn't create .elc files. It only recompiles if an
279 # .elc is present.
280
281 recompile: doit $(lisp)/progmodes/cc-mode.elc
282 LC_ALL=C $(EMACS) $(EMACSOPT) --eval "(batch-byte-recompile-directory 0)" $(lisp)
283
284 # CC Mode uses a compile time macro system which causes a compile time
285 # dependency in cc-mode.elc on the macros in cc-langs.el and the
286 # version string in cc-defs.el.
287 $(lisp)/progmodes/cc-mode.elc: \
288 $(lisp)/progmodes/cc-mode.el \
289 $(lisp)/progmodes/cc-langs.el \
290 $(lisp)/progmodes/cc-defs.el
291 $(EMACS) $(EMACSOPT) -f batch-byte-compile $(lisp)/progmodes/cc-mode.el
292
293 # Prepare a bootstrap in the lisp subdirectory.
294 #
295 # Build loaddefs.el, because it's not sure it's up-to-date, and if it's not,
296 # that might lead to errors during the bootstrap because something fails to
297 # autoload as expected. However, if there is no emacs binary, then we can't
298 # build autoloads yet, so just make sure there's some loaddefs.el file, as
299 # it's necessary for generating the binary (because loaddefs.el is an
300 # automatically generated file, we don't want to store it in the source
301 # repository).
302
303 bootstrap-prepare:
304 if test -x $(EMACS); then \
305 $(MAKE) $(MFLAGS) autoloads; \
306 else \
307 if test ! -r $(lisp)/loaddefs.el; then \
308 cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el; \
309 fi \
310 fi
311
312 maintainer-clean:
313 cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL)
314
315 # Generate/update files for the bootstrap process.
316
317 bootstrap: update-subdirs autoloads compile
318
319 # Generate/update files after the bootstrap process.
320 # custom-deps needs `preloaded-file-list'.
321
322 bootstrap-after: finder-data custom-deps
323
324 distclean:
325 -rm -f ./Makefile
326
327 # Makefile ends here.