diff options
| author | Gerd Moellmann | 2000-03-26 14:13:03 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-26 14:13:03 +0000 |
| commit | 3aca9e8caaab2c89da0e4bdb7e3c0d8d4ff9431f (patch) | |
| tree | 7dbbba67172c971f305c9de97ab015b5ee26760b | |
| parent | cf611f0100d469d0c7a64a3b6b3dcdc7e1d7adf6 (diff) | |
| download | emacs-3aca9e8caaab2c89da0e4bdb7e3c0d8d4ff9431f.tar.gz emacs-3aca9e8caaab2c89da0e4bdb7e3c0d8d4ff9431f.zip | |
(bootstrap-lisp-1, bootstrap-list, bootstrap-src):
New targets.
(bootstrap): Rewritten in terms of the new targets above. Make
info files, too.
| -rw-r--r-- | Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 75d061815ce..6edda06b90d 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -628,10 +628,13 @@ dvi: | |||
| 628 | ### special emacs executable is built from Lisp sources, which is then | 628 | ### special emacs executable is built from Lisp sources, which is then |
| 629 | ### used to compile Lisp files. The last step is a "normal" make. | 629 | ### used to compile Lisp files. The last step is a "normal" make. |
| 630 | 630 | ||
| 631 | bootstrap: clean | 631 | bootstrap: clean bootstrap-lisp-1 bootstrap-src bootstrap-lisp clean all info |
| 632 | |||
| 633 | bootstrap-lisp-1: | ||
| 632 | (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean) | 634 | (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean) |
| 633 | (cd src; $(MAKE) $(MFLAGS) bootstrap) | 635 | |
| 636 | bootstrap-lisp: | ||
| 634 | -(cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs) | 637 | -(cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs) |
| 635 | $(MAKE) $(MFLAGS) clean | ||
| 636 | $(MAKE) $(MFLAGS) | ||
| 637 | 638 | ||
| 639 | bootstrap-src: | ||
| 640 | (cd src; $(MAKE) $(MFLAGS) bootstrap) | ||