Home | History | Annotate | Line # | Download | only in src
Makefile revision 1.181
      1 #	$NetBSD: Makefile,v 1.181 2002/07/10 18:55:20 thorpej 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 #   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.
     21 #   MKMAN, if set to `no', will prevent building of manual pages.
     22 #   MKOBJDIRS, if not set to `no', will build object directories at
     23 #	an appropriate point in a build.
     24 #   MKSHARE, if set to `no', will prevent building and installing
     25 #	anything in /usr/share.
     26 #   UPDATE, if defined, will avoid a `make cleandir' at the start of
     27 #	`make build', as well as having the effects listed in
     28 #	/usr/share/mk/bsd.README.
     29 #   NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
     30 #	of the `make build'.
     31 #   NOINCLUDES will avoid the `make includes' usually done by `make build'.
     32 #
     33 # Targets:
     34 #   build:
     35 #	Builds a full release of NetBSD in DESTDIR.  If BUILD_DONE is
     36 #	set, this is an empty target.
     37 #   release:
     38 #	Does a `make build,' and then tars up the DESTDIR files
     39 #	into RELEASEDIR, in release(7) format. (See etc/Makefile for
     40 #	more information on this.)
     41 #   regression-tests:
     42 #	Runs the regression tests in "regress" on this host.
     43 #
     44 # Targets invoked by `make build,' in order:
     45 #   cleandir:        cleans the tree.
     46 #   obj:             creates object directories.
     47 #   do-tools:        builds host toolchain.
     48 #   do-distrib-dirs: creates the distribution directories.
     49 #   includes:        installs include files.
     50 #   do-lib-csu:      builds and installs prerequisites from lib/csu.
     51 #   do-lib:          builds and installs prerequisites from lib.
     52 #   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
     53 #   do-build:        builds and installs the entire system.
     54 
     55 .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
     56 .MAKEFLAGS: -m ${.CURDIR}/share/mk
     57 .endif
     58 
     59 # If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
     60 # not be the top level objdir, because "make obj" can happen in the *middle*
     61 # of "make build" (long after <bsd.own.mk> is calculated it).  So, pre-set
     62 # _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
     63 _SRC_TOP_OBJ_=
     64 
     65 .include <bsd.own.mk>
     66 
     67 # Sanity check: make sure that "make build" is not invoked simultaneously
     68 # with a standard recursive target.
     69 
     70 .if make(build) || make(release) || make(snapshot)
     71 .for targ in ${TARGETS:Nobj:Ncleandir}
     72 .if make(${targ}) && !target(.BEGIN)
     73 .BEGIN:
     74 	@echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
     75 	@false
     76 .endif
     77 .endfor
     78 .endif
     79 
     80 _SUBDIR=	tools lib include gnu bin games libexec sbin usr.bin
     81 _SUBDIR+=	usr.sbin share sys etc distrib regress
     82 
     83 # Weed out directories that don't exist.
     84 
     85 .for dir in ${_SUBDIR}
     86 .if exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
     87 SUBDIR+=	${dir}
     88 .endif
     89 .endfor
     90 
     91 .if exists(regress)
     92 regression-tests:
     93 	@echo Running regression tests...
     94 	@(cd ${.CURDIR}/regress && ${MAKE} regress)
     95 .endif
     96 
     97 .if defined(UNPRIVED)
     98 NOPOSTINSTALL=	# defined
     99 .endif
    100 
    101 afterinstall:
    102 .if ${MKMAN} != "no"
    103 	(cd ${.CURDIR}/share/man && ${MAKE} makedb)
    104 .endif
    105 .if defined(UNPRIVED) && (${MKINFO} != "no")
    106 	(cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)
    107 .endif
    108 .if !defined(NOPOSTINSTALL)
    109 	(cd ${.CURDIR} && ${MAKE} postinstall-check)
    110 .endif
    111 
    112 postinstall-check:
    113 	@echo "   === Post installation checks ==="
    114 	sh ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check
    115 	@echo "   ================================"
    116 
    117 postinstall-fix: .NOTMAIN
    118 	@echo "   === Post installation fixes ==="
    119 	sh ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix
    120 	@echo "   ================================"
    121 
    122 
    123 # Targets (in order!) called by "make build".
    124 
    125 BUILDTARGETS+=	check-tools
    126 .if !defined(UPDATE) && !defined(NOCLEANDIR)
    127 BUILDTARGETS+=	cleandir
    128 .endif
    129 .if ${MKOBJDIRS} != "no"
    130 BUILDTARGETS+=	obj
    131 .endif
    132 .if ${USETOOLS} == "yes"
    133 BUILDTARGETS+=	do-tools
    134 .endif
    135 .if !defined(NODISTRIBDIRS)
    136 BUILDTARGETS+=	do-distrib-dirs
    137 .endif
    138 .if !defined(NOINCLUDES)
    139 BUILDTARGETS+=	includes
    140 .endif
    141 BUILDTARGETS+=	do-lib-csu do-lib do-gnu-lib do-build
    142 
    143 # Enforce proper ordering of some rules.
    144 
    145 .ORDER:		${BUILDTARGETS}
    146 includes-lib:	includes-include includes-sys
    147 includes-gnu:	includes-lib
    148 
    149 # Build the system and install into DESTDIR.
    150 
    151 build:
    152 .if defined(BUILD_DONE)
    153 	@echo "Build already installed into ${DESTDIR}"
    154 .else
    155 	@printf "Build started at: " && date
    156 .for tgt in ${BUILDTARGETS}
    157 	@(cd ${.CURDIR} && ${MAKE} ${tgt})
    158 .endfor
    159 	@printf "Build finished at: " && date
    160 .endif
    161 
    162 # Build a full distribution, but not a release (i.e. no sets into
    163 # ${RELEASEDIR}).
    164 
    165 distribution:
    166 #	(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
    167 	(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution)
    168 .if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
    169 	(cd ${.CURDIR}/distrib/sets && ${MAKE} checkflist)
    170 .endif
    171 
    172 # Build a release or snapshot (implies "make build").  Note that
    173 # in this case, the set lists will be checked before the tar files
    174 # are made.
    175 
    176 release snapshot:
    177 	(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
    178 	(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)
    179 
    180 # Special components of the "make build" process.
    181 
    182 check-tools:
    183 .if defined(USE_NEW_TOOLCHAIN) && (${USE_NEW_TOOLCHAIN} != "nowarn")
    184 	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with USE_NEW_TOOLCHAIN.'
    185 	@echo '*** This platform is not yet verified to work with the new toolchain,'
    186 	@echo '*** and may result in a failed build or corrupt binaries!'
    187 .endif
    188 .if defined(NBUILDJOBS)
    189 	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
    190 .endif
    191 
    192 do-distrib-dirs:
    193 .if !defined(DESTDIR) || ${DESTDIR} == ""
    194 	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
    195 .else
    196 	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=${DESTDIR} distrib-dirs)
    197 .endif
    198 
    199 .for dir in tools lib/csu lib gnu/lib
    200 do-${dir:S/\//-/}:
    201 .for targ in dependall install
    202 	(cd ${.CURDIR}/${dir} && ${MAKE} ${targ})
    203 .endfor
    204 .endfor
    205 
    206 do-build:
    207 .for targ in dependall install
    208 	(cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)
    209 .endfor
    210 
    211 # Speedup stubs for some subtrees that don't need to run these rules.
    212 # (Tells <bsd.subdir.mk> not to recurse for them.)
    213 
    214 .for dir in bin etc distrib games libexec regress sbin usr.sbin tools
    215 includes-${dir}:
    216 	@true
    217 .endfor
    218 .for dir in etc distrib regress
    219 install-${dir}:
    220 	@true
    221 .endfor
    222 
    223 # XXX this needs to change when distrib Makefiles are recursion compliant
    224 dependall-distrib depend-distrib all-distrib:
    225 	@true
    226 
    227 .include <bsd.obj.mk>
    228 .include <bsd.subdir.mk>
    229 
    230 build-docs: ${.CURDIR}/BUILDING
    231 ${.CURDIR}/BUILDING: BUILDING.mdoc
    232 	groff -mdoc -Tascii -P-b -P-u -P-o $> >$@
    233