[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.209 and 1.218

version 1.209, 2003/07/06 13:04:01 version 1.218, 2003/07/24 21:54:07
Line 19 
Line 19 
 #   DESTDIR is the target directory for installation of the compiled  #   DESTDIR is the target directory for installation of the compiled
 #       software. It defaults to /. Note that programs are built against  #       software. It defaults to /. Note that programs are built against
 #       libraries installed in DESTDIR.  #       libraries installed in DESTDIR.
 #   MKMAN, if set to `no', will prevent building of manual pages.  #   MKMAN, if `no', will prevent building of manual pages.
 #   MKOBJDIRS, if not set to `no', will build object directories at  #   MKOBJDIRS, if not `no', will build object directories at
 #       an appropriate point in a build.  #       an appropriate point in a build.
 #   MKSHARE, if set to `no', will prevent building and installing  #   MKSHARE, if `no', will prevent building and installing
 #       anything in /usr/share.  #       anything in /usr/share.
 #   UPDATE, if defined, will avoid a `make cleandir' at the start of  #   MKUPDATE, if not `no', will avoid a `make cleandir' at the start of
 #       `make build', as well as having the effects listed in  #       `make build', as well as having the effects listed in
 #       /usr/share/mk/bsd.README.  #       /usr/share/mk/bsd.README.
 #   NOCLEANDIR, if defined, will avoid a `make cleandir' at the start  #   NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
 #       of the `make build'.  #       of the `make build'.
 #   NOINCLUDES will avoid the `make includes' usually done by `make build'.  #   NOINCLUDES will avoid the `make includes' usually done by `make build'.
 #  #
   #   See mk.conf(5) for more details.
   #
   #
 # Targets:  # Targets:
 #   build:  #   build:
 #       Builds a full release of NetBSD in DESTDIR, except for the  #       Builds a full release of NetBSD in DESTDIR, except for the
Line 123  regression-tests:
Line 126  regression-tests:
         @(cd ${.CURDIR}/regress && ${MAKE} regress)          @(cd ${.CURDIR}/regress && ${MAKE} regress)
 .endif  .endif
   
 .if defined(UNPRIVED)  .if ${MKUNPRIVED} != "no"
 NOPOSTINSTALL=  # defined  NOPOSTINSTALL=  # defined
 .endif  .endif
   
Line 131  afterinstall:
Line 134  afterinstall:
 .if ${MKMAN} != "no"  .if ${MKMAN} != "no"
         (cd ${.CURDIR}/share/man && ${MAKE} makedb)          (cd ${.CURDIR}/share/man && ${MAKE} makedb)
 .endif  .endif
 .if defined(UNPRIVED) && (${MKINFO} != "no")  .if (${MKUNPRIVED} != "no" && ${MKINFO} != "no")
         (cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)          (cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)
 .endif  .endif
 .if !defined(NOPOSTINSTALL)  .if !defined(NOPOSTINSTALL)
Line 140  afterinstall:
Line 143  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 154  postinstall-fix: .NOTMAIN
Line 162  postinstall-fix: .NOTMAIN
 #  #
   
 BUILDTARGETS+=  check-tools  BUILDTARGETS+=  check-tools
 .if !defined(UPDATE) && !defined(NOCLEANDIR)  .if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
 BUILDTARGETS+=  cleandir  BUILDTARGETS+=  cleandir
 .endif  .endif
 .if ${MKOBJDIRS} != "no"  .if ${MKOBJDIRS} != "no"
Line 173  BUILDTARGETS+= do-tools-compat
Line 181  BUILDTARGETS+= do-tools-compat
 .if ${MKGCC} != "no"  .if ${MKGCC} != "no"
 BUILDTARGETS+=  do-gnu-lib-libgcc  BUILDTARGETS+=  do-gnu-lib-libgcc
 .endif  .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-libdes do-lib do-gnu-lib \
                   do-ld.so do-build
 BUILDTARGETS+=  do-obsolete  BUILDTARGETS+=  do-obsolete
   
 #  #
Line 216  distribution buildworld:
Line 225  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} != "/"
           (cd ${.CURDIR} && ${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 301  do-${targ}: ${targ}
Line 311  do-${targ}: ${targ}
         @true          @true
 .endfor  .endfor
   
 .for dir in tools tools/compat lib/csu gnu/lib/libgcc lib/libc lib gnu/lib  .for dir in tools tools/compat lib/csu gnu/lib/libgcc lib/libc lib/libdes lib gnu/lib
 do-${dir:S/\//-/g}:  do-${dir:S/\//-/g}:
 .for targ in dependall install  .for targ in dependall install
         (cd ${.CURDIR}/${dir} && ${MAKE} ${targ})          (cd ${.CURDIR}/${dir} && ${MAKE} ${targ})
Line 347  install-${dir}:
Line 357  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.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-bou $> >$@
   
   
 #  #
Line 362  ${.CURDIR}/BUILDING: doc/BUILDING.mdoc
Line 373  ${.CURDIR}/BUILDING: doc/BUILDING.mdoc
 params:  params:
 .for var in     BSDSRCDIR BSDOBJDIR BUILDID DESTDIR EXTERNAL_TOOLCHAIN \  .for var in     BSDSRCDIR BSDOBJDIR BUILDID DESTDIR EXTERNAL_TOOLCHAIN \
                 KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \                  KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \
                 MACHINE MACHINE_ARCH MAKEFLAGS MAKEOBJDIR MAKEOBJDIRPREFIX \                  MACHINE MACHINE_ARCH MAKECONF MAKEFLAGS \
                 MKOBJDIRS RELEASEDIR TOOLCHAIN_MISSING TOOLDIR \                  MAKEOBJDIR MAKEOBJDIRPREFIX \
                 UNPRIVED UPDATE USETOOLS                  MKOBJDIRS MKUNPRIVED MKUPDATE \
                   RELEASEDIR TOOLCHAIN_MISSING TOOLDIR \
                   USETOOLS
 .if defined(${var})  .if defined(${var})
         @printf "%20s = '%-s'\n" ${var} ${${var}:Q}          @printf "%20s = '%-s'\n" ${var} ${${var}:Q}
 .else  .else

Legend:
Removed from v.1.209  
changed lines
  Added in v.1.218

CVSweb <webmaster@jp.NetBSD.org>