diff options
| author | Gerd Moellmann | 2001-03-30 15:58:27 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-03-30 15:58:27 +0000 |
| commit | 6e6f3adbb5f92c2fa953e6d4fcb4871dd8c54f7d (patch) | |
| tree | 248ccdf0a6a7d10ca8ac8c6aa2dc38559dc2a8b9 | |
| parent | fa066d09be4aebf4cb13db3b87c3c46fe21387b0 (diff) | |
| download | emacs-6e6f3adbb5f92c2fa953e6d4fcb4871dd8c54f7d.tar.gz emacs-6e6f3adbb5f92c2fa953e6d4fcb4871dd8c54f7d.zip | |
(.PHONY): Add for bootstrap targets.
(bootstrap-clean): New target.
(bootstrap): Use it instead of `clean'.
| -rw-r--r-- | Makefile.in | 7 |
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: | |||
| 661 | ### special emacs executable is built from Lisp sources, which is then | 661 | ### special emacs executable is built from Lisp sources, which is then |
| 662 | ### used to compile Lisp files. The last step is a "normal" make. | 662 | ### used to compile Lisp files. The last step is a "normal" make. |
| 663 | 663 | ||
| 664 | bootstrap: clean bootstrap-lisp-1 bootstrap-src bootstrap-lisp clean all info | 664 | .PHONY: bootstrap bootstrap-lisp-1 boostrap-src bootstrap-lisp bootstrap-clean |
| 665 | |||
| 666 | bootstrap: clean bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean all info | ||
| 665 | 667 | ||
| 666 | bootstrap-lisp-1: | 668 | bootstrap-lisp-1: |
| 667 | (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean) | 669 | (cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean) |
| @@ -671,3 +673,6 @@ bootstrap-lisp: | |||
| 671 | 673 | ||
| 672 | bootstrap-src: | 674 | bootstrap-src: |
| 673 | (cd src; $(MAKE) $(MFLAGS) bootstrap) | 675 | (cd src; $(MAKE) $(MFLAGS) bootstrap) |
| 676 | |||
| 677 | bootstrap-clean: | ||
| 678 | (cd src; $(MAKE) $(MFLAGS) clean) | ||