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