[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.124 and 1.134

version 1.124, 2001/06/10 13:12:32 version 1.134, 2001/10/08 23:42:21
Line 24 
Line 24 
 #   MKSHARE, if set to `no', will prevent building and installing  #   MKSHARE, if set to `no', will prevent building and installing
 #       anything in /usr/share.  #       anything in /usr/share.
 #   NBUILDJOBS is the number of jobs to start in parallel during a  #   NBUILDJOBS is the number of jobs to start in parallel during a
 #       '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, if defined, will avoid a `make cleandir' at the start of
 #       as well as having the effects listed in /usr/share/mk/bsd.README.  #     `make build', as well as having the effects listed in
 #   NOCLEANDIR will avoid a `make cleandir' at the start of `make build',  #     /usr/share/mk/bsd.README.
 #       but without having the effects listed in /usr/share/mk/bsd.README.  #   NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
   #     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'.
   
 #  #
 # 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 41 
Line 43 
 #  #
 # Sub targets of `make build,' in order:  # Sub targets of `make build,' in order:
 #   buildstartmsg: displays the start time of the build.  #   buildstartmsg: displays the start time of the build.
 #   beforeinstall: creates the distribution directories.  #   do-make-tools: builds host toolchain.
   #   do-distrib-dirs: creates the distribution directories.
 #   do-force-domestic: check's that FORCE_DOMESTIC isn't set (deprecated.)  #   do-force-domestic: check's that FORCE_DOMESTIC isn't set (deprecated.)
 #   do-share-mk: installs /usr/share/mk files.  #   do-cleandir: cleans the tree.
 #   do-cleandir: clean's the tree.  #   do-make-obj: creates object directories if required.
 #   do-make-obj: create's object directories if required.  
 #   do-check-egcs: check's that we have a modern enough compiler (deprecated.)  
 #   do-make-includes: install include files.  #   do-make-includes: install include files.
 #   do-lib-csu: build & install startup object files.  #   do-lib-csu: build & install startup object files.
 #   do-lib: build & install system libraries.  #   do-lib: build & install system libraries.
Line 56 
Line 57 
 #   do-whatisdb: build & install the `whatis.db' man database.  #   do-whatisdb: build & install the `whatis.db' man database.
 #   buildendmsg: displays the end time of the build.  #   buildendmsg: displays the end time of the build.
   
 .include <bsd.own.mk>  .include "${.CURDIR}/share/mk/bsd.own.mk"
   
 MKOBJDIRS ?= no  MKOBJDIRS ?= no
 HAVE_EGCS!=     ${CXX} --version | egrep "^(2\.[89]|egcs)" ; echo  
   
 .if defined(NBUILDJOBS)  .if defined(NBUILDJOBS)
 _J= -j${NBUILDJOBS}  _J= -j${NBUILDJOBS}
 .endif  .endif
   
 .if defined(DESTDIR)  
 _M=-m ${DESTDIR}/usr/share/mk  
 .endif  
   
 # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW  # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
   
 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(cleandir) || make(obj)  .if make(cleandir) || make(obj)
 SUBDIR+= distrib  SUBDIR+= distrib tools
 .ifdef MAKEOBJDIRPREFIX  .ifdef MAKEOBJDIRPREFIX
 SUBDIR+= etc  SUBDIR+= etc
 .endif  .endif
Line 107  buildendmsg:
Line 103  buildendmsg:
         @echo -n "Build finished at: "          @echo -n "Build finished at: "
         @date          @date
   
 # If sharesrc is around, use its share/mk files to bootstrap until the  
 # mk files are installed (first step of make build).  If installing to  
 # DESTDIR, don't bother, since the build will fail later on anyway.  
   
 beforeinstall:  
 .ifndef NODISTRIBDIRS  
 .ifndef DESTDIR  
 .if exists(share/mk)  
         (cd ${.CURDIR}/etc && ${MAKE} -m ${.CURDIR}/share/mk DESTDIR=/ distrib-dirs)  
 .else  
         (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)  
 .endif  
 .else  
         (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)  
 .endif  
 .endif  
   
 afterinstall:  afterinstall:
 .if ${MKMAN} != "no" && !defined(_BUILD)  .if ${MKMAN} != "no" && !defined(_BUILD)
         ${MAKE} ${_M} whatis.db          ${MAKE} ${_M} whatis.db
Line 141  build:
Line 120  build:
 .else  .else
 build:  build:
         @${MAKE} ${_M} buildstartmsg          @${MAKE} ${_M} buildstartmsg
         @${MAKE} ${_M} beforeinstall          @${MAKE} ${_M} do-make-tools
           @${MAKE} ${_M} do-distrib-dirs
         @${MAKE} ${_M} do-force-domestic          @${MAKE} ${_M} do-force-domestic
         @${MAKE} ${_M} do-share-mk  
         @${MAKE} ${_M} do-cleandir          @${MAKE} ${_M} do-cleandir
         @${MAKE} ${_M} do-make-obj          @${MAKE} ${_M} do-make-obj
         @${MAKE} ${_M} do-check-egcs  
         @${MAKE} ${_M} do-make-includes          @${MAKE} ${_M} do-make-includes
         @${MAKE} ${_M} do-lib-csu          @${MAKE} ${_M} do-lib-csu
         @${MAKE} ${_M} do-lib          @${MAKE} ${_M} do-lib
Line 157  build:
Line 135  build:
         @${MAKE} ${_M} buildendmsg          @${MAKE} ${_M} buildendmsg
 .endif  .endif
   
   do-make-tools:
   .if ${USETOOLS} != "no"
   .if ${MKOBJDIRS} != "no"
           cd ${.CURDIR}/tools && ${MAKE} ${_M} obj
   .endif
           cd ${.CURDIR}/tools && ${MAKE} ${_M} build
   .endif
   
   do-distrib-dirs:
   .ifndef NODISTRIBDIRS
   .ifndef DESTDIR
           (cd ${.CURDIR}/etc && ${MAKE} ${_M} DESTDIR=/ distrib-dirs)
   .else
           (cd ${.CURDIR}/etc && ${MAKE} ${_M} DESTDIR=${DESTDIR} distrib-dirs)
   .endif
   .endif
   
 do-force-domestic:  do-force-domestic:
 .if defined(FORCE_DOMESTIC)  .if defined(FORCE_DOMESTIC)
         @echo '*** CAPUTE!'          @echo '*** CAPUTE!'
Line 165  do-force-domestic:
Line 160  do-force-domestic:
         @false          @false
 .endif  .endif
   
 do-share-mk:  
 .if ${MKSHARE} != "no"  
         (cd ${.CURDIR}/share/mk && ${MAKE} install)  
 .endif  
   
 do-cleandir:  do-cleandir:
 .if !defined(UPDATE) && !defined(NOCLEANDIR)  .if !defined(UPDATE) && !defined(NOCLEANDIR)
         ${MAKE} ${_J} ${_M} cleandir          ${MAKE} ${_J} ${_M} cleandir
Line 180  do-make-obj:
Line 170  do-make-obj:
         ${MAKE} ${_J} ${_M} obj          ${MAKE} ${_J} ${_M} obj
 .endif  .endif
   
 do-check-egcs:  
 .if empty(HAVE_EGCS)  
 .if defined(DESTDIR)  
         @echo "*** CAPUTE!"  
         @echo "    You attempted to compile the world without egcs.  You must"  
         @echo "    first install a native egcs compiler."  
         @false  
 .else  
         (cd ${.CURDIR}/gnu/usr.bin/egcs && \  
             ${MAKE} ${_M} ${_J} dependall MKMAN=no && \  
             ${MAKE} ${_M} MKMAN=no install && ${MAKE} ${_M} cleandir)  
 .endif  
 .endif  
   
 do-make-includes:  do-make-includes:
 .if !defined(NOINCLUDES)  .if !defined(NOINCLUDES)
         ${MAKE} ${_M} includes          ${MAKE} ${_M} includes
Line 228  do-whatisdb:
Line 204  do-whatisdb:
 release snapshot: build  release snapshot: build
         (cd ${.CURDIR}/etc && ${MAKE} ${_M} INSTALL_DONE=1 release)          (cd ${.CURDIR}/etc && ${MAKE} ${_M} INSTALL_DONE=1 release)
   
 .include <bsd.subdir.mk>  # Speedup stubs for some subtrees that don't need to run these rules
   includes-bin includes-games includes-libexec includes-regress \
   includes-sbin includes-usr.sbin:
           @${TRUE}
   
   .if !exists(${.CURDIR}/share/mk)
   .BEGIN:
           @echo 'BUILD ABORTED: share/mk does not exist, cannot run make.'
           @false
   .endif
   
   .include "${.CURDIR}/share/mk/bsd.subdir.mk"
   
   _M:=    -m ${.CURDIR}/share/mk

Legend:
Removed from v.1.124  
changed lines
  Added in v.1.134

CVSweb <webmaster@jp.NetBSD.org>