[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.112 and 1.119

version 1.112, 2000/04/10 14:47:22 version 1.119, 2000/08/05 10:17:35
Line 27 
Line 27 
 #       'make build'. It defaults to 1.  #       'make build'. It defaults to 1.
 #   UPDATE will avoid a `make cleandir' at the start of `make build',  #   UPDATE will avoid a `make cleandir' at the start of `make build',
 #       as well as having the effects listed in /usr/share/mk/bsd.README.  #       as well as having the effects listed in /usr/share/mk/bsd.README.
   #   NOCLEANDIR will avoid a `make cleandir' at the start of `make build',
   #       but without having the effects listed in /usr/share/mk/bsd.README.
   #   NOINCLUDES will avoid the `make includes' usually done by `make build'.
 #  #
 # Targets:  # Targets:
 #   build: builds a full release of netbsd in DESTDIR. If BUILD_DONE is  #   build: builds a full release of netbsd in DESTDIR. If BUILD_DONE is
Line 36 
Line 39 
 #       more information on this.)  #       more information on this.)
 #   snapshot: a synonym for release.  #   snapshot: a synonym for release.
   
 SRCTOP=.  .include <bsd.own.mk>
 .include <bsd.crypto.mk>                # for configuration variables.  
   
 .if defined(CRYPTOPATH)  
 .sinclude "${CRYPTOPATH}/Makefile.frag"  
 .endif  
   
 MKOBJDIRS ?= no  MKOBJDIRS ?= no
 HAVE_GCC28!=    ${CXX} --version | egrep "^(2\.8|egcs)" ; echo  HAVE_EGCS!=     ${CXX} --version | egrep "^(2\.[89]|egcs)" ; echo
   
 .if defined(NBUILDJOBS)  .if defined(NBUILDJOBS)
 _J= -j${NBUILDJOBS}  _J= -j${NBUILDJOBS}
Line 59  _M=-m ${DESTDIR}/usr/share/mk
Line 57  _M=-m ${DESTDIR}/usr/share/mk
 SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share sys  SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share sys
 .if make(obj)  .if make(obj)
 SUBDIR+= distrib  SUBDIR+= distrib
   .ifdef MAKEOBJDIRPREFIX
   SUBDIR+= etc
   .endif
 .endif  .endif
   
 includes-lib: includes-include includes-sys  includes-lib: includes-include includes-sys
Line 120  build: buildmsg beforeinstall
Line 121  build: buildmsg beforeinstall
         (cd ${.CURDIR}/share/mk && ${MAKE} install)          (cd ${.CURDIR}/share/mk && ${MAKE} install)
 .endif  .endif
 .if !defined(UPDATE) && !defined(NOCLEANDIR)  .if !defined(UPDATE) && !defined(NOCLEANDIR)
         ${MAKE} ${_M} cleandir          ${MAKE} ${_J} ${_M} cleandir
 .endif  .endif
 .if ${MKOBJDIRS} != "no"  .if ${MKOBJDIRS} != "no"
         ${MAKE} obj          ${MAKE} ${_M} obj
 .endif  .endif
 .if empty(HAVE_GCC28)  .if empty(HAVE_EGCS)
 .if defined(DESTDIR)  .if defined(DESTDIR)
         @echo "*** CAPUTE!"          @echo "*** CAPUTE!"
         @echo "    You attempted to compile the world without egcs.  You must"          @echo "    You attempted to compile the world without egcs.  You must"
Line 141  build: buildmsg beforeinstall
Line 142  build: buildmsg beforeinstall
         ${MAKE} ${_M} includes          ${MAKE} ${_M} includes
 .endif  .endif
         (cd ${.CURDIR}/lib/csu && \          (cd ${.CURDIR}/lib/csu && \
             ${MAKE} ${_M} ${_J} MKMAN=no dependall && \              ${MAKE} ${_M} ${_J} MKSHARE=no dependall && \
             ${MAKE} ${_M} MKMAN=no install)              ${MAKE} ${_M} MKSHARE=no install)
         (cd ${.CURDIR}/lib && \          (cd ${.CURDIR}/lib && \
             ${MAKE} ${_M} ${_J} MKMAN=no MKINFO=no dependall && \              ${MAKE} ${_M} ${_J} MKSHARE=no dependall && \
             ${MAKE} ${_M} MKMAN=no MKINFO=no install)              ${MAKE} ${_M} MKSHARE=no install)
         (cd ${.CURDIR}/gnu/lib && \          (cd ${.CURDIR}/gnu/lib && \
             ${MAKE} ${_M} ${_J} MKMAN=no MKINFO=no dependall && \              ${MAKE} ${_M} ${_J} MKSHARE=no dependall && \
             ${MAKE} ${_M} MKMAN=no MKINFO=no install)              ${MAKE} ${_M} MKSHARE=no install)
 .if target(cryptobuild)  
         ${MAKE} ${_M} ${_J} cryptobuild  
 .endif  
         ${MAKE} ${_M} ${_J} dependall && ${MAKE} ${_M} _BUILD= install          ${MAKE} ${_M} ${_J} dependall && ${MAKE} ${_M} _BUILD= install
 .if defined(DOMESTIC) && !defined(EXPORTABLE_SYSTEM)  .if defined(DOMESTIC) && !defined(EXPORTABLE_SYSTEM)
         (cd ${.CURDIR}/${DOMESTIC} && ${MAKE} ${_M} ${_J} _SLAVE_BUILD= build)          (cd ${.CURDIR}/${DOMESTIC} && ${MAKE} ${_M} ${_J} _SLAVE_BUILD= build)

Legend:
Removed from v.1.112  
changed lines
  Added in v.1.119

CVSweb <webmaster@jp.NetBSD.org>