*** empty log message ***
[bpt/emacs.git] / lisp / Makefile.in
CommitLineData
c7685c8d 1# Maintenance productions for the Lisp directory
b3ae7a0a
GM
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.
7ec641b8 20
261f3289
EZ
21SHELL = /bin/sh
22
dce6b995
GM
23lisp=@srcdir@
24VPATH=@srcdir@
0df68e9f 25srcdir=@srcdir@/..
dce6b995 26
7ec641b8
GM
27# You can specify a different executable on the make command line,
28# e.g. "make EMACS=../src/emacs ...".
29
e3384ae7 30EMACS = ../src/emacs
7ec641b8
GM
31
32# Command line flags for Emacs. This must include --multibyte,
33# otherwise some files will not compile.
34
1499d2dd 35EMACSOPT = -batch --no-site-file --multibyte
7ec641b8 36
c7685c8d 37SOURCES = *.el COPYING Makefile
dce6b995
GM
38lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el
39lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el
3975988b 40ETAGS = ../lib-src/etags
c7685c8d 41
da7d597f 42# Files which should not be compiled. If you change the name `DONTCOMPILE'
b07f69f1
EZ
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.
da7d597f 45#
cc953d27
SM
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.
a9b67cf4 48
dce6b995 49DONTCOMPILE = \
dce6b995 50 $(lisp)/cus-load.el \
dce6b995 51 $(lisp)/emacs-lisp/cl-specs.el \
c47e9302 52 $(lisp)/eshell/esh-maint.el \
39efdf3f 53 $(lisp)/eshell/esh-groups.el \
dce6b995
GM
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/mule-conf.el \
28c7d1b8
DL
66 $(lisp)/language/czech.el \
67 $(lisp)/language/devanagari.el \
68 $(lisp)/language/english.el \
69 $(lisp)/language/greek.el \
70 $(lisp)/language/hebrew.el \
71 $(lisp)/language/japanese.el \
72 $(lisp)/language/korean.el \
73 $(lisp)/language/lao.el \
74 $(lisp)/language/misc-lang.el \
75 $(lisp)/language/romanian.el \
76 $(lisp)/language/slovak.el \
77 $(lisp)/language/thai.el \
78 $(lisp)/language/utf-8-lang.el \
79 $(lisp)/language/georgian.el \
dce6b995
GM
80 $(lisp)/loaddefs.el \
81 $(lisp)/loadup.el \
82 $(lisp)/mail/blessmail.el \
dce6b995
GM
83 $(lisp)/patcomp.el \
84 $(lisp)/paths.el \
85 $(lisp)/play/bruce.el \
86 $(lisp)/subdirs.el \
87 $(lisp)/term/internal.el \
6c317bd2
GM
88 $(lisp)/term/AT386.el \
89 $(lisp)/term/apollo.el \
90 $(lisp)/term/bobcat.el \
91 $(lisp)/term/iris-ansi.el \
92 $(lisp)/term/keyswap.el \
93 $(lisp)/term/linux.el \
94 $(lisp)/term/lk201.el \
95 $(lisp)/term/news.el \
96 $(lisp)/term/vt102.el \
97 $(lisp)/term/vt125.el \
98 $(lisp)/term/vt200.el \
99 $(lisp)/term/vt201.el \
100 $(lisp)/term/vt220.el \
101 $(lisp)/term/vt240.el \
102 $(lisp)/term/vt300.el \
103 $(lisp)/term/vt320.el \
104 $(lisp)/term/vt400.el \
105 $(lisp)/term/vt420.el \
106 $(lisp)/term/wyse50.el \
dce6b995 107 $(lisp)/version.el
7ec641b8 108
170a9e70
GM
109# Files to compile before others during a bootstrap. This is done to
110# speed up the bootstrap process. The CC files are compiled first
111# because CC mode tweaks the compilation process, and requiring
112# cc-mode when it is not compiled doesn't work during the
113# bootstrapping.
d849789b 114
dce6b995
GM
115COMPILE_FIRST = \
116 $(lisp)/emacs-lisp/byte-opt.el \
117 $(lisp)/emacs-lisp/bytecomp.el \
170a9e70
GM
118 $(lisp)/subr.el \
119 $(lisp)/progmodes/cc-mode.el \
120 $(lisp)/progmodes/cc-vars.el
d849789b 121
7ec641b8
GM
122# The actual Emacs command run in the targets below.
123
7f25090d 124emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
7ec641b8 125
80c382e5 126# Common command to find subdirectories
7ec641b8 127
3f4c23f9 128setwins=subdirs=`find $$wd -type d -print`; \
f83a4f35 129 for file in $$subdirs; do \
dcf91c25 130 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
f83a4f35
RS
131 *) wins="$$wins $$file" ;; \
132 esac; \
80c382e5 133 done
8464af45
GM
134
135finder_setwins=subdirs=`find $$wd -type d -print`; \
865e97c1 136 for file in $$subdirs; do \
dcf91c25 137 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term ) ;; \
865e97c1
GM
138 *) wins="$$wins $$file" ;; \
139 esac; \
140 done
80c382e5
SM
141
142doit:
143
cc953d27
SM
144cus-load.el:
145 touch $@
146custom-deps: cus-load.el doit
dce6b995 147 wd=$(lisp); $(setwins); \
4746aeeb 148 echo Directories: $$wins; \
49ac2ac5 149 $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins
009368b9 150
29ad9e56 151finder-data: doit
8464af45 152 wd=$(lisp); $(finder_setwins); \
4746aeeb 153 echo Directories: $$wins; \
49ac2ac5 154 $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins
009368b9 155
cc953d27
SM
156loaddefs.el:
157 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@
158 echo ";;" >> $@; echo ";;; Code:" >> $@
159 echo "\f" >> $@
160 echo ";;; Local Variables:" >> $@
161 echo ";;; version-control: never" >> $@
162 echo ";;; no-byte-compile: t" >> $@
163 echo ";;; no-update-autoloads: t" >> $@
164 echo ";;; End:" >> $@
165 echo ";;; loaddefs.el ends here" >> $@
166autoloads: loaddefs.el doit
dce6b995 167 wd=$(lisp); $(setwins); \
4746aeeb 168 echo Directories: $$wins; \
49ac2ac5 169 $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
f83a4f35 170
cc953d27
SM
171subdirs.el:
172 $(MAKE) $(MFLAGS) update-subdirs
98b918b6 173update-subdirs: doit
dce6b995 174 wd=$(lisp); $(setwins); \
98b918b6 175 for file in $$wins; do \
dce6b995 176 $(srcdir)/update-subdirs $$file; \
98b918b6
RS
177 done;
178
cc953d27 179updates: update-subdirs autoloads finder-data custom-deps
c48c3772 180
fbb43902
GM
181# Update the AUTHORS file.
182
183update-authors:
7f25090d 184 $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir)
fbb43902 185
7ab2c289 186TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
39895bae 187 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs.el,,"`; \
77389930 188 ${ETAGS} $$els
7ab2c289 189
4136efcb 190TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
39895bae 191 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs.el,,"`; \
77389930 192 ${ETAGS} -o TAGS-LISP $$els
7ec641b8 193
67292de0
GM
194.SUFFIXES: .elc .el
195
cc953d27 196.el.elc: subdirs.el
7f25090d 197 -$(emacs) -f batch-byte-compile $<
cc953d27
SM
198
199$(DONTCOMPILE:.el=.elc):
200 -rm -f $@
201
61b92c33
RS
202# Compile all Lisp files, except those from DONTCOMPILE,
203# but don't recompile those that are up to date.
204
205# All .elc files are made writable
7ec641b8 206# before compilation in case we checked out read-only (CVS option -r).
8256e31b
GM
207# Files MUST be compiled one by one. If we compile several files in a
208# row we can't make sure that the compilation environment is clean.
209# We also set the load-path of the Emacs used for compilation to the
210# current directory and its subdirectories, to make sure require's and
211# load's in the files being compiled find the right files.
7ec641b8 212
29ad9e56
SM
213# NOTE about DONTCOMPILE: in the `echo <foo> | sort | uniq -u' we pass
214# $(DONTCOMPILE) twice. This is in case one of the files in DONTCOMPILE
215# is absent. -stef
216
61b92c33
RS
217compile: subdirs.el doit
218 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \
219 wd=$(lisp); $(setwins); \
220 elpat=`echo $$wins | tr ' ' '\012\012' | \
221 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
29ad9e56 222 els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \
61b92c33
RS
223 tr ' ' '\012\012' | sort | uniq -u`; \
224 for el in $(COMPILE_FIRST) $$els; do \
6ad1de49
EZ
225 if test -f $$el; \
226 then \
227 echo Compiling $$el; \
228 $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \
229 fi \
61b92c33
RS
230 done
231
232# Compile all Lisp files, except those from DONTCOMPILE. This
233# is like `compile' but compiles files unconditionally.
234compile-always: subdirs.el doit
2ac5ecc6 235 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \
dce6b995
GM
236 wd=$(lisp); $(setwins); \
237 elpat=`echo $$wins | tr ' ' '\012\012' | \
cc953d27 238 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
29ad9e56 239 els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \
d849789b
GM
240 tr ' ' '\012\012' | sort | uniq -u`; \
241 for el in $(COMPILE_FIRST) $$els; do \
6ad1de49
EZ
242 if test -f $$el; \
243 then \
244 echo Compiling $$el; \
245 $(emacs) -f batch-byte-compile $$el || exit 1; \
246 fi \
8256e31b 247 done
96ff0f09 248
dcf91c25
CW
249compile-calc:
250 for el in $(find $(lisp)/calc -name '*.el'); do \
251 echo Compiling $$el; \
252 $(emacs) -f batch-byte-compile $$el || exit 1; \
253 done
254
a9b67cf4
GM
255# Backup compiled Lisp files in elc.tar.gz. If that file already
256# exists, make a backup of it.
257
258backup-compiled-files:
dce6b995
GM
259 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
260 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
a9b67cf4
GM
261
262# Compile Lisp files, but save old compiled files first.
263
61b92c33 264compile-after-backup: backup-compiled-files compile-always
a9b67cf4 265
7ec641b8
GM
266# Recompile all Lisp files which are newer than their .elc files.
267# Note that this doesn't create .elc files. It only recompiles if an
268# .elc is present.
269
270recompile: doit
49ac2ac5 271 $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp)
7ec641b8 272
03adf1ee
GM
273# Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el,
274# because it's not sure it's up-to-date, and if it's not, that might
275# lead to errors during the bootstrap because something fails to
276# autoload as expected. Remove compiled Lisp files so that
277# bootstrap-emacs will be built from sources only.
a9b67cf4
GM
278
279bootstrap-clean:
29ad9e56 280 if test -x $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
dce6b995 281 -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
a9b67cf4
GM
282
283# Generate/update files for the bootstrap process.
284
29ad9e56 285bootstrap: update-subdirs autoloads compile finder-data custom-deps
a9b67cf4 286
43280888 287distclean:
64865454 288 -rm -f ./Makefile
43280888 289
7ec641b8 290# Makefile ends here.