[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.196 and 1.209

version 1.196, 2003/01/03 15:34:30 version 1.209, 2003/07/06 13:04:01
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.
Line 59 
Line 63 
 #   do-tools:        builds host toolchain.  #   do-tools:        builds host toolchain.
 #   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 97  _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 161  BUILDTARGETS+= do-distrib-dirs
Line 169  BUILDTARGETS+= do-distrib-dirs
 .if !defined(NOINCLUDES)  .if !defined(NOINCLUDES)
 BUILDTARGETS+=  includes  BUILDTARGETS+=  includes
 .endif  .endif
   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
   
 #  #
 # Enforce proper ordering of some rules.  # Enforce proper ordering of some rules.
Line 241  installworld:
Line 254  installworld:
         @printf "make ${.TARGET} finished at: " && date          @printf "make ${.TARGET} finished at: " && date
   
 #  #
   # Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
   #
   
   .for tgt in sets sourcesets
   ${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
 # in this case, the set lists will be checked before the tar files  # in this case, the set lists will be checked before the tar files
 # are made.  # are made.
Line 279  do-${targ}: ${targ}
Line 301  do-${targ}: ${targ}
         @true          @true
 .endfor  .endfor
   
 .for dir in tools 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 301  do-build:
Line 323  do-build:
         (cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)          (cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)
 .endfor  .endfor
   
   do-obsolete:
           (cd ${.CURDIR}/etc && ${MAKE} install-obsolete-lists)
   
 #  #
 # Speedup stubs for some subtrees that don't need to run these rules.  # Speedup stubs for some subtrees that don't need to run these rules.
 # (Tells <bsd.subdir.mk> not to recurse for them.)  # (Tells <bsd.subdir.mk> not to recurse for them.)
Line 322  install-${dir}:
Line 347  install-${dir}:
 dependall-distrib depend-distrib all-distrib:  dependall-distrib depend-distrib all-distrib:
         @true          @true
   
 #  
 # we don't want the obj target in etc invoked as part of the normal  
 # course of events because that makes it too early.  therefore, define  
 # a neutral version of the target that bsd.subdir.mk would create.  
 #  
 obj-etc:  
         @true  
   
 .include <bsd.obj.mk>  .include <bsd.obj.mk>
   .include <bsd.kernobj.mk>
 .include <bsd.subdir.mk>  .include <bsd.subdir.mk>
   
 #  
 # now, make a "real" target that will recurse into etc to enact the  
 # obj target, and .USE it onto the end of the obj handling for the  
 # current directory.  note that this is only done if we already have  
 # commands for the obj target (we won't if we're not making objdirs),  
 # and only if etc is a target subdirectory.  
 #  
 .if commands(obj) && (${SUBDIR:Metc} == "etc")  
 real-obj-etc: .USE  
         @(echo "obj ===> etc"; \  
                 cd ${.CURDIR}/etc && ${MAKE} obj)  
 obj: real-obj-etc  
 .endif  
   
 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 $> >$@          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 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.196  
changed lines
  Added in v.1.209

CVSweb <webmaster@jp.NetBSD.org>