1 # Maintenance productions for the Lisp directory
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 # This file is part of GNU Emacs.
6 # GNU Emacs is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, USA.
27 # You can specify a different executable on the make command line,
28 # e.g. "make EMACS=../src/emacs ...".
32 # Command line flags for Emacs. This must include --multibyte,
33 # otherwise some files will not compile.
35 EMACSOPT
= -batch
--no-site-file
--multibyte
37 SOURCES
= *.el COPYING Makefile
38 lisptagsfiles1
= $(lisp
)/[a-zA-Z
]*.el
39 lisptagsfiles2
= $(lisp
)/[a-zA-Z
]*/[a-zA-Z
]*.el
40 ETAGS
= ..
/lib-src
/etags
42 # Elisp files auto-generated.
43 AUTOGENEL
= loaddefs.el \
47 eshell
/esh-groups.el \
50 # Files to compile before others during a bootstrap. This is done to
51 # speed up the bootstrap process. The CC files are compiled first
52 # because CC mode tweaks the compilation process, and requiring
53 # cc-mode when it is not compiled doesn't work during the
57 $(lisp
)/emacs-lisp
/byte-opt.el \
58 $(lisp
)/emacs-lisp
/bytecomp.el \
60 $(lisp
)/progmodes
/cc-mode.el \
61 $(lisp
)/progmodes
/cc-vars.el
63 # The actual Emacs command run in the targets below.
65 emacs
= EMACSLOADPATH
=$(lisp
) $(EMACS
) $(EMACSOPT
)
67 # Common command to find subdirectories
69 setwins
=subdirs
=`(cd $$wd; find . -type d -print)`; \
70 for file in
$$subdirs; do \
71 case
$$file in
*/Old |
*/RCS |
*/CVS |
*/CVS
/* |
*/.
* |
*/.
*/* |
*/=* ) ;; \
72 *) wins
="$$wins $$wd/$$file" ;; \
76 setwins_almost
=subdirs
=`(cd $$wd; find . -type d -print)`; \
77 for file in
$$subdirs; do \
78 case
$$file in
*/Old |
*/RCS |
*/CVS |
*/CVS
/* |
*/.
* |
*/.
*/* |
*/=* |
*/obsolete |
*/term
) ;; \
79 *) wins
="$$wins $$wd/$$file" ;; \
87 custom-deps
: $(lisp
)/cus-load.el doit
88 wd
=$(lisp
); $(setwins_almost
); \
89 echo Directories
: $$wins; \
90 $(EMACS
) $(EMACSOPT
) -l cus-dep
--eval
'(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies
$$wins
93 wd
=$(lisp
); $(setwins_almost
); \
94 echo Directories
: $$wins; \
95 $(EMACS
) $(EMACSOPT
) -l finder
--eval
'(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist
$$wins
98 echo
";;; loaddefs.el --- automatically extracted autoloads" >> $@
99 echo
";;" >> $@
; echo
";;; Code:" >> $@
101 echo
";; Local Variables:" >> $@
102 echo
";; version-control: never" >> $@
103 echo
";; no-byte-compile: t" >> $@
104 echo
";; no-update-autoloads: t" >> $@
106 echo
";;; loaddefs.el ends here" >> $@
107 autoloads
: $(lisp
)/loaddefs.el doit
108 wd
=$(lisp
); $(setwins
); \
109 echo Directories
: $$wins; \
110 $(EMACS
) $(EMACSOPT
) -l autoload
--eval
'(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads
$$wins
113 $(MAKE
) $(MFLAGS
) update-subdirs
115 wd
=$(lisp
); $(setwins
); \
116 for file in
$$wins; do \
117 $(srcdir)/update-subdirs
$$file; \
120 updates
: update-subdirs autoloads finder-data custom-deps
122 # This is useful after "cvs up".
123 cvs-update
: recompile autoloads finder-data custom-deps
125 # Update the AUTHORS file.
128 $(emacs
) -l authors
-f batch-update-authors
$(srcdir)/AUTHORS
$(srcdir)
130 TAGS
: $(lisptagsfiles1
) $(lisptagsfiles2
)
131 els
=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
134 TAGS-LISP
: $(lisptagsfiles1
) $(lisptagsfiles2
)
135 els
=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
136 ${ETAGS} -o TAGS-LISP
$$els
140 .el.elc
: $(lisp
)/subdirs.el
141 -$(emacs
) -f batch-byte-compile
$<
143 # Compile all Lisp files, but don't recompile those that are up to
144 # date. Some files don't actually get compiled because they set the
145 # local variable no-byte-compile.
147 # All .elc files are made writable before compilation in case we
148 # checked out read-only (CVS option -r). Files MUST be compiled one by
149 # one. If we compile several files in a row we can't make sure that
150 # the compilation environment is clean. We also set the load-path of
151 # the Emacs used for compilation to the current directory and its
152 # subdirectories, to make sure require's and load's in the files being
153 # compiled find the right files.
155 compile
: $(lisp
)/subdirs.el mh-autoloads doit
156 find
$(lisp
) -name
"*.elc" -print | xargs chmod
+w
>/dev
/null
2>&1; \
157 wd
=$(lisp
); $(setwins
); \
158 els
=`echo $$wins | tr ' \011' '\012\012' | \
159 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
160 for el in
$(COMPILE_FIRST
) $$els; do \
163 echo Compiling
$$el; \
164 $(emacs
) -f batch-byte-compile-if-not-done
$$el || exit
1; \
168 # Compile all Lisp files. This is like `compile' but compiles files
169 # unconditionally. Some files don't actually get compiled because they
170 # set the local variable no-byte-compile.
172 compile-always
: $(lisp
)/subdirs.el mh-autoloads doit
173 # `|| true' prevents old Bash versions from getting confused
175 find
$(lisp
) -name
"*.elc" -print | xargs chmod
+w
>/dev
/null
2>&1 || true
; \
176 wd
=$(lisp
); $(setwins
); \
177 els
=`echo $$wins | tr ' \011' '\012\012' | \
178 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
179 for el in
$(COMPILE_FIRST
) $$els; do \
182 echo Compiling
$$el; \
183 $(emacs
) -f batch-byte-compile
$$el || exit
1; \
188 for el in
`find $(lisp)/calc -name '*.el'`; do \
189 echo Compiling
$$el; \
190 $(emacs
) -f batch-byte-compile
$$el || exit
1; \
193 # Backup compiled Lisp files in elc.tar.gz. If that file already
194 # exists, make a backup of it.
196 backup-compiled-files
:
197 -mv
$(lisp
)/elc.
tar.gz
$(lisp
)/elc.
tar.gz~
198 -tar czf
$(lisp
)/elc.
tar.gz
$(lisp
)/*.elc
$(lisp
)/*/*.elc
200 # Compile Lisp files, but save old compiled files first.
202 compile-after-backup
: backup-compiled-files compile-always
204 # Recompile all Lisp files which are newer than their .elc files.
205 # Note that this doesn't create .elc files. It only recompiles if an
208 recompile
: doit mh-autoloads
$(lisp
)/progmodes
/cc-mode.elc
209 $(EMACS
) $(EMACSOPT
) --eval
"(batch-byte-recompile-directory 0)" $(lisp
)
211 # CC Mode uses a compile time macro system which causes a compile time
212 # dependency in cc-mode.elc on the macros in cc-langs.el and the
213 # version string in cc-defs.el.
214 $(lisp
)/progmodes
/cc-mode.elc
: \
215 $(lisp
)/progmodes
/cc-mode.el \
216 $(lisp
)/progmodes
/cc-langs.el \
217 $(lisp
)/progmodes
/cc-defs.el
218 $(EMACS
) $(EMACSOPT
) -f batch-byte-compile
$(lisp
)/progmodes
/cc-mode.el
220 # Update MH-E internal autoloads. These are not to be confused with
221 # the autoloads for the MH-E entry points, which are already in
223 MH_E_SRC
= $(lisp
)/mh-e
/mh-acros.el
$(lisp
)/mh-e
/mh-alias.el \
224 $(lisp
)/mh-e
/mh-buffers.el
$(lisp
)/mh-e
/mh-compat.el \
225 $(lisp
)/mh-e
/mh-comp.el
$(lisp
)/mh-e
/mh-e.el \
226 $(lisp
)/mh-e
/mh-folder.el
$(lisp
)/mh-e
/mh-funcs.el \
227 $(lisp
)/mh-e
/mh-gnus.el
$(lisp
)/mh-e
/mh-identity.el \
228 $(lisp
)/mh-e
/mh-inc.el
$(lisp
)/mh-e
/mh-junk.el \
229 $(lisp
)/mh-e
/mh-letter.el
$(lisp
)/mh-e
/mh-limit.el \
230 $(lisp
)/mh-e
/mh-mime.el
$(lisp
)/mh-e
/mh-print.el \
231 $(lisp
)/mh-e
/mh-scan.el
$(lisp
)/mh-e
/mh-search.el \
232 $(lisp
)/mh-e
/mh-seq.el
$(lisp
)/mh-e
/mh-show.el \
233 $(lisp
)/mh-e
/mh-speed.el
$(lisp
)/mh-e
/mh-thread.el \
234 $(lisp
)/mh-e
/mh-tool-bar.el
$(lisp
)/mh-e
/mh-utils.el \
235 $(lisp
)/mh-e
/mh-xface.el
237 mh-autoloads
: $(lisp
)/mh-e
/mh-loaddefs.el
238 $(lisp
)/mh-e
/mh-loaddefs.el
: $(MH_E_SRC
)
239 echo
";;; mh-loaddefs.el --- automatically extracted autoloads" > $@
241 echo
";; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc." >> $@
242 echo
";; Author: Bill Wohler <wohler@newt.com>" >> $@
243 echo
";; Keywords: mail" >> $@
244 echo
";;; Commentary:" >> $@
245 echo
";;; Change Log:" >> $@
246 echo
";;; Code:" >> $@
247 $(EMACS
) $(EMACSOPT
) \
249 --eval
"(setq generate-autoload-cookie \";;;###mh-autoload\")" \
250 --eval
"(setq generated-autoload-file \"$(lisp)/mh-e/mh-loaddefs.el\")" \
251 --eval
"(setq make-backup-files nil)" \
252 -f batch-update-autoloads
$(lisp
)/mh-e
254 echo
"(provide 'mh-loaddefs)" >> $@
255 echo
";; Local Variables:" >> $@
256 echo
";; version-control: never" >> $@
257 echo
";; no-byte-compile: t" >> $@
258 echo
";; no-update-autoloads: t" >> $@
260 echo
";;; mh-loaddefs.el ends here" >> $@
262 # Prepare a bootstrap in the lisp subdirectory.
264 # Build loaddefs.el to make sure it's up-to-date. If it's not, that
265 # might lead to errors during the bootstrap because something fails to
266 # autoload as expected. If there is no emacs binary, then we can't
267 # build autoloads yet. In that case we have to use ldefs-boot.el.
268 # Bootstrap should always work with ldefs-boot.el. Therefore,
269 # whenever a new autoload cookie gets added that is necessary during
270 # bootstrapping, ldefs-boot.el should be updated by overwriting it with
271 # an up-to-date copy of loaddefs.el that is uncorrupted by
272 # local changes. (Because loaddefs.el is an automatically generated
273 # file, we don't want to store it in the source repository).
276 if
test -x
$(EMACS
); then \
277 $(MAKE
) $(MFLAGS
) autoloads
; \
279 cp
$(lisp
)/ldefs-boot.el
$(lisp
)/loaddefs.el
; \
282 maintainer-clean
: distclean
283 cd
$(lisp
); rm -f
*.elc
*/*.elc
$(AUTOGENEL
)
286 cd
$(lisp
); rm -f
*.elc
*/*.elc
288 # Generate/update files for the bootstrap process.
290 bootstrap
: update-subdirs autoloads compile
292 # Generate/update files after the bootstrap process.
293 # custom-deps needs `preloaded-file-list'.
295 bootstrap-after
: finder-data custom-deps
300 # Makefile ends here.