[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/Makefile between version 1.204 and 1.212

version 1.204, 2003/04/17 00:33:44 version 1.212, 2003/07/17 07:46:11
Line 52 
Line 52 
 #       (See etc/Makefile for more information on this.)  #       (See etc/Makefile for more information on this.)
 #   regression-tests:  #   regression-tests:
 #       Runs the regression tests in "regress" on this host.  #       Runs the regression tests in "regress" on this host.
   #   sets:
   #       Populate ${RELEASEDIR}/${MACHINE}/binary/sets from ${DESTDIR}
   #   sourcesets:
   #       Populate ${RELEASEDIR}/source/sets from ${NETBSDSRCDIR}
 #  #
 # Targets invoked by `make build,' in order:  # Targets invoked by `make build,' in order:
 #   cleandir:        cleans the tree.  #   cleandir:        cleans the tree.
 #   obj:             creates object directories.  #   obj:             creates object directories.
 #   do-tools:        builds host toolchain.  #   do-tools:        builds host toolchain.
 #   do-tools-compat: builds the "libnbcompat" library; needed for some  
 #                    random host tool programs in the source tree.  
 #   do-distrib-dirs: creates the distribution directories.  #   do-distrib-dirs: creates the distribution directories.
 #   includes:        installs include files.  #   includes:        installs include files.
   #   do-tools-compat: builds the "libnbcompat" library; needed for some
   #                    random host tool programs in the source tree.
   #   do-gnu-lib-libgcc: builds and installs prerequisites from gnu/lib/libgcc
 #   do-lib-csu:      builds and installs prerequisites from lib/csu.  #   do-lib-csu:      builds and installs prerequisites from lib/csu.
 #   do-lib-libc:     builds and installs prerequisites from lib/libc.  #   do-lib-libc:     builds and installs prerequisites from lib/libc.
 #   do-lib:          builds and installs prerequisites from lib.  #   do-lib:          builds and installs prerequisites from lib.
 #   do-gnu-lib:      builds and installs prerequisites from gnu/lib.  #   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
 #   do-ld.so:        builds and installs prerequisites from libexec/ld.*_so.  #   do-ld.so:        builds and installs prerequisites from libexec/ld.*_so.
 #   do-build:        builds and installs the entire system.  #   do-build:        builds and installs the entire system.
   #   do-obsolete:     builds and installs the entire system.
 #  #
   
 .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""  .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
Line 99  _SRC_TOP_OBJ_=
Line 105  _SRC_TOP_OBJ_=
 .endif  .endif
   
 _SUBDIR=        tools lib include gnu bin games libexec sbin usr.bin  _SUBDIR=        tools lib include gnu bin games libexec sbin usr.bin
 _SUBDIR+=       usr.sbin share rescue sys etc distrib regress  _SUBDIR+=       usr.sbin share rescue sys etc .WAIT distrib regress
   
 #  #
 # Weed out directories that don't exist.  # Weed out directories that don't exist.
Line 134  afterinstall:
Line 140  afterinstall:
   
 postinstall-check:  postinstall-check:
         @echo "   === Post installation checks ==="          @echo "   === Post installation checks ==="
         sh ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check          ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check
         @echo "   ================================"          @echo "   ================================"
   
 postinstall-fix: .NOTMAIN  postinstall-fix: .NOTMAIN
         @echo "   === Post installation fixes ==="          @echo "   === Post installation fixes ==="
         sh ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix          ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix
         @echo "   ================================"          @echo "   ==============================="
   
   postinstall-fix-obsolete: .NOTMAIN
           @echo "   === Removing obsolete files ==="
           ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete
           @echo "   ==============================="
   
   
 #  #
Line 164  BUILDTARGETS+= do-distrib-dirs
Line 175  BUILDTARGETS+= do-distrib-dirs
 BUILDTARGETS+=  includes  BUILDTARGETS+=  includes
 .endif  .endif
 BUILDTARGETS+=  do-tools-compat  BUILDTARGETS+=  do-tools-compat
   .if ${MKGCC} != "no"
   BUILDTARGETS+=  do-gnu-lib-libgcc
   .endif
 BUILDTARGETS+=  do-lib-csu do-lib-libc do-lib do-gnu-lib do-ld.so do-build  BUILDTARGETS+=  do-lib-csu do-lib-libc do-lib do-gnu-lib do-ld.so do-build
 BUILDTARGETS+=  do-obsolete  BUILDTARGETS+=  do-obsolete
   
Line 207  distribution buildworld:
Line 221  distribution buildworld:
         (cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)          (cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
         (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution)          (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution)
 .if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"  .if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
           ${MAKE} postinstall-fix-obsolete
         (cd ${.CURDIR}/distrib/sets && ${MAKE} checkflist)          (cd ${.CURDIR}/distrib/sets && ${MAKE} checkflist)
 .endif  .endif
         @echo   "make ${.TARGET} started at:  ${START_TIME}"          @echo   "make ${.TARGET} started at:  ${START_TIME}"
Line 245  installworld:
Line 260  installworld:
         @printf "make ${.TARGET} finished at: " && date          @printf "make ${.TARGET} finished at: " && date
   
 #  #
 # Create sets from $DESTDIR into $RELEASEDIR  # Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
 #  #
   
 sets:  .for tgt in sets sourcesets
         (cd ${.CURDIR}/distrib/sets && ${MAKE} maketars)  ${tgt}:
           (cd ${.CURDIR}/distrib/sets && ${MAKE} $@)
   .endfor
   
 #  #
 # Build a release or snapshot (implies "make build").  Note that  # Build a release or snapshot (implies "make build").  Note that
Line 290  do-${targ}: ${targ}
Line 307  do-${targ}: ${targ}
         @true          @true
 .endfor  .endfor
   
 .for dir in tools tools/compat lib/csu lib/libc lib gnu/lib  .for dir in tools tools/compat lib/csu gnu/lib/libgcc lib/libc lib gnu/lib
 do-${dir:S/\//-/}:  do-${dir:S/\//-/g}:
 .for targ in dependall install  .for targ in dependall install
         (cd ${.CURDIR}/${dir} && ${MAKE} ${targ})          (cd ${.CURDIR}/${dir} && ${MAKE} ${targ})
 .endfor  .endfor
Line 336  install-${dir}:
Line 353  install-${dir}:
 dependall-distrib depend-distrib all-distrib:  dependall-distrib depend-distrib all-distrib:
         @true          @true
   
   .include <bsd.sys.mk>
 .include <bsd.obj.mk>  .include <bsd.obj.mk>
   .include <bsd.kernobj.mk>
 .include <bsd.subdir.mk>  .include <bsd.subdir.mk>
   
 build-docs: ${.CURDIR}/BUILDING  build-docs: ${.CURDIR}/BUILDING
 ${.CURDIR}/BUILDING: doc/BUILDING.mdoc  ${.CURDIR}/BUILDING: doc/BUILDING.mdoc
         groff -mdoc -Tascii -P-b -P-u -P-o $> >$@          ${TOOL_GROFF} -mdoc -Tascii -P-b -P-u -P-o $> >$@
   
   
   #
   # Display current make(1) parameters
   #
   params:
   .for var in     BSDSRCDIR BSDOBJDIR BUILDID DESTDIR EXTERNAL_TOOLCHAIN \
                   KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \
                   MACHINE MACHINE_ARCH MAKECONF MAKEFLAGS \
                   MAKEOBJDIR MAKEOBJDIRPREFIX MKOBJDIRS \
                   RELEASEDIR TOOLCHAIN_MISSING TOOLDIR \
                   UNPRIVED UPDATE USETOOLS
   .if defined(${var})
           @printf "%20s = '%-s'\n" ${var} ${${var}:Q}
   .else
           @printf "%20s = (undefined)\n" ${var}
   .endif
   .endfor

Legend:
Removed from v.1.204  
changed lines
  Added in v.1.212

CVSweb <webmaster@jp.NetBSD.org>