diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-09-11 21:00:08 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-09-11 21:00:08 +0000 |
commit | ffb0b9d7675cf83af7808ebc55b90044aec7653b (patch) | |
tree | 1201160f9c6f9451b32046ee461f9a3f29f6cbfd /Makefile.in | |
parent | edeabf087f741c1317e47992376cf7f1f29d1a31 (diff) | |
download | emacs-ffb0b9d7675cf83af7808ebc55b90044aec7653b.tar.gz |
(bootstrap-lisp-1, bootstrap-lisp, bootstrap)
(bootstrap-clean-after): Delete.
(bootstrap): Make the sequencing explicit.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/Makefile.in b/Makefile.in index 577d5fb94e8..fde9f14c40c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -711,7 +711,7 @@ dvi: ### special emacs executable is built from Lisp sources, which is then ### used to compile Lisp files. The last step is a "normal" make. -.PHONY: bootstrap bootstrap-lisp-1 boostrap-src bootstrap-lisp bootstrap-clean +.PHONY: bootstrap .PHONY: maybe_bootstrap maybe_bootstrap: @@ -721,16 +721,12 @@ maybe_bootstrap: exit 1;\ fi -bootstrap: bootstrap-clean-before bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean-after all info - -bootstrap-lisp-1: +bootstrap: bootstrap-clean-before info FRC (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean) - -bootstrap-lisp: - (cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs) - -bootstrap-src: (cd src; $(MAKE) $(MFLAGS) bootstrap) + (cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs) + (cd src; $(MAKE) $(MFLAGS) mostlyclean) + $(MAKE) $(MFLAGS) all ### Used for `bootstrap' to avoid deleting existing dumped Emacs executables. bootstrap-clean-before: FRC @@ -743,5 +739,3 @@ bootstrap-clean-before: FRC -(cd lispintro && $(MAKE) $(MFLAGS) clean) (cd leim; $(MAKE) $(MFLAGS) clean) -bootstrap-clean-after: - (cd src; $(MAKE) $(MFLAGS) mostlyclean) |