[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.206 and 1.211

version 1.206, 2003/05/10 07:12:37 version 1.211, 2003/07/10 10:33:58
Line 61 
Line 61 
 #   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 168  BUILDTARGETS+= do-distrib-dirs
Line 170  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 296  do-${targ}: ${targ}
Line 301  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 342  install-${dir}:
Line 347  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.206  
changed lines
  Added in v.1.211

CVSweb <webmaster@jp.NetBSD.org>