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

Annotation of src/Makefile, Revision 1.95

1.95    ! cjs         1: #      $NetBSD: Makefile,v 1.94 1999/03/10 19:18:59 scottr Exp $
        !             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:
        !            18: #   NBUILDJOBS is the number of jobs to start in parallel during a
        !            19: #      'make build'. It defaults to 1.
        !            20: #   MKMAN, if set to `no', will prevent building of manual pages.
        !            21: #   MKSHARE, if set to `no', will prevent building and installing
        !            22: #      anything in /usr/share.
        !            23: #   UPDATE will avoid a `make cleandir' at the start of `make build',
        !            24: #      as well as having the effects listed in /usr/share/mk/bsd.README.
        !            25: #   DESTDIR is the target directory for installation of the compiled
        !            26: #      software. It defaults to /. Note that programs are built against
        !            27: #      libraries installed in DESTDIR.
        !            28: #
        !            29: # Targets:
        !            30: #   build: builds a full release of netbsd in DESTDIR.
        !            31: #   release: does a `make build,' and then tars up the DESTDIR files
        !            32: #      into RELEASEDIR, in release(7) format. (See etc/Makefile for
        !            33: #      more information on this.)
        !            34: #   snapshot: a synonym for release.
1.32      cgd        35:
                     36: .include <bsd.own.mk>                  # for configuration variables.
1.4       cgd        37:
1.76      bouyer     38:
1.58      tv         39: HAVE_GCC28!=   ${CXX} --version | egrep "^(2\.8|egcs)" ; echo
                     40:
1.76      bouyer     41: .if defined(NBUILDJOBS)
                     42: _J= -j${NBUILDJOBS}
                     43: .endif
                     44:
1.4       cgd        45: # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
1.2       cgd        46:
1.52      mycroft    47: SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share sys
1.36      explorer   48:
                     49: .if exists(games)
                     50: SUBDIR+= games
                     51: .endif
                     52:
1.8       cgd        53: SUBDIR+= gnu
1.52      mycroft    54: # This is needed for libstdc++ and gen-params.
                     55: includes-gnu: includes-include includes-sys
1.9       cgd        56:
1.82      scottr     57: # Descend into the domestic tree if it exists AND
                     58: #  1) the target is clean, cleandir, or obj, OR
1.93      scottr     59: #  2) the the target is install or includes AND
                     60: #    NOT compiling only "exportable" code AND
                     61: #    doing it as part of installing a distribution.
1.94      scottr     62: #
                     63: # NOTE:  due to the use of the make(foo) construct here, using the
                     64: # clean, cleandir, and obj targets on the command line in conjunction
                     65: # with any other target may produce unexpected results.
1.82      scottr     66:
1.79      scottr     67: .if exists(domestic) && \
                     68:     (make(clean) || make(cleandir) || make(obj) || \
1.82      scottr     69:     ((make(includes) || make(install)) && \
1.93      scottr     70:     !defined(EXPORTABLE_SYSTEM) && defined(_DISTRIB)))
1.21      cgd        71: SUBDIR+= domestic
                     72: .endif
                     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.22      cgd        81:        @(cd ${.CURDIR}/regress && ${MAKE} regress)
1.13      brezak     82: .endif
1.20      cgd        83:
1.26      tls        84: beforeinstall:
1.45      perry      85: .ifmake build
                     86:        @echo -n "Build started at: "
                     87:        @date
                     88: .endif
1.26      tls        89: .ifndef DESTDIR
                     90:        (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
1.31      tls        91: .else
                     92:        (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
1.26      tls        93: .endif
1.15      cgd        94:
                     95: afterinstall:
1.86      lukem      96: .if ${MKMAN} != "no" && !defined(_BUILD)
1.81      scottr     97:        ${MAKE} whatis.db
                     98: .endif
                     99:
                    100: whatis.db:
1.22      cgd       101:        (cd ${.CURDIR}/share/man && ${MAKE} makedb)
1.15      cgd       102:
1.84      tv        103: # wrt info/dir below:  It's safe to move this over top of /usr/share/info/dir,
                    104: # as the build will automatically remove/replace the non-pkg entries there.
                    105:
1.43      thorpej   106: build: beforeinstall
1.86      lukem     107: .if ${MKSHARE} != "no"
1.32      cgd       108:        (cd ${.CURDIR}/share/mk && ${MAKE} install)
1.47      thorpej   109:        (cd ${.CURDIR}/share/tmac && ${MAKE} && ${MAKE} install)
1.68      lukem     110: .endif
1.39      christos  111: .if !defined(UPDATE)
1.17      cgd       112:        ${MAKE} cleandir
1.39      christos  113: .endif
1.75      tv        114: .if empty(HAVE_GCC28)
1.71      mycroft   115: .if defined(DESTDIR)
                    116:        @echo "*** CAPUTE!"
1.84      tv        117:        @echo "    You attempted to compile the world without egcs.  You must"
1.71      mycroft   118:        @echo "    first install a native egcs compiler."
1.84      tv        119:        @false
1.71      mycroft   120: .else
                    121:        (cd ${.CURDIR}/gnu/usr.bin/egcs && \
1.86      lukem     122:            ${MAKE} depend && ${MAKE} ${_J} MKMAN=no && \
                    123:            ${MAKE} MKMAN=no install && ${MAKE} cleandir)
1.71      mycroft   124: .endif
                    125: .endif
1.93      scottr    126:        ${MAKE} includes
1.61      mycroft   127:        (cd ${.CURDIR}/lib/csu && \
1.86      lukem     128:            ${MAKE} depend && ${MAKE} ${_J} MKMAN=no && \
                    129:            ${MAKE} MKMAN=no install)
1.61      mycroft   130:        (cd ${.CURDIR}/lib && \
1.86      lukem     131:            ${MAKE} depend && ${MAKE} ${_J} MKMAN=no && \
                    132:            ${MAKE} MKMAN=no install)
1.61      mycroft   133:        (cd ${.CURDIR}/gnu/lib && \
1.89      mellon    134:            ${MAKE} depend && ${MAKE} ${_J} MKMAN=no MKINFO=no && \
                    135:            ${MAKE} MKMAN=no MKINFO=no install)
1.80      scottr    136:        ${MAKE} depend && ${MAKE} ${_J} && ${MAKE} _BUILD= install
1.32      cgd       137: .if exists(domestic) && !defined(EXPORTABLE_SYSTEM)
1.78      scottr    138:        (cd ${.CURDIR}/domestic && ${MAKE} ${_J} _SLAVE_BUILD= build)
1.49      lukem     139: .endif
1.81      scottr    140:        ${MAKE} whatis.db
1.50      mellon    141:        @echo -n "Build finished at: "
                    142:        @date
1.87      cjs       143:
                    144: release snapshot: build
1.91      scottr    145:        (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)
1.1       cgd       146:
                    147: .include <bsd.subdir.mk>

CVSweb <webmaster@jp.NetBSD.org>