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