Merge from emacs--devo--0
[bpt/emacs.git] / lisp / Makefile.in
CommitLineData
c7685c8d 1# Maintenance productions for the Lisp directory
aaef169d 2# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
d7a0267c 3# 2006, 2007 Free Software Foundation, Inc.
b3ae7a0a
GM
4
5# This file is part of GNU Emacs.
6
7# GNU Emacs is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
b4aa6026 9# the Free Software Foundation; either version 3, or (at your option)
b3ae7a0a
GM
10# any later version.
11
12# GNU Emacs is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16
17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs; see the file COPYING. If not, write to
086add15
LK
19# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20# Boston, MA 02110-1301, USA.
7ec641b8 21
261f3289
EZ
22SHELL = /bin/sh
23
dce6b995
GM
24lisp=@srcdir@
25VPATH=@srcdir@
0df68e9f 26srcdir=@srcdir@/..
dce6b995 27
7ec641b8
GM
28# You can specify a different executable on the make command line,
29# e.g. "make EMACS=../src/emacs ...".
30
e3384ae7 31EMACS = ../src/emacs
7ec641b8
GM
32
33# Command line flags for Emacs. This must include --multibyte,
34# otherwise some files will not compile.
35
1499d2dd 36EMACSOPT = -batch --no-site-file --multibyte
7ec641b8 37
c7685c8d 38SOURCES = *.el COPYING Makefile
dce6b995
GM
39lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el
40lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el
3975988b 41ETAGS = ../lib-src/etags
c7685c8d 42
6b61353c
KH
43# Elisp files auto-generated.
44AUTOGENEL = loaddefs.el \
45 cus-load.el \
46 finder-inf.el \
47 subdirs.el \
4d335bfc 48 eshell/esh-groups.el \
1e609fd4 49 mh-e/mh-loaddefs.el \
4d335bfc
KH
50 international/charprop.el \
51 international/uni-*.el
6b61353c 52
170a9e70
GM
53# Files to compile before others during a bootstrap. This is done to
54# speed up the bootstrap process. The CC files are compiled first
55# because CC mode tweaks the compilation process, and requiring
56# cc-mode when it is not compiled doesn't work during the
57# bootstrapping.
d849789b 58
dce6b995
GM
59COMPILE_FIRST = \
60 $(lisp)/emacs-lisp/byte-opt.el \
61 $(lisp)/emacs-lisp/bytecomp.el \
170a9e70
GM
62 $(lisp)/subr.el \
63 $(lisp)/progmodes/cc-mode.el \
64 $(lisp)/progmodes/cc-vars.el
d849789b 65
7ec641b8
GM
66# The actual Emacs command run in the targets below.
67
3b53a65b 68emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT)
7ec641b8 69
80c382e5 70# Common command to find subdirectories
7ec641b8 71
6b61353c 72setwins=subdirs=`(cd $$wd; find . -type d -print)`; \
f83a4f35 73 for file in $$subdirs; do \
6b61353c
KH
74 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \
75 *) wins="$$wins $$wd/$$file" ;; \
f83a4f35 76 esac; \
80c382e5 77 done
8464af45 78
6a444c7c
RS
79# Find all subdirectories except `obsolete'.
80
6b61353c 81setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \
865e97c1 82 for file in $$subdirs; do \
6b61353c
KH
83 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \
84 *) wins="$$wins $$wd/$$file" ;; \
865e97c1
GM
85 esac; \
86 done
80c382e5
SM
87
88doit:
89
cd1b15b8 90$(lisp)/cus-load.el:
cc953d27 91 touch $@
a8b145e3 92custom-deps: $(lisp)/subdirs.el $(lisp)/loaddefs.el $(lisp)/cus-load.el doit
30089f1d 93 wd=$(lisp); $(setwins_almost); \
4746aeeb 94 echo Directories: $$wins; \
42216a6b 95 LC_ALL=C $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins
009368b9 96
a8b145e3 97finder-data: $(lisp)/subdirs.el $(lisp)/loaddefs.el doit
30089f1d 98 wd=$(lisp); $(setwins_almost); \
4746aeeb 99 echo Directories: $$wins; \
42216a6b 100 LC_ALL=C $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins
009368b9 101
cd1b15b8 102$(lisp)/loaddefs.el:
cc953d27
SM
103 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@
104 echo ";;" >> $@; echo ";;; Code:" >> $@
105 echo "\f" >> $@
1f0bb3e7
SM
106 echo ";; Local Variables:" >> $@
107 echo ";; version-control: never" >> $@
108 echo ";; no-byte-compile: t" >> $@
109 echo ";; no-update-autoloads: t" >> $@
110 echo ";; End:" >> $@
cc953d27 111 echo ";;; loaddefs.el ends here" >> $@
a8b145e3 112autoloads: $(lisp)/subdirs.el $(lisp)/loaddefs.el doit
6a444c7c 113 wd=$(lisp); $(setwins_almost); \
4746aeeb 114 echo Directories: $$wins; \
42216a6b 115 LC_ALL=C $(emacs) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
f83a4f35 116
cd1b15b8 117$(lisp)/subdirs.el:
cc953d27 118 $(MAKE) $(MFLAGS) update-subdirs
98b918b6 119update-subdirs: doit
dce6b995 120 wd=$(lisp); $(setwins); \
98b918b6 121 for file in $$wins; do \
dce6b995 122 $(srcdir)/update-subdirs $$file; \
98b918b6
RS
123 done;
124
600bc46c 125updates: update-subdirs autoloads finder-data custom-deps
c48c3772 126
a9d25c79
EZ
127# This is useful after "cvs up".
128cvs-update: recompile autoloads finder-data custom-deps
c48c3772 129
fbb43902
GM
130# Update the AUTHORS file.
131
132update-authors:
ed5e0894 133 $(emacs) -l authors -f batch-update-authors $(srcdir)/etc/AUTHORS $(srcdir)
fbb43902 134
7ab2c289 135TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
6b61353c 136 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
77389930 137 ${ETAGS} $$els
7ab2c289 138
4136efcb 139TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
6b61353c 140 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
77389930 141 ${ETAGS} -o TAGS-LISP $$els
7ec641b8 142
67292de0
GM
143.SUFFIXES: .elc .el
144
cd1b15b8 145.el.elc: $(lisp)/subdirs.el
7f25090d 146 -$(emacs) -f batch-byte-compile $<
cc953d27 147
938cbd34
LK
148# Compile all Lisp files, but don't recompile those that are up to
149# date. Some files don't actually get compiled because they set the
150# local variable no-byte-compile.
61b92c33 151
938cbd34
LK
152# All .elc files are made writable before compilation in case we
153# checked out read-only (CVS option -r). Files MUST be compiled one by
154# one. If we compile several files in a row we can't make sure that
155# the compilation environment is clean. We also set the load-path of
156# the Emacs used for compilation to the current directory and its
157# subdirectories, to make sure require's and load's in the files being
158# compiled find the right files.
29ad9e56 159
063cd226
EZ
160# `|| true' below prevents old Bash versions from getting confused
161# by an error.
1eee3de4 162compile: $(lisp)/subdirs.el mh-autoloads doit
063cd226 163 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
61b92c33 164 wd=$(lisp); $(setwins); \
938cbd34 165 els=`echo $$wins | tr ' \011' '\012\012' | \
61b92c33 166 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
61b92c33 167 for el in $(COMPILE_FIRST) $$els; do \
6ad1de49
EZ
168 if test -f $$el; \
169 then \
170 echo Compiling $$el; \
171 $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \
172 fi \
61b92c33
RS
173 done
174
938cbd34
LK
175# Compile all Lisp files. This is like `compile' but compiles files
176# unconditionally. Some files don't actually get compiled because they
177# set the local variable no-byte-compile.
178
77a0dbd2 179compile-always: $(lisp)/subdirs.el mh-autoloads doit
4244e7dc
RS
180 # `|| true' prevents old Bash versions from getting confused
181 # by an error.
e85a77bd 182 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
dce6b995 183 wd=$(lisp); $(setwins); \
938cbd34 184 els=`echo $$wins | tr ' \011' '\012\012' | \
cc953d27 185 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
d849789b 186 for el in $(COMPILE_FIRST) $$els; do \
6ad1de49
EZ
187 if test -f $$el; \
188 then \
189 echo Compiling $$el; \
190 $(emacs) -f batch-byte-compile $$el || exit 1; \
191 fi \
8256e31b 192 done
96ff0f09 193
f1180544 194compile-calc:
cd1b15b8 195 for el in `find $(lisp)/calc -name '*.el'`; do \
dcf91c25
CW
196 echo Compiling $$el; \
197 $(emacs) -f batch-byte-compile $$el || exit 1; \
198 done
199
a9b67cf4
GM
200# Backup compiled Lisp files in elc.tar.gz. If that file already
201# exists, make a backup of it.
202
203backup-compiled-files:
dce6b995
GM
204 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
205 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
a9b67cf4
GM
206
207# Compile Lisp files, but save old compiled files first.
208
61b92c33 209compile-after-backup: backup-compiled-files compile-always
a9b67cf4 210
773cb1a4
NR
211# Recompile all Lisp files which are newer than their .elc files and compile
212# new ones.
7ec641b8 213
1eee3de4 214recompile: doit mh-autoloads $(lisp)/progmodes/cc-mode.elc
42216a6b 215 LC_ALL=C $(emacs) --eval "(batch-byte-recompile-directory 0)" $(lisp)
7ec641b8 216
6b61353c
KH
217# CC Mode uses a compile time macro system which causes a compile time
218# dependency in cc-mode.elc on the macros in cc-langs.el and the
219# version string in cc-defs.el.
220$(lisp)/progmodes/cc-mode.elc: \
221 $(lisp)/progmodes/cc-mode.el \
222 $(lisp)/progmodes/cc-langs.el \
223 $(lisp)/progmodes/cc-defs.el
7e48dd52 224 $(emacs) -f batch-byte-compile $(lisp)/progmodes/cc-mode.el
a9b67cf4 225
1eee3de4
BW
226# Update MH-E internal autoloads. These are not to be confused with
227# the autoloads for the MH-E entry points, which are already in
228# loaddefs.el.
9c2cf222 229MH_E_SRC = $(lisp)/mh-e/mh-acros.el $(lisp)/mh-e/mh-alias.el \
68b88a6d
BW
230 $(lisp)/mh-e/mh-buffers.el $(lisp)/mh-e/mh-compat.el \
231 $(lisp)/mh-e/mh-comp.el $(lisp)/mh-e/mh-e.el \
232 $(lisp)/mh-e/mh-folder.el $(lisp)/mh-e/mh-funcs.el \
233 $(lisp)/mh-e/mh-gnus.el $(lisp)/mh-e/mh-identity.el \
234 $(lisp)/mh-e/mh-inc.el $(lisp)/mh-e/mh-junk.el \
235 $(lisp)/mh-e/mh-letter.el $(lisp)/mh-e/mh-limit.el \
236 $(lisp)/mh-e/mh-mime.el $(lisp)/mh-e/mh-print.el \
237 $(lisp)/mh-e/mh-scan.el $(lisp)/mh-e/mh-search.el \
238 $(lisp)/mh-e/mh-seq.el $(lisp)/mh-e/mh-show.el \
239 $(lisp)/mh-e/mh-speed.el $(lisp)/mh-e/mh-thread.el \
240 $(lisp)/mh-e/mh-tool-bar.el $(lisp)/mh-e/mh-utils.el \
241 $(lisp)/mh-e/mh-xface.el
1eee3de4
BW
242
243mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el
dd8d430f 244$(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el $(MH_E_SRC)
1eee3de4 245 echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@
68b88a6d 246 echo "" >> $@
d7a0267c 247 echo ";; Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc." >> $@
1f0bb3e7
SM
248 echo ";; Author: Bill Wohler <wohler@newt.com>" >> $@
249 echo ";; Keywords: mail" >> $@
1eee3de4
BW
250 echo ";;; Commentary:" >> $@
251 echo ";;; Change Log:" >> $@
252 echo ";;; Code:" >> $@
1eee3de4
BW
253 echo "\f" >> $@
254 echo "(provide 'mh-loaddefs)" >> $@
1f0bb3e7
SM
255 echo ";; Local Variables:" >> $@
256 echo ";; version-control: never" >> $@
257 echo ";; no-byte-compile: t" >> $@
258 echo ";; no-update-autoloads: t" >> $@
259 echo ";; End:" >> $@
1eee3de4 260 echo ";;; mh-loaddefs.el ends here" >> $@
7e48dd52 261 $(emacs) \
a6f6840e
SM
262 -l autoload \
263 --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \
264 --eval "(setq generated-autoload-file \"$(lisp)/mh-e/mh-loaddefs.el\")" \
265 --eval "(setq make-backup-files nil)" \
266 -f batch-update-autoloads $(lisp)/mh-e
1eee3de4 267
6b61353c
KH
268# Prepare a bootstrap in the lisp subdirectory.
269#
f586d18e
LK
270# Build loaddefs.el to make sure it's up-to-date. If it's not, that
271# might lead to errors during the bootstrap because something fails to
272# autoload as expected. If there is no emacs binary, then we can't
71d77b40
LT
273# build autoloads yet. In that case we have to use ldefs-boot.el.
274# Bootstrap should always work with ldefs-boot.el. Therefore,
275# whenever a new autoload cookie gets added that is necessary during
276# bootstrapping, ldefs-boot.el should be updated by overwriting it with
277# an up-to-date copy of loaddefs.el that is uncorrupted by
278# local changes. (Because loaddefs.el is an automatically generated
279# file, we don't want to store it in the source repository).
4c5cd2d2
TTN
280#
281# The chmod +w is to handle env var CVSREAD=1. Files named
282# are identified by being the value of `generated-autoload-file'.
6b61353c
KH
283
284bootstrap-prepare:
285 if test -x $(EMACS); then \
286 $(MAKE) $(MFLAGS) autoloads; \
287 else \
f586d18e 288 cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el; \
6b61353c 289 fi
4c5cd2d2
TTN
290 chmod +w $(lisp)/loaddefs.el \
291 $(lisp)/ps-print.el \
292 $(lisp)/emacs-lisp/cl-loaddefs.el
6b61353c 293
366fc3f9 294maintainer-clean: distclean
6b61353c 295 cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL)
a9b67cf4 296
0571ccec
KS
297bootstrap-clean:
298 cd $(lisp); rm -f *.elc */*.elc
299
a9b67cf4
GM
300# Generate/update files for the bootstrap process.
301
77a0dbd2 302bootstrap: update-subdirs autoloads compile
21d07b1d
MR
303
304# Generate/update files after the bootstrap process.
305# custom-deps needs `preloaded-file-list'.
306
307bootstrap-after: finder-data custom-deps
a9b67cf4 308
43280888 309distclean:
64865454 310 -rm -f ./Makefile
43280888 311
7ec641b8 312# Makefile ends here.