Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/Makefile,v rcsdiff: /ftp/cvs/cvsroot/src/Makefile,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.123 retrieving revision 1.126 diff -u -p -r1.123 -r1.126 --- src/Makefile 2001/06/10 13:02:54 1.123 +++ src/Makefile 2001/08/02 06:13:33 1.126 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.123 2001/06/10 13:02:54 mrg Exp $ +# $NetBSD: Makefile,v 1.126 2001/08/02 06:13:33 enami Exp $ # This is the top-level makefile for building NetBSD. For an outline of # how to build a snapshot or release, as well as other release engineering @@ -25,11 +25,13 @@ # anything in /usr/share. # NBUILDJOBS is the number of jobs to start in parallel during a # 'make build'. It defaults to 1. -# UPDATE will avoid a `make cleandir' at the start of `make build', -# as well as having the effects listed in /usr/share/mk/bsd.README. -# NOCLEANDIR will avoid a `make cleandir' at the start of `make build', -# but without having the effects listed in /usr/share/mk/bsd.README. +# UPDATE, if defined, will avoid a `make cleandir' at the start of +# `make build', as well as having the effects listed in +# /usr/share/mk/bsd.README. +# NOCLEANDIR, if defined, will avoid a `make cleandir' at the start +# of the `make build'. # NOINCLUDES will avoid the `make includes' usually done by `make build'. + # # Targets: # build: builds a full release of netbsd in DESTDIR. If BUILD_DONE is @@ -115,7 +117,8 @@ beforeinstall: .ifndef NODISTRIBDIRS .ifndef DESTDIR .if exists(share/mk) - (cd ${.CURDIR}/etc && ${MAKE} -m ${.CURDIR}/share/mk DESTDIR=/ distrib-dirs) + (cd ${.CURDIR}/etc && \ + ${MAKE} -m ${.CURDIR}/share/mk DESTDIR=/ distrib-dirs) .else (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs) .endif @@ -139,7 +142,22 @@ whatis.db: build: @echo "Build installed into ${DESTDIR}" .else -build: buildstartmsg beforeinstall do-force-domestic do-share-mk do-cleandir do-make-obj do-check-egcs do-make-includes do-lib-csu do-lib do-gnu-lib do-dependall do-domestic do-whatisdb buildendmsg +build: + @${MAKE} ${_M} buildstartmsg + @${MAKE} ${_M} beforeinstall + @${MAKE} ${_M} do-force-domestic + @${MAKE} ${_M} do-share-mk + @${MAKE} ${_M} do-cleandir + @${MAKE} ${_M} do-make-obj + @${MAKE} ${_M} do-check-egcs + @${MAKE} ${_M} do-make-includes + @${MAKE} ${_M} do-lib-csu + @${MAKE} ${_M} do-lib + @${MAKE} ${_M} do-gnu-lib + @${MAKE} ${_M} do-dependall + @${MAKE} ${_M} do-domestic + @${MAKE} ${_M} do-whatisdb + @${MAKE} ${_M} buildendmsg .endif do-force-domestic: