[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src

Annotation of src/Makefile, Revision 1.157

1.157   ! thorpej     1: #      $NetBSD: Makefile,v 1.156 2001/11/15 19:32:19 tv Exp $
1.95      cjs         2:
                      3: # This is the top-level makefile for building NetBSD. For an outline of
                      4: # how to build a snapshot or release, as well as other release engineering
                      5: # information, see http://www.netbsd.org/developers/releng/index.html
                      6: #
                      7: # Not everything you can set or do is documented in this makefile. In
                      8: # particular, you should review the files in /usr/share/mk (especially
                      9: # bsd.README) for general information on building programs and writing
                     10: # Makefiles within this structure, and see the comments in src/etc/Makefile
                     11: # for further information on installation and release set options.
                     12: #
                     13: # Variables listed below can be set on the make command line (highest
                     14: # priority), in /etc/mk.conf (middle priority), or in the environment
                     15: # (lowest priority).
                     16: #
                     17: # Variables:
1.101     sommerfe   18: #   DESTDIR is the target directory for installation of the compiled
                     19: #      software. It defaults to /. Note that programs are built against
                     20: #      libraries installed in DESTDIR.
1.95      cjs        21: #   MKMAN, if set to `no', will prevent building of manual pages.
1.101     sommerfe   22: #   MKOBJDIRS, if not set to `no', will build object directories at
                     23: #      an appropriate point in a build.
1.95      cjs        24: #   MKSHARE, if set to `no', will prevent building and installing
                     25: #      anything in /usr/share.
1.101     sommerfe   26: #   NBUILDJOBS is the number of jobs to start in parallel during a
1.127     tv         27: #      `make build'. It defaults to 1.
1.125     mrg        28: #   UPDATE, if defined, will avoid a `make cleandir' at the start of
                     29: #     `make build', as well as having the effects listed in
                     30: #     /usr/share/mk/bsd.README.
                     31: #   NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
                     32: #     of the `make build'.
1.119     toddpw     33: #   NOINCLUDES will avoid the `make includes' usually done by `make build'.
1.95      cjs        34: #
                     35: # Targets:
1.137     tv         36: #   build:
                     37: #      Builds a full release of NetBSD in DESTDIR.  If BUILD_DONE is
1.110     jlam       38: #      set, this is an empty target.
1.137     tv         39: #   release:
                     40: #      Does a `make build,' and then tars up the DESTDIR files
1.95      cjs        41: #      into RELEASEDIR, in release(7) format. (See etc/Makefile for
                     42: #      more information on this.)
1.137     tv         43: #   regression-tests:
                     44: #      Runs the regression tests in "regress" on this host.
1.123     mrg        45: #
1.137     tv         46: # Targets invoked by `make build,' in order:
1.155     tv         47: #   cleandir:        cleans the tree.
1.137     tv         48: #   obj:             creates object directories.
1.152     tv         49: #   do-tools:        builds host toolchain.
1.131     tv         50: #   do-distrib-dirs: creates the distribution directories.
1.137     tv         51: #   includes:        installs include files.
1.143     tv         52: #   do-lib-csu:      builds and installs prerequisites from lib/csu.
                     53: #   do-lib:          builds and installs prerequisites from lib.
                     54: #   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
1.137     tv         55: #   do-build:        builds and installs the entire system.
1.32      cgd        56:
1.146     tv         57: .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
                     58: .MAKEFLAGS: -m ${.CURDIR}/share/mk
                     59: .endif
1.148     jmc        60:
1.146     tv         61: .include <bsd.own.mk>
1.4       cgd        62:
1.137     tv         63: # Sanity check: make sure that "make build" is not invoked simultaneously
                     64: # with a standard recursive target.
                     65:
                     66: .if make(build) || make(release) || make(snapshot)
                     67: .for targ in ${TARGETS:Nobj:Ncleandir}
                     68: .if make(${targ}) && !target(.BEGIN)
                     69: .BEGIN:
                     70:        @echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
                     71:        @false
                     72: .endif
                     73: .endfor
                     74: .endif
1.58      tv         75:
1.76      bouyer     76: .if defined(NBUILDJOBS)
1.137     tv         77: _J=            -j${NBUILDJOBS}
1.76      bouyer     78: .endif
                     79:
1.157   ! thorpej    80: # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW.  Also note that
        !            81: # distrib does not belong here, either, as it is a very special case.
        !            82: _SUBDIR+=      tools lib include gnu bin games libexec sbin usr.bin \
        !            83:                usr.sbin share sys regress
        !            84:
        !            85: .if make(cleandir) || make(clean) || make(obj)
        !            86: _SUBDIR+= distrib
        !            87: .ifdef MAKEOBJDIRPREFIX
        !            88: _SUBDIR+= etc
        !            89: .endif
        !            90: .endif
1.105     assar      91:
1.137     tv         92: # Weed out directories that don't exist.
1.36      explorer   93:
1.137     tv         94: .for dir in ${_SUBDIR}
1.154     tv         95: .if exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
1.137     tv         96: SUBDIR+=       ${dir}
1.36      explorer   97: .endif
1.137     tv         98: .endfor
1.21      cgd        99:
1.13      brezak    100: .if exists(regress)
1.10      cgd       101: regression-tests:
                    102:        @echo Running regression tests...
1.152     tv        103:        @(cd ${.CURDIR}/regress && ${MAKE} regress)
1.13      brezak    104: .endif
1.20      cgd       105:
1.137     tv        106: .if ${MKMAN} != "no"
                    107: afterinstall: whatis.db
                    108: whatis.db:
1.152     tv        109:        (cd ${.CURDIR}/share/man && ${MAKE} makedb)
1.137     tv        110: .endif
1.108     erh       111:
1.137     tv        112: # Targets (in order!) called by "make build".
1.123     mrg       113:
1.156     tv        114: BUILDTARGETS+= check-tools
1.155     tv        115: .if !defined(UPDATE) && !defined(NOCLEANDIR)
                    116: BUILDTARGETS+= cleandir
                    117: .endif
1.149     tv        118: .if ${MKOBJDIRS} != "no"
1.137     tv        119: BUILDTARGETS+= obj
1.123     mrg       120: .endif
1.138     tv        121: .if ${USETOOLS} == "yes"
1.152     tv        122: BUILDTARGETS+= do-tools
1.131     tv        123: .endif
1.137     tv        124: .if !defined(NODISTRIBDIRS)
                    125: BUILDTARGETS+= do-distrib-dirs
1.131     tv        126: .endif
1.137     tv        127: .if !defined(NOINCLUDES)
                    128: BUILDTARGETS+= includes
1.131     tv        129: .endif
1.143     tv        130: BUILDTARGETS+= do-lib-csu do-lib do-gnu-lib do-build
1.131     tv        131:
1.137     tv        132: # Enforce proper ordering of some rules.
1.123     mrg       133:
1.137     tv        134: .ORDER:                ${BUILDTARGETS}
                    135: includes-lib:  includes-include includes-sys
                    136: includes-gnu:  includes-lib
1.123     mrg       137:
1.137     tv        138: # Build the system and install into DESTDIR.
1.123     mrg       139:
1.137     tv        140: build:
                    141: .if defined(BUILD_DONE)
                    142:        @echo "Build already installed into ${DESTDIR}"
                    143: .else
                    144:        @echo -n "Build started at: " && date
1.145     tv        145: .for tgt in ${BUILDTARGETS}
1.156     tv        146:        @(cd ${.CURDIR} && ${MAKE} ${_J} ${tgt})
1.145     tv        147: .endfor
1.137     tv        148:        @echo -n "Build finished at: " && date
1.71      mycroft   149: .endif
1.123     mrg       150:
1.137     tv        151: # Build a release or snapshot (implies "make build").
1.123     mrg       152:
1.137     tv        153: release snapshot: build
1.152     tv        154:        (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)
1.123     mrg       155:
1.137     tv        156: # Special components of the "make build" process.
1.156     tv        157:
                    158: check-tools:
                    159: .if defined(USE_NEW_TOOLCHAIN) && (${USE_NEW_TOOLCHAIN} != "nowarn")
                    160:        @echo '*** WARNING:  Building on MACHINE=${MACHINE} with USE_NEW_TOOLCHAIN.'
                    161:        @echo '*** This platform is not yet verified to work with the new toolchain,'
                    162:        @echo '*** and may result in a failed build or corrupt binaries!'
                    163: .endif
1.123     mrg       164:
1.137     tv        165: do-distrib-dirs:
1.147     jmc       166: .if !defined(DESTDIR) || ${DESTDIR} == ""
1.152     tv        167:        (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
1.147     jmc       168: .else
1.152     tv        169:        (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=${DESTDIR} distrib-dirs)
1.147     jmc       170: .endif
1.123     mrg       171:
1.152     tv        172: .for dir in tools lib/csu lib gnu/lib
1.143     tv        173: do-${dir:S/\//-/}:
1.137     tv        174: .for targ in dependall install
1.154     tv        175:        (cd ${.CURDIR}/${dir} && ${MAKE} ${_J} ${targ})
1.137     tv        176: .endfor
                    177: .endfor
1.143     tv        178:
                    179: do-build:
1.154     tv        180: .for targ in dependall install
                    181:        (cd ${.CURDIR} && ${MAKE} ${_J} ${targ} BUILD_tools=no BUILD_lib=no)
                    182: .endfor
1.87      cjs       183:
1.137     tv        184: # Speedup stubs for some subtrees that don't need to run these rules.
                    185: # (Tells <bsd.subdir.mk> not to recurse for them.)
1.129     tv        186:
1.152     tv        187: .for dir in bin etc distrib games libexec regress sbin usr.sbin tools
                    188: includes-${dir}:
                    189:        @true
                    190: .endfor
                    191: .for dir in etc distrib regress
                    192: install-${dir}:
                    193:        @true
                    194: .endfor
                    195:
                    196: # XXX this needs to change when distrib Makefiles are recursion compliant
                    197: dependall-distrib depend-distrib all-distrib:
1.136     nathanw   198:        @true
1.130     tv        199:
1.151     tv        200: .include <bsd.obj.mk>
1.146     tv        201: .include <bsd.subdir.mk>
1.144     tv        202:
1.150     tv        203: build-docs: ${.CURDIR}/BUILDING
                    204: ${.CURDIR}/BUILDING: BUILDING.mdoc
                    205:        groff -mdoc -Tascii -P-b -P-u -P-o $> >$@

CVSweb <webmaster@jp.NetBSD.org>