# HG changeset patch # User Stefan Monnier # Date 1031778008 0 # Node ID b375ca944a1444d40eb3aec282fa2d5fd286b332 # Parent 63f5cc467ceadf1164a2347cea783cdafe5c22a5 (bootstrap-lisp-1, bootstrap-lisp, bootstrap) (bootstrap-clean-after): Delete. (bootstrap): Make the sequencing explicit. diff -r 63f5cc467cea -r b375ca944a14 Makefile.in --- a/Makefile.in Wed Sep 11 20:57:50 2002 +0000 +++ b/Makefile.in Wed Sep 11 21:00:08 2002 +0000 @@ -711,7 +711,7 @@ ### 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 @@ 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 src; $(MAKE) $(MFLAGS) bootstrap) (cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/bootstrap-emacs) - -bootstrap-src: - (cd src; $(MAKE) $(MFLAGS) bootstrap) + (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 @@ -(cd lispintro && $(MAKE) $(MFLAGS) clean) (cd leim; $(MAKE) $(MFLAGS) clean) -bootstrap-clean-after: - (cd src; $(MAKE) $(MFLAGS) mostlyclean)