]> git.eshelyaron.com Git - emacs.git/commitdiff
(compile-files, backup-compiled-files): New targets.
authorGerd Moellmann <gerd@gnu.org>
Sat, 23 Oct 1999 13:22:02 +0000 (13:22 +0000)
committerGerd Moellmann <gerd@gnu.org>
Sat, 23 Oct 1999 13:22:02 +0000 (13:22 +0000)
(bootstrap, bootstrap-clean): Ditto.

lisp/Makefile

index 5ea91f93f0b58f1f6c15d0e8f88a2793faa5b90d..9db056ca9318d15b4b380cadef1d190f08fbf371 100644 (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.