]> git.eshelyaron.com Git - emacs.git/commitdiff
(.PHONY): Add for bootstrap targets.
authorGerd Moellmann <gerd@gnu.org>
Fri, 30 Mar 2001 15:58:27 +0000 (15:58 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 30 Mar 2001 15:58:27 +0000 (15:58 +0000)
(bootstrap-clean): New target.
(bootstrap): Use it instead of `clean'.

Makefile.in

index cfba89724c07d10219b4a1fe6225b51eca3eb5a9..c010510a01363588623aefffaa8dca929b085959 100644 (file)
@@ -661,7 +661,9 @@ dvi:
 ### 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-lisp:
 
 bootstrap-src:
        (cd src; $(MAKE) $(MFLAGS) bootstrap)
+
+bootstrap-clean:
+       (cd src; $(MAKE) $(MFLAGS) clean)