(.PHONY): Add for bootstrap targets.
(bootstrap-clean): New target. (bootstrap): Use it instead of `clean'.
This commit is contained in:
parent
fa066d09be
commit
6e6f3adbb5
1 changed files with 6 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue