[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.259 and 1.260

version 1.259, 2008/10/16 09:43:12 version 1.260, 2008/10/22 17:37:16
Line 74 
Line 74 
 #  #
 # 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.  #   do-tools-obj:    creates object directories for the host toolchain.
 #   do-tools:        builds host toolchain.  #   do-tools:        builds host toolchain.
   #   obj:             creates object directories.
 #   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  #   do-tools-compat: builds the "libnbcompat" library; needed for some
Line 196  BUILDTARGETS+= check-tools
Line 197  BUILDTARGETS+= check-tools
 .if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)  .if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
 BUILDTARGETS+=  cleandir  BUILDTARGETS+=  cleandir
 .endif  .endif
   .if ${USETOOLS} == "yes"
 .if ${MKOBJDIRS} != "no"  .if ${MKOBJDIRS} != "no"
 BUILDTARGETS+=  obj  BUILDTARGETS+=  do-tools-obj
 .endif  .endif
 .if ${USETOOLS} == "yes"  
 BUILDTARGETS+=  do-tools  BUILDTARGETS+=  do-tools
 .endif  .endif
   .if ${MKOBJDIRS} != "no"
   BUILDTARGETS+=  obj
   .endif
 .if !defined(NODISTRIBDIRS)  .if !defined(NODISTRIBDIRS)
 BUILDTARGETS+=  do-distrib-dirs  BUILDTARGETS+=  do-distrib-dirs
 .endif  .endif
Line 383  do-${dir:S/\//-/g}: .PHONY .MAKE
Line 387  do-${dir:S/\//-/g}: .PHONY .MAKE
 .endfor  .endfor
 .endfor  .endfor
   
   do-tools-obj: .PHONY .MAKE
           ${MAKEDIRTARGET} tools obj
   
 do-libgcc: .PHONY .MAKE  do-libgcc: .PHONY .MAKE
 .if defined(HAVE_GCC)  .if defined(HAVE_GCC)
 .if ${MKGCC} != "no"  .if ${MKGCC} != "no"

Legend:
Removed from v.1.259  
changed lines
  Added in v.1.260

CVSweb <webmaster@jp.NetBSD.org>