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

Annotation of src/Makefile, Revision 1.113

1.113   ! mrg         1: #      $NetBSD: Makefile,v 1.112 2000/04/10 14:47:22 mrg 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
                     27: #      'make build'. It defaults to 1.
1.95      cjs        28: #   UPDATE will avoid a `make cleandir' at the start of `make build',
                     29: #      as well as having the effects listed in /usr/share/mk/bsd.README.
                     30: #
                     31: # Targets:
1.110     jlam       32: #   build: builds a full release of netbsd in DESTDIR. If BUILD_DONE is
                     33: #      set, this is an empty target.
1.95      cjs        34: #   release: does a `make build,' and then tars up the DESTDIR files
                     35: #      into RELEASEDIR, in release(7) format. (See etc/Makefile for
                     36: #      more information on this.)
                     37: #   snapshot: a synonym for release.
1.32      cgd        38:
1.106     aidan      39: SRCTOP=.
                     40: .include <bsd.crypto.mk>               # for configuration variables.
                     41:
                     42: .if defined(CRYPTOPATH)
                     43: .sinclude "${CRYPTOPATH}/Makefile.frag"
                     44: .endif
1.4       cgd        45:
1.100     sommerfe   46: MKOBJDIRS ?= no
1.58      tv         47: HAVE_GCC28!=   ${CXX} --version | egrep "^(2\.8|egcs)" ; echo
                     48:
1.76      bouyer     49: .if defined(NBUILDJOBS)
                     50: _J= -j${NBUILDJOBS}
                     51: .endif
                     52:
1.112     mrg        53: .if defined(DESTDIR)
                     54: _M=-m ${DESTDIR}/usr/share/mk
                     55: .endif
                     56:
1.4       cgd        57: # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
1.2       cgd        58:
1.52      mycroft    59: SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share sys
1.109     cjs        60: .if make(obj)
                     61: SUBDIR+= distrib
                     62: .endif
1.105     assar      63:
                     64: includes-lib: includes-include includes-sys
1.36      explorer   65:
                     66: .if exists(games)
                     67: SUBDIR+= games
                     68: .endif
                     69:
1.8       cgd        70: SUBDIR+= gnu
1.52      mycroft    71: # This is needed for libstdc++ and gen-params.
                     72: includes-gnu: includes-include includes-sys
1.21      cgd        73:
1.13      brezak     74: .if exists(regress)
1.9       cgd        75: .ifmake !(install)
                     76: SUBDIR+= regress
                     77: .endif
                     78:
1.10      cgd        79: regression-tests:
                     80:        @echo Running regression tests...
1.112     mrg        81:        @(cd ${.CURDIR}/regress && ${MAKE} ${_M} regress)
1.13      brezak     82: .endif
1.20      cgd        83:
1.108     erh        84: buildmsg:
1.45      perry      85:        @echo -n "Build started at: "
                     86:        @date
1.108     erh        87:
                     88: beforeinstall:
1.112     mrg        89: .ifndef NODISTRIBDIRS
1.26      tls        90: .ifndef DESTDIR
                     91:        (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
1.31      tls        92: .else
                     93:        (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
1.26      tls        94: .endif
1.112     mrg        95: .endif
1.15      cgd        96:
                     97: afterinstall:
1.86      lukem      98: .if ${MKMAN} != "no" && !defined(_BUILD)
1.112     mrg        99:        ${MAKE} ${_M} whatis.db
1.81      scottr    100: .endif
                    101:
                    102: whatis.db:
1.112     mrg       103:        (cd ${.CURDIR}/share/man && ${MAKE} ${_M} makedb)
1.15      cgd       104:
1.84      tv        105: # wrt info/dir below:  It's safe to move this over top of /usr/share/info/dir,
                    106: # as the build will automatically remove/replace the non-pkg entries there.
                    107:
1.110     jlam      108: .if defined(BUILD_DONE)
                    109: build:
                    110:        @echo "Build installed into ${DESTDIR}"
                    111: .else
1.108     erh       112: build: buildmsg beforeinstall
1.96      scottr    113: .if defined(FORCE_DOMESTIC)
                    114:        @echo '*** CAPUTE!'
                    115:        @echo '    The FORCE_DOMESTIC flag is not compatible with "make build".'
                    116:        @echo '    Please correct the problem and try again.'
                    117:        @false
                    118: .endif
1.86      lukem     119: .if ${MKSHARE} != "no"
1.32      cgd       120:        (cd ${.CURDIR}/share/mk && ${MAKE} install)
1.68      lukem     121: .endif
1.112     mrg       122: .if !defined(UPDATE) && !defined(NOCLEANDIR)
                    123:        ${MAKE} ${_M} cleandir
1.39      christos  124: .endif
1.103     simonb    125: .if ${MKOBJDIRS} != "no"
                    126:        ${MAKE} obj
                    127: .endif
1.75      tv        128: .if empty(HAVE_GCC28)
1.71      mycroft   129: .if defined(DESTDIR)
                    130:        @echo "*** CAPUTE!"
1.84      tv        131:        @echo "    You attempted to compile the world without egcs.  You must"
1.71      mycroft   132:        @echo "    first install a native egcs compiler."
1.84      tv        133:        @false
1.71      mycroft   134: .else
                    135:        (cd ${.CURDIR}/gnu/usr.bin/egcs && \
1.112     mrg       136:            ${MAKE} ${_M} ${_J} dependall MKMAN=no && \
                    137:            ${MAKE} ${_M} MKMAN=no install && ${MAKE} ${_M} cleandir)
                    138: .endif
1.71      mycroft   139: .endif
1.112     mrg       140: .if !defined(NOINCLUDES)
                    141:        ${MAKE} ${_M} includes
1.71      mycroft   142: .endif
1.61      mycroft   143:        (cd ${.CURDIR}/lib/csu && \
1.113   ! mrg       144:            ${MAKE} ${_M} ${_J} MKSHARE=no dependall && \
        !           145:            ${MAKE} ${_M} MKSHARE=no install)
1.61      mycroft   146:        (cd ${.CURDIR}/lib && \
1.113   ! mrg       147:            ${MAKE} ${_M} ${_J} MKSHARE=no dependall && \
        !           148:            ${MAKE} ${_M} MKSHARE=no install)
1.61      mycroft   149:        (cd ${.CURDIR}/gnu/lib && \
1.113   ! mrg       150:            ${MAKE} ${_M} ${_J} MKSHARE=no dependall && \
        !           151:            ${MAKE} ${_M} MKSHARE=no install)
1.106     aidan     152: .if target(cryptobuild)
1.112     mrg       153:        ${MAKE} ${_M} ${_J} cryptobuild
1.103     simonb    154: .endif
1.112     mrg       155:        ${MAKE} ${_M} ${_J} dependall && ${MAKE} ${_M} _BUILD= install
1.97      christos  156: .if defined(DOMESTIC) && !defined(EXPORTABLE_SYSTEM)
1.112     mrg       157:        (cd ${.CURDIR}/${DOMESTIC} && ${MAKE} ${_M} ${_J} _SLAVE_BUILD= build)
1.49      lukem     158: .endif
1.112     mrg       159:        ${MAKE} ${_M} whatis.db
1.50      mellon    160:        @echo -n "Build finished at: "
                    161:        @date
1.110     jlam      162: .endif
1.87      cjs       163:
                    164: release snapshot: build
1.112     mrg       165:        (cd ${.CURDIR}/etc && ${MAKE} ${_M} INSTALL_DONE=1 release)
1.1       cgd       166:
                    167: .include <bsd.subdir.mk>

CVSweb <webmaster@jp.NetBSD.org>