aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2003-09-01 06:43:24 +0000
committerScott Long <scottl@FreeBSD.org>2003-09-01 06:43:24 +0000
commitd61a976bc5cebc4f6225740f881d89f7c375e881 (patch)
tree0e438bb853475e6eafa69c59f31fc4f095c6171a /Makefile.inc1
parent3390d47670b18dbdd6f618cc7df61a233cb1e914 (diff)
downloadsrc-d61a976bc5cebc4f6225740f881d89f7c375e881.tar.gz
src-d61a976bc5cebc4f6225740f881d89f7c375e881.zip
Clarify the numbering of some of the build stages.
Notes
Notes: svn path=/head/; revision=119645
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc118
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 8e1b2d7f974d..abf4c1833978 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -297,33 +297,33 @@ _worldtmp:
_legacy:
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> stage 1: legacy release compatibility shims"
+ @echo ">>> stage 1.1: legacy release compatibility shims"
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${BMAKE} legacy
_bootstrap-tools:
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> stage 1: bootstrap tools"
+ @echo ">>> stage 1.2: bootstrap tools"
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${BMAKE} bootstrap-tools
_cleanobj:
.if !defined(NOCLEAN)
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> stage 2: cleaning up the object tree"
+ @echo ">>> stage 2.1: cleaning up the object tree"
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
.endif
_obj:
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> stage 2: rebuilding the object tree"
+ @echo ">>> stage 2.2: rebuilding the object tree"
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} par-obj
_build-tools:
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> stage 2: build tools"
+ @echo ">>> stage 2.3: build tools"
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${TMAKE} build-tools
_cross-tools:
@@ -335,26 +335,26 @@ _cross-tools:
_includes:
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> stage 4: populating ${WORLDTMP}/usr/include"
+ @echo ">>> stage 4.1: populating ${WORLDTMP}/usr/include"
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
_libraries:
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> stage 4: building libraries"
+ @echo ">>> stage 4.2: building libraries"
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG -DNOLINT \
libraries
_depend:
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> stage 4: make dependencies"
+ @echo ">>> stage 4.3: make dependencies"
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} par-depend
everything:
@echo
@echo "--------------------------------------------------------------"
- @echo ">>> stage 4: building everything.."
+ @echo ">>> stage 4.4: building everything.."
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${WMAKE} par-all