Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / Makefile.in
CommitLineData
c7685c8d 1# Maintenance productions for the Lisp directory
2537fa5d
GM
2# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3# 2008 Free Software Foundation, Inc.
b3ae7a0a
GM
4
5# This file is part of GNU Emacs.
6
eb3fa2cf 7# GNU Emacs is free software: you can redistribute it and/or modify
b3ae7a0a 8# it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
b3ae7a0a
GM
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
eb3fa2cf 18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
7ec641b8 19
261f3289
EZ
20SHELL = /bin/sh
21
dce6b995
GM
22lisp=@srcdir@
23VPATH=@srcdir@
0df68e9f 24srcdir=@srcdir@/..
dce6b995 25
7ec641b8
GM
26# You can specify a different executable on the make command line,
27# e.g. "make EMACS=../src/emacs ...".
28
e3384ae7 29EMACS = ../src/emacs
7ec641b8
GM
30
31# Command line flags for Emacs. This must include --multibyte,
32# otherwise some files will not compile.
33
1499d2dd 34EMACSOPT = -batch --no-site-file --multibyte
7ec641b8 35
fc5e09b3
DN
36# Extra flags to pass to the byte compiler
37BYTE_COMPILE_EXTRA_FLAGS =
38# For example to not display the undefined function warnings you can use this:
39# BYTE_COMPILE_EXTRA_FLAGS = --eval '(setq byte-compile-warnings (quote (not unresolved)))'
40# The example above is just for developers, it should not be used by default.
41
c7685c8d 42SOURCES = *.el COPYING Makefile
dce6b995
GM
43lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el
44lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el
3975988b 45ETAGS = ../lib-src/etags
c7685c8d 46
2537fa5d 47# Automatically generated autoload files, apart from lisp/loaddefs.el.
e9906608
GM
48# Note this includes only those files that need special rules to
49# build; ie it does not need to include things created via
50# generated-autoload-file (eg calc/calc-loaddefs.el).
2537fa5d 51LOADDEFS = $(lisp)/calendar/cal-loaddefs.el \
099659f9
GM
52 $(lisp)/calendar/diary-loaddefs.el \
53 $(lisp)/calendar/hol-loaddefs.el \
54 $(lisp)/mh-e/mh-loaddefs.el
2537fa5d 55
6b61353c
KH
56# Elisp files auto-generated.
57AUTOGENEL = loaddefs.el \
2537fa5d 58 $(LOADDEFS) \
6b61353c
KH
59 cus-load.el \
60 finder-inf.el \
61 subdirs.el \
6b6a6f9e 62 calc/calc-loaddefs.el \
e9906608 63 eshell/esh-groups.el
6b61353c 64
170a9e70
GM
65# Files to compile before others during a bootstrap. This is done to
66# speed up the bootstrap process. The CC files are compiled first
67# because CC mode tweaks the compilation process, and requiring
68# cc-mode when it is not compiled doesn't work during the
69# bootstrapping.
d849789b 70
dce6b995
GM
71COMPILE_FIRST = \
72 $(lisp)/emacs-lisp/byte-opt.el \
73 $(lisp)/emacs-lisp/bytecomp.el \
170a9e70
GM
74 $(lisp)/subr.el \
75 $(lisp)/progmodes/cc-mode.el \
76 $(lisp)/progmodes/cc-vars.el
d849789b 77
7ec641b8
GM
78# The actual Emacs command run in the targets below.
79
3b53a65b 80emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT)
125891f4 81# Prerequisites for running $(emacs)
dab955e8 82emacs-deps = $(lisp)/subdirs.el
7ec641b8 83
80c382e5 84# Common command to find subdirectories
7ec641b8 85
6b61353c 86setwins=subdirs=`(cd $$wd; find . -type d -print)`; \
f83a4f35 87 for file in $$subdirs; do \
6b61353c
KH
88 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \
89 *) wins="$$wins $$wd/$$file" ;; \
f83a4f35 90 esac; \
80c382e5 91 done
8464af45 92
6a444c7c
RS
93# Find all subdirectories except `obsolete'.
94
6b61353c 95setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \
865e97c1 96 for file in $$subdirs; do \
6b61353c
KH
97 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \
98 *) wins="$$wins $$wd/$$file" ;; \
865e97c1
GM
99 esac; \
100 done
80c382e5
SM
101
102doit:
103
cd1b15b8 104$(lisp)/cus-load.el:
cc953d27 105 touch $@
0b534ed7
EZ
106# Note that custom-deps and finder-data depend on autoloads rather
107# than on loaddefs.el, so that autoloads does not run in parallel with
108# them under "make -j", because that could delete loaddefs.el from
109# under their feet.
125891f4 110custom-deps: $(emacs-deps) autoloads $(lisp)/cus-load.el doit
30089f1d 111 wd=$(lisp); $(setwins_almost); \
4746aeeb 112 echo Directories: $$wins; \
b2928357 113 $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins
009368b9 114
125891f4 115finder-data: $(emacs-deps) autoloads doit
30089f1d 116 wd=$(lisp); $(setwins_almost); \
4746aeeb 117 echo Directories: $$wins; \
b2928357 118 $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins
009368b9 119
125891f4 120autoloads: $(emacs-deps) $(LOADDEFS) doit
6a444c7c 121 wd=$(lisp); $(setwins_almost); \
4746aeeb 122 echo Directories: $$wins; \
b2928357 123 $(emacs) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
f83a4f35 124
325a6861
AS
125# Note: every rule that runs $(emacs) and is called during bootstrap must
126# depend on this.
cd1b15b8 127$(lisp)/subdirs.el:
cc953d27 128 $(MAKE) $(MFLAGS) update-subdirs
98b918b6 129update-subdirs: doit
dce6b995 130 wd=$(lisp); $(setwins); \
98b918b6 131 for file in $$wins; do \
dce6b995 132 $(srcdir)/update-subdirs $$file; \
98b918b6
RS
133 done;
134
600bc46c 135updates: update-subdirs autoloads finder-data custom-deps
c48c3772 136
a9d25c79
EZ
137# This is useful after "cvs up".
138cvs-update: recompile autoloads finder-data custom-deps
c48c3772 139
fbb43902
GM
140# Update the AUTHORS file.
141
142update-authors:
ed5e0894 143 $(emacs) -l authors -f batch-update-authors $(srcdir)/etc/AUTHORS $(srcdir)
fbb43902 144
7ab2c289 145TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
6b61353c 146 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
77389930 147 ${ETAGS} $$els
7ab2c289 148
4136efcb 149TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
6b61353c 150 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
77389930 151 ${ETAGS} -o TAGS-LISP $$els
7ec641b8 152
67292de0
GM
153.SUFFIXES: .elc .el
154
125891f4 155.el.elc: $(emacs-deps)
fc5e09b3 156 -$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $<
cc953d27 157
938cbd34
LK
158# Compile all Lisp files, but don't recompile those that are up to
159# date. Some files don't actually get compiled because they set the
160# local variable no-byte-compile.
61b92c33 161
938cbd34
LK
162# All .elc files are made writable before compilation in case we
163# checked out read-only (CVS option -r). Files MUST be compiled one by
164# one. If we compile several files in a row we can't make sure that
165# the compilation environment is clean. We also set the load-path of
166# the Emacs used for compilation to the current directory and its
167# subdirectories, to make sure require's and load's in the files being
168# compiled find the right files.
29ad9e56 169
063cd226
EZ
170# `|| true' below prevents old Bash versions from getting confused
171# by an error.
125891f4 172compile: $(emacs-deps) $(LOADDEFS) doit
063cd226 173 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
61b92c33 174 wd=$(lisp); $(setwins); \
938cbd34 175 els=`echo $$wins | tr ' \011' '\012\012' | \
61b92c33 176 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
61b92c33 177 for el in $(COMPILE_FIRST) $$els; do \
6ad1de49
EZ
178 if test -f $$el; \
179 then \
180 echo Compiling $$el; \
fc5e09b3 181 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile-if-not-done $$el || exit 1; \
6ad1de49 182 fi \
61b92c33
RS
183 done
184
938cbd34
LK
185# Compile all Lisp files. This is like `compile' but compiles files
186# unconditionally. Some files don't actually get compiled because they
187# set the local variable no-byte-compile.
188
125891f4 189compile-always: $(emacs-deps) $(LOADDEFS) doit
4244e7dc
RS
190 # `|| true' prevents old Bash versions from getting confused
191 # by an error.
e85a77bd 192 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
dce6b995 193 wd=$(lisp); $(setwins); \
938cbd34 194 els=`echo $$wins | tr ' \011' '\012\012' | \
cc953d27 195 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
d849789b 196 for el in $(COMPILE_FIRST) $$els; do \
6ad1de49
EZ
197 if test -f $$el; \
198 then \
199 echo Compiling $$el; \
fc5e09b3 200 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \
6ad1de49 201 fi \
8256e31b 202 done
96ff0f09 203
f1180544 204compile-calc:
cd1b15b8 205 for el in `find $(lisp)/calc -name '*.el'`; do \
dcf91c25 206 echo Compiling $$el; \
fc5e09b3 207 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \
dcf91c25
CW
208 done
209
a9b67cf4
GM
210# Backup compiled Lisp files in elc.tar.gz. If that file already
211# exists, make a backup of it.
212
213backup-compiled-files:
dce6b995
GM
214 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
215 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
a9b67cf4
GM
216
217# Compile Lisp files, but save old compiled files first.
218
61b92c33 219compile-after-backup: backup-compiled-files compile-always
a9b67cf4 220
773cb1a4
NR
221# Recompile all Lisp files which are newer than their .elc files and compile
222# new ones.
7ec641b8 223
099659f9 224recompile: doit $(LOADDEFS) $(lisp)/progmodes/cc-mode.elc
b2928357 225 $(emacs) --eval "(batch-byte-recompile-directory 0)" $(lisp)
7ec641b8 226
6b61353c
KH
227# CC Mode uses a compile time macro system which causes a compile time
228# dependency in cc-mode.elc on the macros in cc-langs.el and the
229# version string in cc-defs.el.
230$(lisp)/progmodes/cc-mode.elc: \
231 $(lisp)/progmodes/cc-mode.el \
232 $(lisp)/progmodes/cc-langs.el \
233 $(lisp)/progmodes/cc-defs.el
fc5e09b3 234 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(lisp)/progmodes/cc-mode.el
a9b67cf4 235
1eee3de4 236# Update MH-E internal autoloads. These are not to be confused with
2537fa5d 237# the autoloads for the MH-E entry points, which are already in loaddefs.el.
e9906608
GM
238MH_E_DIR = $(lisp)/mh-e
239## MH_E_SRC avoids a circular dependency warning for mh-loaddefs.el.
240MH_E_SRC = $(MH_E_DIR)/mh-acros.el $(MH_E_DIR)/mh-alias.el \
241 $(MH_E_DIR)/mh-buffers.el $(MH_E_DIR)/mh-compat.el \
242 $(MH_E_DIR)/mh-comp.el $(MH_E_DIR)/mh-e.el \
243 $(MH_E_DIR)/mh-folder.el $(MH_E_DIR)/mh-funcs.el \
244 $(MH_E_DIR)/mh-gnus.el $(MH_E_DIR)/mh-identity.el \
245 $(MH_E_DIR)/mh-inc.el $(MH_E_DIR)/mh-junk.el \
246 $(MH_E_DIR)/mh-letter.el $(MH_E_DIR)/mh-limit.el \
247 $(MH_E_DIR)/mh-mime.el $(MH_E_DIR)/mh-print.el \
248 $(MH_E_DIR)/mh-scan.el $(MH_E_DIR)/mh-search.el \
249 $(MH_E_DIR)/mh-seq.el $(MH_E_DIR)/mh-show.el \
250 $(MH_E_DIR)/mh-speed.el $(MH_E_DIR)/mh-thread.el \
251 $(MH_E_DIR)/mh-tool-bar.el $(MH_E_DIR)/mh-utils.el \
252 $(MH_E_DIR)/mh-xface.el
253
254mh-autoloads: $(MH_E_DIR)/mh-loaddefs.el
125891f4 255$(MH_E_DIR)/mh-loaddefs.el: $(emacs-deps) $(MH_E_SRC)
2537fa5d 256 $(emacs) -l autoload \
a6f6840e 257 --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \
2537fa5d 258 --eval "(setq generated-autoload-file \"$@\")" \
a6f6840e 259 --eval "(setq make-backup-files nil)" \
e9906608
GM
260 -f batch-update-autoloads $(MH_E_DIR)
261
262CAL_DIR = $(lisp)/calendar
263## Those files that may contain internal calendar autoload cookies.
264## Avoids circular dependency warning for *-loaddefs.el.
265CAL_SRC = $(CAL_DIR)/cal-bahai.el $(CAL_DIR)/cal-china.el \
266 $(CAL_DIR)/cal-coptic.el $(CAL_DIR)/cal-dst.el \
267 $(CAL_DIR)/cal-french.el $(CAL_DIR)/cal-hebrew.el \
268 $(CAL_DIR)/cal-html.el $(CAL_DIR)/cal-islam.el \
269 $(CAL_DIR)/cal-iso.el $(CAL_DIR)/cal-julian.el \
270 $(CAL_DIR)/cal-mayan.el $(CAL_DIR)/cal-menu.el \
271 $(CAL_DIR)/cal-move.el $(CAL_DIR)/cal-persia.el \
272 $(CAL_DIR)/cal-tex.el $(CAL_DIR)/cal-x.el \
273 $(CAL_DIR)/calendar.el $(CAL_DIR)/diary-lib.el \
274 $(CAL_DIR)/holidays.el $(CAL_DIR)/lunar.el \
275 $(CAL_DIR)/solar.el
276
125891f4 277$(CAL_DIR)/cal-loaddefs.el: $(emacs-deps) $(CAL_SRC)
2537fa5d
GM
278 $(emacs) -l autoload \
279 --eval "(setq generate-autoload-cookie \";;;###cal-autoload\")" \
280 --eval "(setq generated-autoload-file \"$@\")" \
281 --eval "(setq make-backup-files nil)" \
e9906608 282 -f batch-update-autoloads $(CAL_DIR)
2537fa5d 283
125891f4 284$(CAL_DIR)/diary-loaddefs.el: $(emacs-deps) $(CAL_SRC)
2537fa5d
GM
285 $(emacs) -l autoload \
286 --eval "(setq generate-autoload-cookie \";;;###diary-autoload\")" \
287 --eval "(setq generated-autoload-file \"$@\")" \
288 --eval "(setq make-backup-files nil)" \
e9906608 289 -f batch-update-autoloads $(CAL_DIR)
2537fa5d 290
125891f4 291$(CAL_DIR)/hol-loaddefs.el: $(emacs-deps) $(CAL_SRC)
2537fa5d
GM
292 $(emacs) -l autoload \
293 --eval "(setq generate-autoload-cookie \";;;###holiday-autoload\")" \
294 --eval "(setq generated-autoload-file \"$@\")" \
295 --eval "(setq make-backup-files nil)" \
e9906608 296 -f batch-update-autoloads $(CAL_DIR)
2537fa5d 297
6b61353c
KH
298# Prepare a bootstrap in the lisp subdirectory.
299#
f586d18e
LK
300# Build loaddefs.el to make sure it's up-to-date. If it's not, that
301# might lead to errors during the bootstrap because something fails to
302# autoload as expected. If there is no emacs binary, then we can't
71d77b40
LT
303# build autoloads yet. In that case we have to use ldefs-boot.el.
304# Bootstrap should always work with ldefs-boot.el. Therefore,
305# whenever a new autoload cookie gets added that is necessary during
306# bootstrapping, ldefs-boot.el should be updated by overwriting it with
307# an up-to-date copy of loaddefs.el that is uncorrupted by
308# local changes. (Because loaddefs.el is an automatically generated
309# file, we don't want to store it in the source repository).
4c5cd2d2
TTN
310#
311# The chmod +w is to handle env var CVSREAD=1. Files named
312# are identified by being the value of `generated-autoload-file'.
6b61353c
KH
313
314bootstrap-prepare:
315 if test -x $(EMACS); then \
316 $(MAKE) $(MFLAGS) autoloads; \
6b61353c 317 fi
d4b9fe4b 318 chmod +w $(lisp)/ps-print.el $(lisp)/emulation/tpu-edt.el \
64cb1fa9 319 $(lisp)/emacs-lisp/cl-loaddefs.el
6b61353c 320
6bf181fb
GM
321maintainer-clean: distclean bootstrap-clean
322 cd $(lisp); rm -f $(AUTOGENEL)
a9b67cf4 323
6bf181fb
GM
324## NB note that this rules assume only one level of subdirs below lisp/.
325## If nested subdirs are added, it's probably time to switch to:
326## find $(lisp) -name "*.elc" -exec rm -f '{}' ';'
0571ccec
KS
327bootstrap-clean:
328 cd $(lisp); rm -f *.elc */*.elc
329
a9b67cf4
GM
330# Generate/update files for the bootstrap process.
331
77a0dbd2 332bootstrap: update-subdirs autoloads compile
21d07b1d
MR
333
334# Generate/update files after the bootstrap process.
335# custom-deps needs `preloaded-file-list'.
336
337bootstrap-after: finder-data custom-deps
a9b67cf4 338
43280888 339distclean:
64865454 340 -rm -f ./Makefile
43280888 341
f772cd18
GM
342.PHONY: check-declare
343
344check-declare:
345 $(emacs) -l $(lisp)/emacs-lisp/check-declare \
346 --eval '(check-declare-directory "$(lisp)")'
347
7ec641b8 348# Makefile ends here.