[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.180 and 1.184

version 1.180, 2002/06/26 16:28:18 version 1.184, 2002/08/26 04:40:20
Line 50 
Line 50 
 #   do-lib-csu:      builds and installs prerequisites from lib/csu.  #   do-lib-csu:      builds and installs prerequisites from lib/csu.
 #   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.elf_so:    builds and installs prerequisites from libexec/ld.elf_so
 #   do-build:        builds and installs the entire system.  #   do-build:        builds and installs the entire system.
   
 .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""  .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
Line 78  _SRC_TOP_OBJ_=
Line 79  _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 sys etc distrib regress  _SUBDIR+=       usr.sbin share rescue sys etc distrib regress
   
 # Weed out directories that don't exist.  # Weed out directories that don't exist.
   
Line 138  BUILDTARGETS+= do-distrib-dirs
Line 139  BUILDTARGETS+= do-distrib-dirs
 .if !defined(NOINCLUDES)  .if !defined(NOINCLUDES)
 BUILDTARGETS+=  includes  BUILDTARGETS+=  includes
 .endif  .endif
 BUILDTARGETS+=  do-lib-csu do-lib do-gnu-lib do-build  BUILDTARGETS+=  do-lib-csu do-lib do-gnu-lib do-ld.elf_so do-build
   
 # Enforce proper ordering of some rules.  # Enforce proper ordering of some rules.
   
Line 165  build:
Line 166  build:
 distribution:  distribution:
         (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} != "/"
           (cd ${.CURDIR}/distrib/sets && ${MAKE} checkflist)
   .endif
   
 # Build a release or snapshot (implies "make build").  # Build a release or snapshot (implies "make build").  Note that
   # in this case, the set lists will be checked before the tar files
   # are made.
   
 release snapshot:  release snapshot:
         (cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)          (cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
Line 198  do-${dir:S/\//-/}:
Line 204  do-${dir:S/\//-/}:
 .endfor  .endfor
 .endfor  .endfor
   
   do-ld.elf_so:
   .for targ in dependall install
           (cd ${.CURDIR}/libexec/ld.elf_so && ${MAKE} ${targ})
   .endfor
   
 do-build:  do-build:
 .for targ in dependall install  .for targ in dependall install
         (cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)          (cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)

Legend:
Removed from v.1.180  
changed lines
  Added in v.1.184

CVSweb <webmaster@jp.NetBSD.org>