1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

(compile-files, backup-compiled-files): New targets.

(bootstrap, bootstrap-clean): Ditto.
This commit is contained in:
Gerd Moellmann 1999-10-23 13:22:02 +00:00
parent 18d6eea9b0
commit a9b67cf499

View File

@ -21,6 +21,7 @@ ETAGS = ../lib-src/etags
# to the `lisp' directory.
# - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's
# no point compiling it, although it doesn't hurt.
DONTCOMPILE = bindings.el mail/blessmail.el play/bruce.el cus-load.el \
cus-start.el forms-d2.el forms-pass.el \
international/latin-1.el international/latin-2.el \
@ -108,7 +109,7 @@ $(DONTCOMPILE:.el=.elc):
# make sure require's and load's in the files being compiled find
# the right files.
compile: subdirs.el doit
compile-files: subdirs.el doit
find . -name "*.elc" -print | xargs chmod +w; \
wd=.; $(setwins); \
elpat=`echo $$wins | tr '[ ]' '[\012\012]' | \
@ -117,6 +118,17 @@ compile: subdirs.el doit
echo $$els; \
EMACSLOADPATH=`pwd` $(emacs) -f batch-byte-compile $$els
# Backup compiled Lisp files in elc.tar.gz. If that file already
# exists, make a backup of it.
backup-compiled-files:
-mv elc.tar.gz elc.tar.gz~
tar czf elc.tar.gz *.elc */*.elc
# Compile Lisp files, but save old compiled files first.
compile: backup-compiled-files compile-files
# Recompile all Lisp files which are newer than their .elc files.
# Note that this doesn't create .elc files. It only recompiles if an
# .elc is present.
@ -124,4 +136,14 @@ compile: subdirs.el doit
recompile: doit
$(emacs) -f batch-byte-recompile-directory .
# Remove files for a bootstrap. Compiled Lisp files must be removed
# because otherwise `bootstrap-emacs' would not be built from sources.
bootstrap-clean:
-rm -f *.elc */*.elc
# Generate/update files for the bootstrap process.
bootstrap: compile-files autoloads custom-deps
# Makefile ends here.