# HG changeset patch # User Gerd Moellmann # Date 985967907 0 # Node ID 1a8ad1e74d48bd2c3e71385e6bed9aac15e97467 # Parent c9960ca5e880a52697cba588f24689d814deabc9 (.PHONY): Add for bootstrap targets. (bootstrap-clean): New target. (bootstrap): Use it instead of `clean'. diff -r c9960ca5e880 -r 1a8ad1e74d48 Makefile.in --- a/Makefile.in Fri Mar 30 15:54:41 2001 +0000 +++ b/Makefile.in Fri Mar 30 15:58:27 2001 +0000 @@ -661,7 +661,9 @@ ### special emacs executable is built from Lisp sources, which is then ### used to compile Lisp files. The last step is a "normal" make. -bootstrap: clean bootstrap-lisp-1 bootstrap-src bootstrap-lisp clean all info +.PHONY: bootstrap bootstrap-lisp-1 boostrap-src bootstrap-lisp bootstrap-clean + +bootstrap: clean bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean all info bootstrap-lisp-1: (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean) @@ -671,3 +673,6 @@ bootstrap-src: (cd src; $(MAKE) $(MFLAGS) bootstrap) + +bootstrap-clean: + (cd src; $(MAKE) $(MFLAGS) clean)