* textmodes/flyspell.el (message-signature-separator):
[emacs.git] / lisp / Makefile.in
blobefb95b37057f11cefd3247da71e7d23874c8e4d6
1 # Maintenance productions for the Lisp directory
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
3 # 2006, 2007 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
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 3, or (at your option)
10 # any later version.
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.
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
19 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 # Boston, MA 02110-1301, USA.
22 SHELL = /bin/sh
24 lisp=@srcdir@
25 VPATH=@srcdir@
26 srcdir=@srcdir@/..
28 # You can specify a different executable on the make command line,
29 # e.g. "make EMACS=../src/emacs ...".
31 EMACS = ../src/emacs
33 # Command line flags for Emacs. This must include --multibyte,
34 # otherwise some files will not compile.
36 EMACSOPT = -batch --no-site-file --multibyte
38 # Extra flags to pass to the byte compiler
39 BYTE_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.
44 SOURCES = *.el COPYING Makefile
45 lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el
46 lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el
47 ETAGS = ../lib-src/etags
49 # Elisp files auto-generated.
50 AUTOGENEL = loaddefs.el \
51 cus-load.el \
52 finder-inf.el \
53 subdirs.el \
54 eshell/esh-groups.el \
55 mh-e/mh-loaddefs.el
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.
63 COMPILE_FIRST = \
64 $(lisp)/emacs-lisp/byte-opt.el \
65 $(lisp)/emacs-lisp/bytecomp.el \
66 $(lisp)/subr.el \
67 $(lisp)/progmodes/cc-mode.el \
68 $(lisp)/progmodes/cc-vars.el
70 # The actual Emacs command run in the targets below.
72 emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
74 # Common command to find subdirectories
76 setwins=subdirs=`(cd $$wd; find . -type d -print)`; \
77 for file in $$subdirs; do \
78 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \
79 *) wins="$$wins $$wd/$$file" ;; \
80 esac; \
81 done
83 # Find all subdirectories except `obsolete'.
85 setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \
86 for file in $$subdirs; do \
87 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \
88 *) wins="$$wins $$wd/$$file" ;; \
89 esac; \
90 done
92 doit:
94 $(lisp)/cus-load.el:
95 touch $@
96 custom-deps: $(lisp)/subdirs.el $(lisp)/loaddefs.el $(lisp)/cus-load.el doit
97 wd=$(lisp); $(setwins_almost); \
98 echo Directories: $$wins; \
99 $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins
101 finder-data: $(lisp)/subdirs.el $(lisp)/loaddefs.el doit
102 wd=$(lisp); $(setwins_almost); \
103 echo Directories: $$wins; \
104 $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins
106 $(lisp)/loaddefs.el:
107 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@
108 echo ";;" >> $@; echo ";;; Code:" >> $@
109 echo "\f" >> $@
110 echo ";; Local Variables:" >> $@
111 echo ";; version-control: never" >> $@
112 echo ";; no-byte-compile: t" >> $@
113 echo ";; no-update-autoloads: t" >> $@
114 echo ";; End:" >> $@
115 echo ";;; loaddefs.el ends here" >> $@
116 autoloads: $(lisp)/subdirs.el $(lisp)/loaddefs.el doit
117 wd=$(lisp); $(setwins_almost); \
118 echo Directories: $$wins; \
119 $(emacs) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
121 $(lisp)/subdirs.el:
122 $(MAKE) $(MFLAGS) update-subdirs
123 update-subdirs: doit
124 wd=$(lisp); $(setwins); \
125 for file in $$wins; do \
126 $(srcdir)/update-subdirs $$file; \
127 done;
129 updates: update-subdirs autoloads finder-data custom-deps
131 # This is useful after "cvs up".
132 cvs-update: recompile autoloads finder-data custom-deps
134 # Update the AUTHORS file.
136 update-authors:
137 $(emacs) -l authors -f batch-update-authors $(srcdir)/etc/AUTHORS $(srcdir)
139 TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
140 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
141 ${ETAGS} $$els
143 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
144 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
145 ${ETAGS} -o TAGS-LISP $$els
147 .SUFFIXES: .elc .el
149 .el.elc: $(lisp)/subdirs.el
150 -$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $<
152 # Compile all Lisp files, but don't recompile those that are up to
153 # date. Some files don't actually get compiled because they set the
154 # local variable no-byte-compile.
156 # All .elc files are made writable before compilation in case we
157 # checked out read-only (CVS option -r). Files MUST be compiled one by
158 # one. If we compile several files in a row we can't make sure that
159 # the compilation environment is clean. We also set the load-path of
160 # the Emacs used for compilation to the current directory and its
161 # subdirectories, to make sure require's and load's in the files being
162 # compiled find the right files.
164 # `|| true' below prevents old Bash versions from getting confused
165 # by an error.
166 compile: $(lisp)/subdirs.el mh-autoloads doit
167 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
168 wd=$(lisp); $(setwins); \
169 els=`echo $$wins | tr ' \011' '\012\012' | \
170 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
171 for el in $(COMPILE_FIRST) $$els; do \
172 if test -f $$el; \
173 then \
174 echo Compiling $$el; \
175 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile-if-not-done $$el || exit 1; \
176 fi \
177 done
179 # Compile all Lisp files. This is like `compile' but compiles files
180 # unconditionally. Some files don't actually get compiled because they
181 # set the local variable no-byte-compile.
183 compile-always: $(lisp)/subdirs.el mh-autoloads doit
184 # `|| true' prevents old Bash versions from getting confused
185 # by an error.
186 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
187 wd=$(lisp); $(setwins); \
188 els=`echo $$wins | tr ' \011' '\012\012' | \
189 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
190 for el in $(COMPILE_FIRST) $$els; do \
191 if test -f $$el; \
192 then \
193 echo Compiling $$el; \
194 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \
195 fi \
196 done
198 compile-calc:
199 for el in `find $(lisp)/calc -name '*.el'`; do \
200 echo Compiling $$el; \
201 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \
202 done
204 # Backup compiled Lisp files in elc.tar.gz. If that file already
205 # exists, make a backup of it.
207 backup-compiled-files:
208 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
209 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
211 # Compile Lisp files, but save old compiled files first.
213 compile-after-backup: backup-compiled-files compile-always
215 # Recompile all Lisp files which are newer than their .elc files and compile
216 # new ones.
218 recompile: doit mh-autoloads $(lisp)/progmodes/cc-mode.elc
219 $(emacs) --eval "(batch-byte-recompile-directory 0)" $(lisp)
221 # CC Mode uses a compile time macro system which causes a compile time
222 # dependency in cc-mode.elc on the macros in cc-langs.el and the
223 # version string in cc-defs.el.
224 $(lisp)/progmodes/cc-mode.elc: \
225 $(lisp)/progmodes/cc-mode.el \
226 $(lisp)/progmodes/cc-langs.el \
227 $(lisp)/progmodes/cc-defs.el
228 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $(lisp)/progmodes/cc-mode.el
230 # Update MH-E internal autoloads. These are not to be confused with
231 # the autoloads for the MH-E entry points, which are already in
232 # loaddefs.el.
233 MH_E_SRC = $(lisp)/mh-e/mh-acros.el $(lisp)/mh-e/mh-alias.el \
234 $(lisp)/mh-e/mh-buffers.el $(lisp)/mh-e/mh-compat.el \
235 $(lisp)/mh-e/mh-comp.el $(lisp)/mh-e/mh-e.el \
236 $(lisp)/mh-e/mh-folder.el $(lisp)/mh-e/mh-funcs.el \
237 $(lisp)/mh-e/mh-gnus.el $(lisp)/mh-e/mh-identity.el \
238 $(lisp)/mh-e/mh-inc.el $(lisp)/mh-e/mh-junk.el \
239 $(lisp)/mh-e/mh-letter.el $(lisp)/mh-e/mh-limit.el \
240 $(lisp)/mh-e/mh-mime.el $(lisp)/mh-e/mh-print.el \
241 $(lisp)/mh-e/mh-scan.el $(lisp)/mh-e/mh-search.el \
242 $(lisp)/mh-e/mh-seq.el $(lisp)/mh-e/mh-show.el \
243 $(lisp)/mh-e/mh-speed.el $(lisp)/mh-e/mh-thread.el \
244 $(lisp)/mh-e/mh-tool-bar.el $(lisp)/mh-e/mh-utils.el \
245 $(lisp)/mh-e/mh-xface.el
247 mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el
248 $(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el $(MH_E_SRC)
249 echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@
250 echo "" >> $@
251 echo ";; Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc." >> $@
252 echo ";; Author: Bill Wohler <wohler@newt.com>" >> $@
253 echo ";; Keywords: mail" >> $@
254 echo ";;; Commentary:" >> $@
255 echo ";;; Change Log:" >> $@
256 echo ";;; Code:" >> $@
257 echo "\f" >> $@
258 echo "(provide 'mh-loaddefs)" >> $@
259 echo ";; Local Variables:" >> $@
260 echo ";; version-control: never" >> $@
261 echo ";; no-byte-compile: t" >> $@
262 echo ";; no-update-autoloads: t" >> $@
263 echo ";; End:" >> $@
264 echo ";;; mh-loaddefs.el ends here" >> $@
265 $(emacs) \
266 -l autoload \
267 --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \
268 --eval "(setq generated-autoload-file \"$(lisp)/mh-e/mh-loaddefs.el\")" \
269 --eval "(setq make-backup-files nil)" \
270 -f batch-update-autoloads $(lisp)/mh-e
272 # Prepare a bootstrap in the lisp subdirectory.
274 # Build loaddefs.el to make sure it's up-to-date. If it's not, that
275 # might lead to errors during the bootstrap because something fails to
276 # autoload as expected. If there is no emacs binary, then we can't
277 # build autoloads yet. In that case we have to use ldefs-boot.el.
278 # Bootstrap should always work with ldefs-boot.el. Therefore,
279 # whenever a new autoload cookie gets added that is necessary during
280 # bootstrapping, ldefs-boot.el should be updated by overwriting it with
281 # an up-to-date copy of loaddefs.el that is uncorrupted by
282 # local changes. (Because loaddefs.el is an automatically generated
283 # file, we don't want to store it in the source repository).
285 # The chmod +w is to handle env var CVSREAD=1. Files named
286 # are identified by being the value of `generated-autoload-file'.
288 bootstrap-prepare:
289 if test -x $(EMACS); then \
290 $(MAKE) $(MFLAGS) autoloads; \
291 else \
292 cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el; \
294 chmod +w $(lisp)/loaddefs.el \
295 $(lisp)/ps-print.el \
296 $(lisp)/emacs-lisp/cl-loaddefs.el
298 maintainer-clean: distclean
299 cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL)
301 bootstrap-clean:
302 cd $(lisp); rm -f *.elc */*.elc
304 # Generate/update files for the bootstrap process.
306 bootstrap: update-subdirs autoloads compile
308 # Generate/update files after the bootstrap process.
309 # custom-deps needs `preloaded-file-list'.
311 bootstrap-after: finder-data custom-deps
313 distclean:
314 -rm -f ./Makefile
316 # Makefile ends here.