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