# HG changeset patch # User Eli Zaretskii # Date 1016645870 0 # Node ID d2d6d5e7b5f33fa48d56136b5da0f92fa7ed2f5c # Parent 9681dbaee58022c2aa72172078767199b35bf867 (bootstrap-lisp-1, bootstrap-lisp, bootstrap-src) (bootstrap-clean-before, bootstrap-clean-after): Return to the top-level directory after sub-make. diff -r 9681dbaee580 -r d2d6d5e7b5f3 msdos/mainmake.v2 --- a/msdos/mainmake.v2 Wed Mar 20 17:35:15 2002 +0000 +++ b/msdos/mainmake.v2 Wed Mar 20 17:37:50 2002 +0000 @@ -160,19 +160,19 @@ 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 ..