diff options
author | Eli Zaretskii <eliz@gnu.org> | 2002-03-20 17:37:50 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2002-03-20 17:37:50 +0000 |
commit | 1af6e3a944c5ce2c17cc4ffcc3033842125c2463 (patch) | |
tree | 9a2ed2d6dc63eca282a1ec87af2fcba8c08be9cd /msdos | |
parent | be52dc903668e047548a0a2dbe7b9d14cebe4cbe (diff) | |
download | emacs-1af6e3a944c5ce2c17cc4ffcc3033842125c2463.tar.gz |
(bootstrap-lisp-1, bootstrap-lisp, bootstrap-src)
(bootstrap-clean-before, bootstrap-clean-after): Return to the
top-level directory after sub-make.
Diffstat (limited to 'msdos')
-rw-r--r-- | msdos/mainmake.v2 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/msdos/mainmake.v2 b/msdos/mainmake.v2 index b99bf9ab7c1..21e277ae7ee 100644 --- a/msdos/mainmake.v2 +++ b/msdos/mainmake.v2 @@ -160,19 +160,19 @@ maybe_bootstrap: bootstrap: bootstrap-clean-before bootstrap-lisp-1 bootstrap-src bootstrap-lisp bootstrap-clean-after all info bootstrap-lisp-1: - cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean + cd lisp; $(MAKE) $(MFLAGS) bootstrap-clean; cd .. bootstrap-lisp: - cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/b-emacs.exe + cd lisp; $(MAKE) $(MFLAGS) bootstrap EMACS=../src/b-emacs.exe; cd .. bootstrap-src: - cd src; $(MAKE) $(MFLAGS) bootstrap + cd src; $(MAKE) $(MFLAGS) bootstrap; cd .. ### Used for `bootstrap' to avoid deleting existing dumped Emacs executables. bootstrap-clean-before: FRC - cd src; $(MAKE) $(MFLAGS) mostlyclean - cd lib-src; $(MAKE) $(MFLAGS) clean - cd leim; $(MAKE) $(MFLAGS) clean + cd src; $(MAKE) $(MFLAGS) mostlyclean; cd .. + cd lib-src; $(MAKE) $(MFLAGS) clean; cd .. + cd leim; $(MAKE) $(MFLAGS) clean; cd .. bootstrap-clean-after: - cd src; $(MAKE) $(MFLAGS) mostlyclean + cd src; $(MAKE) $(MFLAGS) mostlyclean; cd .. |