Home | History | Annotate | Line # | Download | only in src
Makefile revision 1.200
      1 #	$NetBSD: Makefile,v 1.200 2003/02/22 03:20:45 lukem Exp $
      2 
      3 #
      4 # This is the top-level makefile for building NetBSD. For an outline of
      5 # how to build a snapshot or release, as well as other release engineering
      6 # information, see http://www.netbsd.org/developers/releng/index.html
      7 #
      8 # Not everything you can set or do is documented in this makefile. In
      9 # particular, you should review the files in /usr/share/mk (especially
     10 # bsd.README) for general information on building programs and writing
     11 # Makefiles within this structure, and see the comments in src/etc/Makefile
     12 # for further information on installation and release set options.
     13 #
     14 # Variables listed below can be set on the make command line (highest
     15 # priority), in /etc/mk.conf (middle priority), or in the environment
     16 # (lowest priority).
     17 #
     18 # Variables:
     19 #   DESTDIR is the target directory for installation of the compiled
     20 #	software. It defaults to /. Note that programs are built against
     21 #	libraries installed in DESTDIR.
     22 #   MKMAN, if set to `no', will prevent building of manual pages.
     23 #   MKOBJDIRS, if not set to `no', will build object directories at
     24 #	an appropriate point in a build.
     25 #   MKSHARE, if set to `no', will prevent building and installing
     26 #	anything in /usr/share.
     27 #   UPDATE, if defined, will avoid a `make cleandir' at the start of
     28 #	`make build', as well as having the effects listed in
     29 #	/usr/share/mk/bsd.README.
     30 #   NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
     31 #	of the `make build'.
     32 #   NOINCLUDES will avoid the `make includes' usually done by `make build'.
     33 #
     34 # Targets:
     35 #   build:
     36 #	Builds a full release of NetBSD in DESTDIR, except for the
     37 #	/etc configuration files.
     38 #	If BUILD_DONE is set, this is an empty target.
     39 #   distribution:
     40 #	Builds a full release of NetBSD in DESTDIR, including the /etc
     41 #	configuration files.
     42 #   buildworld:
     43 #	As per `make distribution', except that it ensures that DESTDIR
     44 #	is not the root directory.
     45 #   installworld:
     46 #	Install the distribution from DESTDIR to INSTALLWORLDDIR (which
     47 #	defaults to the root directory).  Ensures that INSTALLWORLDDIR
     48 #	is the not root directory if cross compiling.
     49 #   release:
     50 #	Does a `make build', and then tars up the DESTDIR files
     51 #	into RELEASEDIR/${MACHINE}, in release(7) format.
     52 #	(See etc/Makefile for more information on this.)
     53 #   regression-tests:
     54 #	Runs the regression tests in "regress" on this host.
     55 #
     56 # Targets invoked by `make build,' in order:
     57 #   cleandir:        cleans the tree.
     58 #   obj:             creates object directories.
     59 #   do-tools:        builds host toolchain.
     60 #   do-distrib-dirs: creates the distribution directories.
     61 #   includes:        installs include files.
     62 #   do-lib-csu:      builds and installs prerequisites from lib/csu.
     63 #   do-lib-libc:     builds and installs prerequisites from lib/libc.
     64 #   do-lib:          builds and installs prerequisites from lib.
     65 #   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
     66 #   do-ld.so:        builds and installs prerequisites from libexec/ld.*_so.
     67 #   do-build:        builds and installs the entire system.
     68 #
     69 
     70 .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
     71 .MAKEFLAGS: -m ${.CURDIR}/share/mk
     72 .endif
     73 
     74 #
     75 # If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
     76 # not be the top level objdir, because "make obj" can happen in the *middle*
     77 # of "make build" (long after <bsd.own.mk> is calculated it).  So, pre-set
     78 # _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
     79 #
     80 _SRC_TOP_OBJ_=
     81 
     82 .include <bsd.own.mk>
     83 
     84 #
     85 # Sanity check: make sure that "make build" is not invoked simultaneously
     86 # with a standard recursive target.
     87 #
     88 
     89 .if make(build) || make(release) || make(snapshot)
     90 .for targ in ${TARGETS:Nobj:Ncleandir}
     91 .if make(${targ}) && !target(.BEGIN)
     92 .BEGIN:
     93 	@echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
     94 	@false
     95 .endif
     96 .endfor
     97 .endif
     98 
     99 _SUBDIR=	tools lib include gnu bin games libexec sbin usr.bin
    100 _SUBDIR+=	usr.sbin share rescue sys etc distrib regress
    101 
    102 #
    103 # Weed out directories that don't exist.
    104 #
    105 
    106 .for dir in ${_SUBDIR}
    107 .if exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
    108 SUBDIR+=	${dir}
    109 .endif
    110 .endfor
    111 
    112 .if exists(regress)
    113 regression-tests:
    114 	@echo Running regression tests...
    115 	@(cd ${.CURDIR}/regress && ${MAKE} regress)
    116 .endif
    117 
    118 .if defined(UNPRIVED)
    119 NOPOSTINSTALL=	# defined
    120 .endif
    121 
    122 afterinstall:
    123 .if ${MKMAN} != "no"
    124 	(cd ${.CURDIR}/share/man && ${MAKE} makedb)
    125 .endif
    126 .if defined(UNPRIVED) && (${MKINFO} != "no")
    127 	(cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)
    128 .endif
    129 .if !defined(NOPOSTINSTALL)
    130 	(cd ${.CURDIR} && ${MAKE} postinstall-check)
    131 .endif
    132 
    133 postinstall-check:
    134 	@echo "   === Post installation checks ==="
    135 	sh ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check
    136 	@echo "   ================================"
    137 
    138 postinstall-fix: .NOTMAIN
    139 	@echo "   === Post installation fixes ==="
    140 	sh ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix
    141 	@echo "   ================================"
    142 
    143 
    144 #
    145 # Targets (in order!) called by "make build".
    146 #
    147 
    148 BUILDTARGETS+=	check-tools
    149 .if !defined(UPDATE) && !defined(NOCLEANDIR)
    150 BUILDTARGETS+=	cleandir
    151 .endif
    152 .if ${MKOBJDIRS} != "no"
    153 BUILDTARGETS+=	obj
    154 .endif
    155 .if ${USETOOLS} == "yes"
    156 BUILDTARGETS+=	do-tools
    157 .endif
    158 .if !defined(NODISTRIBDIRS)
    159 BUILDTARGETS+=	do-distrib-dirs
    160 .endif
    161 .if !defined(NOINCLUDES)
    162 BUILDTARGETS+=	includes
    163 .endif
    164 BUILDTARGETS+=	do-lib-csu do-lib-libc do-lib do-gnu-lib do-ld.so do-build
    165 BUILDTARGETS+=	do-obsolete
    166 
    167 #
    168 # Enforce proper ordering of some rules.
    169 #
    170 
    171 .ORDER:		${BUILDTARGETS}
    172 includes-lib:	includes-include includes-sys
    173 includes-gnu:	includes-lib
    174 
    175 #
    176 # Build the system and install into DESTDIR.
    177 #
    178 
    179 START_TIME!=	date
    180 
    181 build:
    182 .if defined(BUILD_DONE)
    183 	@echo "Build already installed into ${DESTDIR}"
    184 .else
    185 	@echo "Build started at: ${START_TIME}"
    186 .for tgt in ${BUILDTARGETS}
    187 	@(cd ${.CURDIR} && ${MAKE} ${tgt})
    188 .endfor
    189 	@echo   "Build started at:  ${START_TIME}"
    190 	@printf "Build finished at: " && date
    191 .endif
    192 
    193 #
    194 # Build a full distribution, but not a release (i.e. no sets into
    195 # ${RELEASEDIR}).  "buildworld" enforces a build to ${DESTDIR} != /
    196 #
    197 
    198 distribution buildworld:
    199 .if make(buildworld) && \
    200     (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
    201 	@echo "Won't make ${.TARGET} with DESTDIR=/"
    202 	@false
    203 .endif
    204 	(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
    205 	(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution)
    206 .if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
    207 	(cd ${.CURDIR}/distrib/sets && ${MAKE} checkflist)
    208 .endif
    209 	@echo   "make ${.TARGET} started at:  ${START_TIME}"
    210 	@printf "make ${.TARGET} finished at: " && date
    211 
    212 #
    213 # Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
    214 # If installing to /, ensures that the host's operating system is NetBSD and
    215 # the host's `uname -m` == ${MACHINE}.
    216 #
    217 
    218 HOST_UNAME_S!=	uname -s
    219 HOST_UNAME_M!=	uname -m
    220 
    221 installworld:
    222 .if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
    223 	@echo "Can't make ${.TARGET} to DESTDIR=/"
    224 	@false
    225 .endif
    226 .if !defined(INSTALLWORLDDIR) || \
    227     ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
    228 .if (${HOST_UNAME_S} != "NetBSD")
    229 	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
    230 	@false
    231 .endif
    232 .if (${HOST_UNAME_M} != ${MACHINE})
    233 	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
    234 	@false
    235 .endif
    236 .endif
    237 	(cd ${.CURDIR}/distrib/sets && \
    238 	    ${MAKE} INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS= installsets)
    239 	(cd ${.CURDIR} && \
    240 	    ${MAKE} DESTDIR=${INSTALLWORLDDIR} postinstall-check)
    241 	@echo   "make ${.TARGET} started at:  ${START_TIME}"
    242 	@printf "make ${.TARGET} finished at: " && date
    243 
    244 #
    245 # Create sets from $DESTDIR into $RELEASEDIR
    246 #
    247 
    248 sets:
    249 	(cd ${.CURDIR}/distrib/sets && ${MAKE} maketars)
    250 
    251 #
    252 # Build a release or snapshot (implies "make build").  Note that
    253 # in this case, the set lists will be checked before the tar files
    254 # are made.
    255 #
    256 
    257 release snapshot:
    258 	(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
    259 	(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)
    260 	@echo   "make ${.TARGET} started at:  ${START_TIME}"
    261 	@printf "make ${.TARGET} finished at: " && date
    262 
    263 #
    264 # Special components of the "make build" process.
    265 #
    266 
    267 check-tools:
    268 .if ${TOOLCHAIN_MISSING} == "yes" && !defined(EXTERNAL_TOOLCHAIN)
    269 	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with missing toolchain.'
    270 	@echo '*** May result in a failed build or corrupt binaries!'
    271 .elif defined(EXTERNAL_TOOLCHAIN)
    272 	@echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
    273 .endif
    274 .if defined(NBUILDJOBS)
    275 	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
    276 .endif
    277 
    278 do-distrib-dirs:
    279 .if !defined(DESTDIR) || ${DESTDIR} == ""
    280 	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
    281 .else
    282 	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=${DESTDIR} distrib-dirs)
    283 .endif
    284 
    285 .for targ in cleandir obj includes
    286 do-${targ}: ${targ}
    287 	@true
    288 .endfor
    289 
    290 .for dir in tools lib/csu lib/libc lib gnu/lib
    291 do-${dir:S/\//-/}:
    292 .for targ in dependall install
    293 	(cd ${.CURDIR}/${dir} && ${MAKE} ${targ})
    294 .endfor
    295 .endfor
    296 
    297 do-ld.so:
    298 .for targ in dependall install
    299 .if (${OBJECT_FMT} == "a.out")
    300 	(cd ${.CURDIR}/libexec/ld.aout_so && ${MAKE} ${targ})
    301 .endif
    302 .if (${OBJECT_FMT} == "ELF")
    303 	(cd ${.CURDIR}/libexec/ld.elf_so && ${MAKE} ${targ})
    304 .endif
    305 .endfor
    306 
    307 do-build:
    308 .for targ in dependall install
    309 	(cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)
    310 .endfor
    311 
    312 do-obsolete:
    313 	(cd ${.CURDIR}/etc && ${MAKE} install-obsolete-lists)
    314 
    315 #
    316 # Speedup stubs for some subtrees that don't need to run these rules.
    317 # (Tells <bsd.subdir.mk> not to recurse for them.)
    318 #
    319 
    320 .for dir in bin etc distrib games libexec regress sbin usr.sbin tools
    321 includes-${dir}:
    322 	@true
    323 .endfor
    324 .for dir in etc distrib regress
    325 install-${dir}:
    326 	@true
    327 .endfor
    328 
    329 #
    330 # XXX this needs to change when distrib Makefiles are recursion compliant
    331 # XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
    332 #
    333 dependall-distrib depend-distrib all-distrib:
    334 	@true
    335 
    336 .include <bsd.obj.mk>
    337 .include <bsd.subdir.mk>
    338 
    339 build-docs: ${.CURDIR}/BUILDING
    340 ${.CURDIR}/BUILDING: doc/BUILDING.mdoc
    341 	groff -mdoc -Tascii -P-b -P-u -P-o $> >$@
    342