]> code.delx.au - gnu-emacs/blobdiff - Makefile.in
(read-face-attribute, defined-colors, color-defined-p):
[gnu-emacs] / Makefile.in
index 0abe54fc887a9f7f0f49a54face764fe74017a8d..3ddc8980682af145321b04c4ebfc54498c1c3be6 100644 (file)
@@ -317,7 +317,7 @@ install-arch-dep: mkdir
 
 ## Note that we copy DOC* and then delete DOC
 ## as a workaround for a bug in tar on Ultrix 4.2.
-install-arch-indep: mkdir
+install-arch-indep: mkdir info
        -set ${COPYDESTS} ; \
        unset CDPATH; \
        for dir in ${COPYDIR} ; do \
@@ -431,7 +431,7 @@ install-leim: leim/Makefile mkdir
 
 ### Build Emacs and install it, stripping binaries while installing them.
 install-strip:
-       $(MAKE) INSTALL_STRIP=-s
+       $(MAKE) INSTALL_STRIP=-s install
 
 ### Build all the directories we're going to install Emacs in. Since
 ### we may be creating several layers of directories (for example,
@@ -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)
+