summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>1999-10-23 13:22:51 +0000
committerGerd Moellmann <gerd@gnu.org>1999-10-23 13:22:51 +0000
commit15535b99df2d9bb44ea8a16b146ea4a955c36536 (patch)
treec0cf30f05f551d311c728c9e6962badb55a8ceac /Makefile.in
parentd2d822e26d784909d0759416a3334eba0df6bcee (diff)
downloademacs-15535b99df2d9bb44ea8a16b146ea4a955c36536.tar.gz
(bootstrap): New target.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 0abe54fc887..e4e6e3434d6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -620,3 +620,18 @@ info: force-info
(cd man; $(MAKE) $(MFLAGS) info)
dvi:
(cd man; $(MAKE) $(MFLAGS) dvi)
+
+#### Bootstrapping.
+
+### This is meant for Emacs maintainers only. It first cleans the
+### lisp subdirectory, removing all compiled Lisp files. Then a
+### special emacs executable is built from Lisp sources, which is then
+### used to compile Lisp files. The last step is a "normal" make.
+
+bootstrap: clean
+ (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean)
+ (cd src; $(MAKE) $(MFLAGS) bootstrap)
+ -(cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs)
+ $(MAKE) $(MFLAGS) clean
+ $(MAKE) $(MFLAGS)
+