diff options
| author | Richard M. Stallman | 2004-11-08 16:40:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-11-08 16:40:33 +0000 |
| commit | 51769fccbc9b631c98cbfe4dd4b50437ee9da6d5 (patch) | |
| tree | f6c2cc3d7769ac254412e4b78daa072b7f305135 | |
| parent | 997a1ae5fb3fe84a718e47481f8933def06b4304 (diff) | |
| download | emacs-51769fccbc9b631c98cbfe4dd4b50437ee9da6d5.tar.gz emacs-51769fccbc9b631c98cbfe4dd4b50437ee9da6d5.zip | |
Comment changes.
| -rw-r--r-- | Makefile.in | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 8bc43d4ce80..c62c9e2b41f 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -51,6 +51,15 @@ | |||
| 51 | # | 51 | # |
| 52 | # make extraclean | 52 | # make extraclean |
| 53 | # Still more severe - delete backup and autosave files, too. | 53 | # Still more severe - delete backup and autosave files, too. |
| 54 | # | ||
| 55 | # make bootstrap-build | ||
| 56 | # Recompiles changed Emacs Lisp files using the latest C source, | ||
| 57 | # then rebuilds Emacs. This is faster than `make bootstrap' | ||
| 58 | # but once in a while an old .elc file can cause trouble. | ||
| 59 | # | ||
| 60 | # make bootfast | ||
| 61 | # Recompiles all the Emacs Lisp files using the latest source, | ||
| 62 | # then rebuilds Emacs. | ||
| 54 | 63 | ||
| 55 | SHELL = /bin/sh | 64 | SHELL = /bin/sh |
| 56 | 65 | ||
| @@ -755,7 +764,8 @@ bootstrap-build: FRC | |||
| 755 | bootstrap-clean-before: bootstrap-clean-before-fast FRC | 764 | bootstrap-clean-before: bootstrap-clean-before-fast FRC |
| 756 | (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean) | 765 | (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean) |
| 757 | 766 | ||
| 758 | ### Used for `bootstrap' to avoid deleting existing dumped Emacs executables. | 767 | ### Used for `bootfast' to avoid deleting existing dumped Emacs executables |
| 768 | ### and compiled .elc files. | ||
| 759 | bootstrap-clean-before-fast: FRC | 769 | bootstrap-clean-before-fast: FRC |
| 760 | (cd src; $(MAKE) $(MFLAGS) mostlyclean) | 770 | (cd src; $(MAKE) $(MFLAGS) mostlyclean) |
| 761 | (cd oldXMenu; $(MAKE) $(MFLAGS) clean) | 771 | (cd oldXMenu; $(MAKE) $(MFLAGS) clean) |