1 # Maintenance productions for the Lisp directory
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
3 # 2006, 2007, 2008 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)
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.
28 # You can specify a different executable on the make command line,
29 # e.g. "make 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 SOURCES
= *.el COPYING Makefile
39 lisptagsfiles1
= $(lisp
)/[a-zA-Z
]*.el
40 lisptagsfiles2
= $(lisp
)/[a-zA-Z
]*/[a-zA-Z
]*.el
41 ETAGS
= ..
/lib-src
/etags
43 # Elisp files auto-generated.
44 AUTOGENEL
= loaddefs.el \
48 eshell
/esh-groups.el \
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
58 $(lisp
)/emacs-lisp
/byte-opt.el \
59 $(lisp
)/emacs-lisp
/bytecomp.el \
61 $(lisp
)/progmodes
/cc-mode.el \
62 $(lisp
)/progmodes
/cc-vars.el
64 # The actual Emacs command run in the targets below.
66 emacs
= EMACSLOADPATH
=$(lisp
) $(EMACS
) $(EMACSOPT
)
68 # Common command to find subdirectories
70 setwins
=subdirs
=`(cd $$wd; find . -type d -print)`; \
71 for file in
$$subdirs; do \
72 case
$$file in
*/Old |
*/RCS |
*/CVS |
*/CVS
/* |
*/.
* |
*/.
*/* |
*/=* ) ;; \
73 *) wins
="$$wins $$wd/$$file" ;; \
77 # Find all subdirectories except `obsolete'.
79 setwins_almost
=subdirs
=`(cd $$wd; find . -type d -print)`; \
80 for file in
$$subdirs; do \
81 case
$$file in
*/Old |
*/RCS |
*/CVS |
*/CVS
/* |
*/.
* |
*/.
*/* |
*/=* |
*/obsolete |
*/term
) ;; \
82 *) wins
="$$wins $$wd/$$file" ;; \
90 # Note that custom-deps and finder-data depend on autoloads rather
91 # than on loaddefs.el, so that autoloads does not run in parallel with
92 # them under "make -j", because that could delete loaddefs.el from
94 custom-deps
: $(lisp
)/subdirs.el autoloads
$(lisp
)/cus-load.el doit
95 wd
=$(lisp
); $(setwins_almost
); \
96 echo Directories
: $$wins; \
97 $(emacs
) -l cus-dep
--eval
'(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies
$$wins
99 finder-data
: $(lisp
)/subdirs.el autoloads doit
100 wd
=$(lisp
); $(setwins_almost
); \
101 echo Directories
: $$wins; \
102 $(emacs
) -l finder
--eval
'(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist
$$wins
105 echo
";;; loaddefs.el --- automatically extracted autoloads" >> $@
106 echo
";;" >> $@
; echo
";;; Code:" >> $@
108 echo
";; Local Variables:" >> $@
109 echo
";; version-control: never" >> $@
110 echo
";; no-byte-compile: t" >> $@
111 echo
";; no-update-autoloads: t" >> $@
113 echo
";;; loaddefs.el ends here" >> $@
114 autoloads
: $(lisp
)/subdirs.el
$(lisp
)/loaddefs.el doit
115 wd
=$(lisp
); $(setwins_almost
); \
116 echo Directories
: $$wins; \
117 $(emacs
) -l autoload
--eval
'(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads
$$wins
120 $(MAKE
) $(MFLAGS
) update-subdirs
122 wd
=$(lisp
); $(setwins
); \
123 for file in
$$wins; do \
124 $(srcdir)/update-subdirs
$$file; \
127 updates
: update-subdirs autoloads finder-data custom-deps
129 # This is useful after "cvs up".
130 cvs-update
: recompile autoloads finder-data custom-deps
132 # Update the AUTHORS file.
135 $(emacs
) -l authors
-f batch-update-authors
$(srcdir)/AUTHORS
$(srcdir)
137 TAGS
: $(lisptagsfiles1
) $(lisptagsfiles2
)
138 els
=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
141 TAGS-LISP
: $(lisptagsfiles1
) $(lisptagsfiles2
)
142 els
=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
143 ${ETAGS} -o TAGS-LISP
$$els
147 .el.elc
: $(lisp
)/subdirs.el
148 -$(emacs
) -f batch-byte-compile
$<
150 # Compile all Lisp files, but don't recompile those that are up to
151 # date. Some files don't actually get compiled because they set the
152 # local variable no-byte-compile.
154 # All .elc files are made writable before compilation in case we
155 # checked out read-only (CVS option -r). Files MUST be compiled one by
156 # one. If we compile several files in a row we can't make sure that
157 # the compilation environment is clean. We also set the load-path of
158 # the Emacs used for compilation to the current directory and its
159 # subdirectories, to make sure require's and load's in the files being
160 # compiled find the right files.
162 # `|| true' below prevents old Bash versions from getting confused
164 compile
: $(lisp
)/subdirs.el mh-autoloads doit
165 find
$(lisp
) -name
"*.elc" -print | xargs chmod
+w
>/dev
/null
2>&1 || true
; \
166 wd
=$(lisp
); $(setwins
); \
167 els
=`echo $$wins | tr ' \011' '\012\012' | \
168 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
169 for el in
$(COMPILE_FIRST
) $$els; do \
172 echo Compiling
$$el; \
173 $(emacs
) -f batch-byte-compile-if-not-done
$$el || exit
1; \
177 # Compile all Lisp files. This is like `compile' but compiles files
178 # unconditionally. Some files don't actually get compiled because they
179 # set the local variable no-byte-compile.
181 compile-always
: $(lisp
)/subdirs.el mh-autoloads doit
182 # `|| true' prevents old Bash versions from getting confused
184 find
$(lisp
) -name
"*.elc" -print | xargs chmod
+w
>/dev
/null
2>&1 || true
; \
185 wd
=$(lisp
); $(setwins
); \
186 els
=`echo $$wins | tr ' \011' '\012\012' | \
187 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
188 for el in
$(COMPILE_FIRST
) $$els; do \
191 echo Compiling
$$el; \
192 $(emacs
) -f batch-byte-compile
$$el || exit
1; \
197 for el in
`find $(lisp)/calc -name '*.el'`; do \
198 echo Compiling
$$el; \
199 $(emacs
) -f batch-byte-compile
$$el || exit
1; \
202 # Backup compiled Lisp files in elc.tar.gz. If that file already
203 # exists, make a backup of it.
205 backup-compiled-files
:
206 -mv
$(lisp
)/elc.
tar.gz
$(lisp
)/elc.
tar.gz~
207 -tar czf
$(lisp
)/elc.
tar.gz
$(lisp
)/*.elc
$(lisp
)/*/*.elc
209 # Compile Lisp files, but save old compiled files first.
211 compile-after-backup
: backup-compiled-files compile-always
213 # Recompile all Lisp files which are newer than their .elc files and compile
216 recompile
: doit mh-autoloads
$(lisp
)/progmodes
/cc-mode.elc
217 $(emacs
) --eval
"(batch-byte-recompile-directory 0)" $(lisp
)
219 # CC Mode uses a compile time macro system which causes a compile time
220 # dependency in cc-mode.elc on the macros in cc-langs.el and the
221 # version string in cc-defs.el.
222 $(lisp
)/progmodes
/cc-mode.elc
: \
223 $(lisp
)/progmodes
/cc-mode.el \
224 $(lisp
)/progmodes
/cc-langs.el \
225 $(lisp
)/progmodes
/cc-defs.el
226 $(emacs
) -f batch-byte-compile
$(lisp
)/progmodes
/cc-mode.el
228 # Update MH-E internal autoloads. These are not to be confused with
229 # the autoloads for the MH-E entry points, which are already in
231 MH_E_SRC
= $(lisp
)/mh-e
/mh-acros.el
$(lisp
)/mh-e
/mh-alias.el \
232 $(lisp
)/mh-e
/mh-buffers.el
$(lisp
)/mh-e
/mh-compat.el \
233 $(lisp
)/mh-e
/mh-comp.el
$(lisp
)/mh-e
/mh-e.el \
234 $(lisp
)/mh-e
/mh-folder.el
$(lisp
)/mh-e
/mh-funcs.el \
235 $(lisp
)/mh-e
/mh-gnus.el
$(lisp
)/mh-e
/mh-identity.el \
236 $(lisp
)/mh-e
/mh-inc.el
$(lisp
)/mh-e
/mh-junk.el \
237 $(lisp
)/mh-e
/mh-letter.el
$(lisp
)/mh-e
/mh-limit.el \
238 $(lisp
)/mh-e
/mh-mime.el
$(lisp
)/mh-e
/mh-print.el \
239 $(lisp
)/mh-e
/mh-scan.el
$(lisp
)/mh-e
/mh-search.el \
240 $(lisp
)/mh-e
/mh-seq.el
$(lisp
)/mh-e
/mh-show.el \
241 $(lisp
)/mh-e
/mh-speed.el
$(lisp
)/mh-e
/mh-thread.el \
242 $(lisp
)/mh-e
/mh-tool-bar.el
$(lisp
)/mh-e
/mh-utils.el \
243 $(lisp
)/mh-e
/mh-xface.el
245 mh-autoloads
: $(lisp
)/mh-e
/mh-loaddefs.el
246 $(lisp
)/mh-e
/mh-loaddefs.el
: $(lisp
)/subdirs.el
$(MH_E_SRC
)
247 echo
";;; mh-loaddefs.el --- automatically extracted autoloads" > $@
249 echo
";; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc." >> $@
250 echo
";; Author: Bill Wohler <wohler@newt.com>" >> $@
251 echo
";; Keywords: mail" >> $@
252 echo
";;; Commentary:" >> $@
253 echo
";;; Change Log:" >> $@
254 echo
";;; Code:" >> $@
256 echo
"(provide 'mh-loaddefs)" >> $@
257 echo
";; Local Variables:" >> $@
258 echo
";; version-control: never" >> $@
259 echo
";; no-byte-compile: t" >> $@
260 echo
";; no-update-autoloads: t" >> $@
262 echo
";;; mh-loaddefs.el ends here" >> $@
265 --eval
"(setq generate-autoload-cookie \";;;###mh-autoload\")" \
266 --eval
"(setq generated-autoload-file \"$(lisp)/mh-e/mh-loaddefs.el\")" \
267 --eval
"(setq make-backup-files nil)" \
268 -f batch-update-autoloads
$(lisp
)/mh-e
270 # Prepare a bootstrap in the lisp subdirectory.
272 # Build loaddefs.el to make sure it's up-to-date. If it's not, that
273 # might lead to errors during the bootstrap because something fails to
274 # autoload as expected. If there is no emacs binary, then we can't
275 # build autoloads yet. In that case we have to use ldefs-boot.el.
276 # Bootstrap should always work with ldefs-boot.el. Therefore,
277 # whenever a new autoload cookie gets added that is necessary during
278 # bootstrapping, ldefs-boot.el should be updated by overwriting it with
279 # an up-to-date copy of loaddefs.el that is uncorrupted by
280 # local changes. (Because loaddefs.el is an automatically generated
281 # file, we don't want to store it in the source repository).
284 if
test -x
$(EMACS
); then \
285 $(MAKE
) $(MFLAGS
) autoloads
; \
287 cp
$(lisp
)/ldefs-boot.el
$(lisp
)/loaddefs.el
; \
290 maintainer-clean
: distclean
291 cd
$(lisp
); rm -f
*.elc
*/*.elc
$(AUTOGENEL
)
294 cd
$(lisp
); rm -f
*.elc
*/*.elc
296 # Generate/update files for the bootstrap process.
298 bootstrap
: update-subdirs autoloads compile
300 # Generate/update files after the bootstrap process.
301 # custom-deps needs `preloaded-file-list'.
303 bootstrap-after
: finder-data custom-deps
308 # Makefile ends here.