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