Clarify the numbering of some of the build stages.

This commit is contained in:
Scott Long 2003-09-01 06:43:24 +00:00
parent 3390d47670
commit d61a976bc5

View File

@ -297,33 +297,33 @@ _worldtmp:
_legacy: _legacy:
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> stage 1: legacy release compatibility shims" @echo ">>> stage 1.1: legacy release compatibility shims"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${BMAKE} legacy cd ${.CURDIR}; ${BMAKE} legacy
_bootstrap-tools: _bootstrap-tools:
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> stage 1: bootstrap tools" @echo ">>> stage 1.2: bootstrap tools"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${BMAKE} bootstrap-tools cd ${.CURDIR}; ${BMAKE} bootstrap-tools
_cleanobj: _cleanobj:
.if !defined(NOCLEAN) .if !defined(NOCLEAN)
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> stage 2: cleaning up the object tree" @echo ">>> stage 2.1: cleaning up the object tree"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/} cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
.endif .endif
_obj: _obj:
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> stage 2: rebuilding the object tree" @echo ">>> stage 2.2: rebuilding the object tree"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} par-obj cd ${.CURDIR}; ${WMAKE} par-obj
_build-tools: _build-tools:
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> stage 2: build tools" @echo ">>> stage 2.3: build tools"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${TMAKE} build-tools cd ${.CURDIR}; ${TMAKE} build-tools
_cross-tools: _cross-tools:
@ -335,26 +335,26 @@ _cross-tools:
_includes: _includes:
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> stage 4: populating ${WORLDTMP}/usr/include" @echo ">>> stage 4.1: populating ${WORLDTMP}/usr/include"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
_libraries: _libraries:
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> stage 4: building libraries" @echo ">>> stage 4.2: building libraries"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG -DNOLINT \ cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG -DNOLINT \
libraries libraries
_depend: _depend:
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> stage 4: make dependencies" @echo ">>> stage 4.3: make dependencies"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} par-depend cd ${.CURDIR}; ${WMAKE} par-depend
everything: everything:
@echo @echo
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo ">>> stage 4: building everything.." @echo ">>> stage 4.4: building everything.."
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} par-all cd ${.CURDIR}; ${WMAKE} par-all