[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.242 and 1.245

version 1.242, 2006/01/21 19:01:15 version 1.245, 2006/06/02 22:16:18
Line 61 
Line 61 
 #       Populate ${RELEASEDIR}/source/sets from ${NETBSDSRCDIR}  #       Populate ${RELEASEDIR}/source/sets from ${NETBSDSRCDIR}
 #   syspkgs:  #   syspkgs:
 #       Populate ${RELEASEDIR}/${MACHINE}/binary/syspkgs from ${DESTDIR}  #       Populate ${RELEASEDIR}/${MACHINE}/binary/syspkgs from ${DESTDIR}
   #   iso-image:
   #       Create CD-ROM image in RELEASEDIR/MACHINE/installation.
   #       RELEASEDIR must already have been populated by `make release'
   #       or equivalent.
 #  #
 # Targets invoked by `make build,' in order:  # Targets invoked by `make build,' in order:
 #   cleandir:        cleans the tree.  #   cleandir:        cleans the tree.
Line 167  postinstall-fix-obsolete: .NOTMAIN .PHON
Line 171  postinstall-fix-obsolete: .NOTMAIN .PHON
 #  #
 # Targets (in order!) called by "make build".  # Targets (in order!) called by "make build".
 #  #
 .if ${USE_TOOLS_TOOLCHAIN} == "no"  .if ${HAVE_GCC} == "3"
 LIBGCC_EXT=3  LIBGCC_EXT=3
 .else  .else
 LIBGCC_EXT=  LIBGCC_EXT=4
 .endif  .endif
   
 BUILDTARGETS+=  check-tools  BUILDTARGETS+=  check-tools
Line 192  BUILDTARGETS+= includes
Line 196  BUILDTARGETS+= includes
 BUILDTARGETS+=  do-tools-compat  BUILDTARGETS+=  do-tools-compat
 BUILDTARGETS+=  do-lib-csu  BUILDTARGETS+=  do-lib-csu
 .if ${MKGCC} != "no"  .if ${MKGCC} != "no"
 .if ${HAVE_GCC3} != "no"  .if (${HAVE_GCC} == "3" || ${HAVE_GCC} == "4")
 BUILDTARGETS+=  do-gnu-lib-crtstuff${LIBGCC_EXT}  BUILDTARGETS+=  do-gnu-lib-crtstuff${LIBGCC_EXT}
 .endif  .endif
 BUILDTARGETS+=  do-gnu-lib-libgcc${LIBGCC_EXT}  BUILDTARGETS+=  do-gnu-lib-libgcc${LIBGCC_EXT}
Line 306  release snapshot: .PHONY .MAKE
Line 310  release snapshot: .PHONY .MAKE
         @printf "make ${.TARGET} finished at: " && date          @printf "make ${.TARGET} finished at: " && date
   
 #  #
   # Create a CD-ROM image.
   #
   
   iso-image: .PHONY
           ${MAKEDIRTARGET} etc iso-image
           @echo   "make ${.TARGET} started at:  ${START_TIME}"
           @printf "make ${.TARGET} finished at: " && date
   
   #
 # Special components of the "make build" process.  # Special components of the "make build" process.
 #  #
   

Legend:
Removed from v.1.242  
changed lines
  Added in v.1.245

CVSweb <webmaster@jp.NetBSD.org>