summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-03-30 15:58:27 +0000
committerGerd Moellmann <gerd@gnu.org>2001-03-30 15:58:27 +0000
commitf9724cefdd0a106af1e3cb82bb1148257433fd55 (patch)
tree2ca3a5a4ea4d19c16a244da3109c4f8dedc58a92 /Makefile.in
parent5dd6a49d39ee7189e13b423d0e8aed28080bcc0d (diff)
downloademacs-f9724cefdd0a106af1e3cb82bb1148257433fd55.tar.gz
(.PHONY): Add for bootstrap targets.
(bootstrap-clean): New target. (bootstrap): Use it instead of `clean'.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index cfba89724c0..c010510a013 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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)