diff options
| author | Eli Zaretskii | 2002-03-09 15:14:17 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-03-09 15:14:17 +0000 |
| commit | b9c1fa2e752fb3d6b7d8b1268cc1010af559ad27 (patch) | |
| tree | a1fb93b601fef96afa94154883b4492fbf8757be | |
| parent | 124daeb8f183920d94b28d5d71e8e79add644428 (diff) | |
| download | emacs-b9c1fa2e752fb3d6b7d8b1268cc1010af559ad27.tar.gz emacs-b9c1fa2e752fb3d6b7d8b1268cc1010af559ad27.zip | |
(maybe_bootstrap): Fix last change.
| -rw-r--r-- | msdos/ChangeLog | 12 | ||||
| -rw-r--r-- | msdos/mainmake.v2 | 4 |
2 files changed, 14 insertions, 2 deletions
diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 8293e040d58..fe85715ee61 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2002-03-09 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | Add support for bootstraping Emacs: | ||
| 4 | |||
| 5 | * sed1v2.inp: Edit the bootstrap-* targets. Fix the mostlyclean | ||
| 6 | target. | ||
| 7 | |||
| 8 | * mainmake.v2 (maybe_bootstrap, bootstrap, bootstrap-lisp-1) | ||
| 9 | (bootstrap-lisp, bootstrap-src, bootstrap-clean-before) | ||
| 10 | (bootstrap-clean-after): New targets. | ||
| 11 | (all): Depend on maybe_bootstrap. | ||
| 12 | |||
| 1 | 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il> | 13 | 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 14 | ||
| 3 | * sed1v2.inp: Delete _gdbinit in distclean target. | 15 | * sed1v2.inp: Delete _gdbinit in distclean target. |
diff --git a/msdos/mainmake.v2 b/msdos/mainmake.v2 index 1a7857b3f02..b99bf9ab7c1 100644 --- a/msdos/mainmake.v2 +++ b/msdos/mainmake.v2 | |||
| @@ -153,9 +153,9 @@ clean: | |||
| 153 | .PHONY: maybe_bootstrap | 153 | .PHONY: maybe_bootstrap |
| 154 | 154 | ||
| 155 | maybe_bootstrap: | 155 | maybe_bootstrap: |
| 156 | @if not exist lisp\abbrevs.elc djecho \ | 156 | @if not exist lisp\abbrev.elc djecho \ |
| 157 | "Some *.elc files are missing. You should do a `make bootstrap'." | 157 | "Some *.elc files are missing. You should do a `make bootstrap'." |
| 158 | @if not exist lisp\abbrevs.elc redir -e /dev/null -oe redir fail-this-make.exe | 158 | @if not exist lisp\abbrev.elc redir -e /dev/null -oe redir fail-this-make.exe |
| 159 | 159 | ||
| 160 | bootstrap: bootstrap-clean-before bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean-after all info | 160 | bootstrap: bootstrap-clean-before bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean-after all info |
| 161 | 161 | ||