Home | History | Annotate | Line # | Download | only in src
Makefile revision 1.260
      1 #	$NetBSD: Makefile,v 1.260 2008/10/22 17:37:16 apb 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 `no', will prevent building of manual pages.
     23 #   MKOBJDIRS, if not `no', will build object directories at
     24 #	an appropriate point in a build.
     25 #   MKSHARE, if `no', will prevent building and installing
     26 #	anything in /usr/share.
     27 #   MKUPDATE, if not `no', 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 #   See mk.conf(5) for more details.
     35 #
     36 #
     37 # Targets:
     38 #   build:
     39 #	Builds a full release of NetBSD in DESTDIR, except for the
     40 #	/etc configuration files.
     41 #	If BUILD_DONE is set, this is an empty target.
     42 #   distribution:
     43 #	Builds a full release of NetBSD in DESTDIR, including the /etc
     44 #	configuration files.
     45 #   buildworld:
     46 #	As per `make distribution', except that it ensures that DESTDIR
     47 #	is not the root directory.
     48 #   installworld:
     49 #	Install the distribution from DESTDIR to INSTALLWORLDDIR (which
     50 #	defaults to the root directory).  Ensures that INSTALLWORLDDIR
     51 #	is the not root directory if cross compiling.
     52 #   release:
     53 #	Does a `make distribution', and then tars up the DESTDIR files
     54 #	into ${RELEASEDIR}/${RELEASEMACHINEDIR}, in release(7) format.
     55 #	(See etc/Makefile for more information on this.)
     56 #   regression-tests:
     57 #	Runs the regression tests in "regress" on this host.
     58 #   sets:
     59 #	Populate ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
     60 #	from ${DESTDIR}
     61 #   sourcesets:
     62 #	Populate ${RELEASEDIR}/source/sets from ${NETBSDSRCDIR}
     63 #   syspkgs:
     64 #	Populate ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/syspkgs
     65 #	from ${DESTDIR}
     66 #   iso-image:
     67 #	Create CD-ROM image in RELEASEDIR/iso.
     68 #	RELEASEDIR must already have been populated by `make release'
     69 #	or equivalent.
     70 #   iso-image-source:
     71 #	Create CD-ROM image with source in RELEASEDIR/iso.
     72 #	RELEASEDIR must already have been populated by
     73 #	`make release sourcesets' or equivalent.
     74 #
     75 # Targets invoked by `make build,' in order:
     76 #   cleandir:        cleans the tree.
     77 #   do-tools-obj:    creates object directories for the host toolchain.
     78 #   do-tools:        builds host toolchain.
     79 #   obj:             creates object directories.
     80 #   do-distrib-dirs: creates the distribution directories.
     81 #   includes:        installs include files.
     82 #   do-tools-compat: builds the "libnbcompat" library; needed for some
     83 #                    random host tool programs in the source tree.
     84 #   do-lib-csu:      builds and installs prerequisites from lib/csu.
     85 #   do-libgcc:       builds and installs prerequisites from
     86 #                    gnu/lib/crtstuff${LIBGCC_EXT} (if necessary) and
     87 #                    gnu/lib/libgcc${LIBGCC_EXT}.
     88 #   do-libpcc:       builds and install prerequisites from
     89 #                    external/bsd/pcc/crtstuff and external/bsd/pcc/libpcc.
     90 #   do-lib-libc:     builds and installs prerequisites from lib/libc.
     91 #   do-lib:          builds and installs prerequisites from lib.
     92 #   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
     93 #   do-external-lib: builds and installs prerequisites from external/lib.
     94 #   do-sys-rump-fs-lib:  builds and installs prerequisites from sys/rump/fs/lib
     95 #   do-sys-rump-net-lib: builds and installs prerequisites from sys/rump/net/lib
     96 #   do-ld.so:        builds and installs prerequisites from libexec/ld.*_so.
     97 #   do-build:        builds and installs the entire system.
     98 #   do-x11:          builds and installs X11; either
     99 #                    X11R7 from src/external/mit/xorg if ${MKXORG} != "no"
    100 #                    or X11R6 from src/x11 if ${MKX11} != "no"
    101 #   do-obsolete:     installs the obsolete sets (for the postinstall-* targets).
    102 #
    103 
    104 .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
    105 .MAKEFLAGS: -m ${.CURDIR}/share/mk
    106 .endif
    107 
    108 #
    109 # If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
    110 # not be the top level objdir, because "make obj" can happen in the *middle*
    111 # of "make build" (long after <bsd.own.mk> is calculated it).  So, pre-set
    112 # _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
    113 #
    114 _SRC_TOP_OBJ_=
    115 
    116 .include <bsd.own.mk>
    117 
    118 #
    119 # Sanity check: make sure that "make build" is not invoked simultaneously
    120 # with a standard recursive target.
    121 #
    122 
    123 .if make(build) || make(release) || make(snapshot)
    124 .for targ in ${TARGETS:Nobj:Ncleandir}
    125 .if make(${targ}) && !target(.BEGIN)
    126 .BEGIN:
    127 	@echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
    128 	@false
    129 .endif
    130 .endfor
    131 .endif
    132 
    133 _SUBDIR=	tools lib include gnu external bin games libexec sbin usr.bin
    134 _SUBDIR+=	usr.sbin share rescue sys etc tests .WAIT distrib regress
    135 
    136 #
    137 # Weed out directories that don't exist.
    138 #
    139 
    140 .for dir in ${_SUBDIR}
    141 .if ("${dir}" == ".WAIT") || exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
    142 SUBDIR+=	${dir}
    143 .endif
    144 .endfor
    145 
    146 .if exists(regress)
    147 regression-tests: .PHONY .MAKE
    148 	@echo Running regression tests...
    149 	${MAKEDIRTARGET} regress regress
    150 .endif
    151 
    152 .if ${MKUNPRIVED} != "no"
    153 NOPOSTINSTALL=	# defined
    154 .endif
    155 
    156 afterinstall: .PHONY .MAKE
    157 .if ${MKMAN} != "no"
    158 	${MAKEDIRTARGET} share/man makedb
    159 .endif
    160 .if (${MKUNPRIVED} != "no" && ${MKINFO} != "no")
    161 	${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta
    162 .endif
    163 .if !defined(NOPOSTINSTALL)
    164 	${MAKEDIRTARGET} . postinstall-check
    165 .endif
    166 
    167 _POSTINSTALL=	${.CURDIR}/usr.sbin/postinstall/postinstall
    168 
    169 postinstall-check: .PHONY
    170 	@echo "   === Post installation checks ==="
    171 	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check; if [ $$? -gt 1 ]; then exit 1; fi
    172 	@echo "   ================================"
    173 
    174 postinstall-fix: .NOTMAIN .PHONY
    175 	@echo "   === Post installation fixes ==="
    176 	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix
    177 	@echo "   ==============================="
    178 
    179 postinstall-fix-obsolete: .NOTMAIN .PHONY
    180 	@echo "   === Removing obsolete files ==="
    181 	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete
    182 	@echo "   ==============================="
    183 
    184 
    185 #
    186 # Targets (in order!) called by "make build".
    187 #
    188 .if defined(HAVE_GCC)
    189 .if ${HAVE_GCC} == "3"
    190 LIBGCC_EXT=3
    191 .else
    192 LIBGCC_EXT=4
    193 .endif
    194 .endif
    195 
    196 BUILDTARGETS+=	check-tools
    197 .if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
    198 BUILDTARGETS+=	cleandir
    199 .endif
    200 .if ${USETOOLS} == "yes"
    201 .if ${MKOBJDIRS} != "no"
    202 BUILDTARGETS+=	do-tools-obj
    203 .endif
    204 BUILDTARGETS+=	do-tools
    205 .endif
    206 .if ${MKOBJDIRS} != "no"
    207 BUILDTARGETS+=	obj
    208 .endif
    209 .if !defined(NODISTRIBDIRS)
    210 BUILDTARGETS+=	do-distrib-dirs
    211 .endif
    212 .if !defined(NOINCLUDES)
    213 BUILDTARGETS+=	includes
    214 .endif
    215 BUILDTARGETS+=	do-tools-compat
    216 BUILDTARGETS+=	do-lib-csu
    217 .if ${MKGCC} != "no"
    218 BUILDTARGETS+=	do-libgcc
    219 .endif
    220 .if ${MKPCC} != "no"
    221 BUILDTARGET+=	do-libpcc
    222 .endif
    223 BUILDTARGETS+=	do-lib-libc
    224 BUILDTARGETS+=	do-lib do-gnu-lib do-external-lib
    225 BUILDTARGETS+=	do-sys-rump-fs-lib do-sys-rump-net-lib
    226 BUILDTARGETS+=	do-ld.so
    227 BUILDTARGETS+=	do-build
    228 .if ${MKX11} != "no" || ${MKXORG} != "no"
    229 BUILDTARGETS+=	do-x11
    230 .endif
    231 BUILDTARGETS+=	do-obsolete
    232 
    233 #
    234 # Enforce proper ordering of some rules.
    235 #
    236 
    237 .ORDER:		${BUILDTARGETS}
    238 includes-lib:	.PHONY includes-include includes-sys
    239 includes-gnu:	.PHONY includes-lib
    240 
    241 #
    242 # Build the system and install into DESTDIR.
    243 #
    244 
    245 START_TIME!=	date
    246 
    247 build: .PHONY .MAKE
    248 .if defined(BUILD_DONE)
    249 	@echo "Build already installed into ${DESTDIR}"
    250 .else
    251 	@echo "Build started at: ${START_TIME}"
    252 .for tgt in ${BUILDTARGETS}
    253 	${MAKEDIRTARGET} . ${tgt}
    254 .endfor
    255 	${MAKEDIRTARGET} etc install-etc-release
    256 	@echo   "Build started at:  ${START_TIME}"
    257 	@printf "Build finished at: " && date
    258 .endif
    259 
    260 #
    261 # Build a full distribution, but not a release (i.e. no sets into
    262 # ${RELEASEDIR}).  "buildworld" enforces a build to ${DESTDIR} != /
    263 #
    264 
    265 distribution buildworld: .PHONY .MAKE
    266 .if make(buildworld) && \
    267     (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
    268 	@echo "Won't make ${.TARGET} with DESTDIR=/"
    269 	@false
    270 .endif
    271 	${MAKEDIRTARGET} . build NOPOSTINSTALL=1
    272 	${MAKEDIRTARGET} etc distribution INSTALL_DONE=1
    273 .if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
    274 	${MAKEDIRTARGET} . postinstall-fix-obsolete
    275 	${MAKEDIRTARGET} distrib/sets checkflist
    276 .endif
    277 	@echo   "make ${.TARGET} started at:  ${START_TIME}"
    278 	@printf "make ${.TARGET} finished at: " && date
    279 
    280 #
    281 # Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
    282 # If installing to /, ensures that the host's operating system is NetBSD and
    283 # the host's `uname -m` == ${MACHINE}.
    284 #
    285 
    286 HOST_UNAME_S!=	uname -s
    287 HOST_UNAME_M!=	uname -m
    288 
    289 installworld: .PHONY .MAKE
    290 .if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
    291 	@echo "Can't make ${.TARGET} to DESTDIR=/"
    292 	@false
    293 .endif
    294 .if !defined(INSTALLWORLDDIR) || \
    295     ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
    296 .if (${HOST_UNAME_S} != "NetBSD")
    297 	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
    298 	@false
    299 .endif
    300 .if (${HOST_UNAME_M} != ${MACHINE})
    301 	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
    302 	@false
    303 .endif
    304 .endif
    305 	${MAKEDIRTARGET} distrib/sets installsets \
    306 	    INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS=
    307 	${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR}
    308 	@echo   "make ${.TARGET} started at:  ${START_TIME}"
    309 	@printf "make ${.TARGET} finished at: " && date
    310 
    311 #
    312 # Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
    313 #
    314 
    315 .for tgt in sets sourcesets syspkgs
    316 ${tgt}: .PHONY .MAKE
    317 	${MAKEDIRTARGET} distrib/sets ${tgt}
    318 .endfor
    319 
    320 #
    321 # Build a release or snapshot (implies "make distribution").  Note that
    322 # in this case, the set lists will be checked before the tar files
    323 # are made.
    324 #
    325 
    326 release snapshot: .PHONY .MAKE
    327 	${MAKEDIRTARGET} . distribution
    328 	${MAKEDIRTARGET} etc release DISTRIBUTION_DONE=1
    329 	@echo   "make ${.TARGET} started at:  ${START_TIME}"
    330 	@printf "make ${.TARGET} finished at: " && date
    331 
    332 #
    333 # Create a CD-ROM image.
    334 #
    335 
    336 iso-image: .PHONY
    337 	${MAKEDIRTARGET} distrib iso_image
    338 	${MAKEDIRTARGET} etc iso-image
    339 	@echo   "make ${.TARGET} started at:  ${START_TIME}"
    340 	@printf "make ${.TARGET} finished at: " && date
    341 
    342 iso-image-source: .PHONY
    343 	${MAKEDIRTARGET} distrib iso_image CDSOURCE=true
    344 	${MAKEDIRTARGET} etc iso-image
    345 	@echo   "make ${.TARGET} started at:  ${START_TIME}"
    346 	@printf "make ${.TARGET} finished at: " && date
    347 
    348 #
    349 # Special components of the "make build" process.
    350 #
    351 
    352 check-tools: .PHONY
    353 .if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN)
    354 	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with missing toolchain.'
    355 	@echo '*** May result in a failed build or corrupt binaries!'
    356 .elif defined(EXTERNAL_TOOLCHAIN)
    357 	@echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
    358 .endif
    359 .if defined(NBUILDJOBS)
    360 	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
    361 .endif
    362 
    363 do-distrib-dirs: .PHONY .MAKE
    364 .if !defined(DESTDIR) || ${DESTDIR} == ""
    365 	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/
    366 .else
    367 	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR}
    368 .endif
    369 
    370 .for targ in cleandir obj includes
    371 do-${targ}: .PHONY ${targ}
    372 	@true
    373 .endfor
    374 
    375 .if defined(HAVE_GCC)
    376 BUILD_CC_LIB= gnu/lib/crtstuff${LIBGCC_EXT}
    377 BUILD_CC_LIB+= gnu/lib/libgcc${LIBGCC_EXT}
    378 .elif defined(HAVE_PCC)
    379 BUILD_CC_LIB+= external/bsd/pcc/crtstuff
    380 BUILD_CC_LIB+= external/bsd/pcc/libpcc
    381 .endif
    382 
    383 .for dir in tools tools/compat lib/csu ${BUILD_CC_LIB} lib/libc lib/libdes lib gnu/lib external/lib sys/rump/fs/lib sys/rump/net/lib
    384 do-${dir:S/\//-/g}: .PHONY .MAKE
    385 .for targ in dependall install
    386 	${MAKEDIRTARGET} ${dir} ${targ}
    387 .endfor
    388 .endfor
    389 
    390 do-tools-obj: .PHONY .MAKE
    391 	${MAKEDIRTARGET} tools obj
    392 
    393 do-libgcc: .PHONY .MAKE
    394 .if defined(HAVE_GCC)
    395 .if ${MKGCC} != "no"
    396 .if (${HAVE_GCC} == "3" || ${HAVE_GCC} == "4")
    397 	${MAKEDIRTARGET} . do-gnu-lib-crtstuff${LIBGCC_EXT}
    398 .endif
    399 	${MAKEDIRTARGET} . do-gnu-lib-libgcc${LIBGCC_EXT}
    400 .endif
    401 .endif
    402 
    403 do-libpcc: .PHONY .MAKE
    404 .if defined(HAVE_PCC)
    405 .if ${MKPCC} != "no"
    406 	${MAKEDIRTARGET} . do-pcc-lib-crtstuff
    407 	${MAKEDIRTARGET} . do-pcc-lib-libpcc
    408 .endif
    409 .endif
    410 
    411 do-ld.so: .PHONY .MAKE
    412 .for targ in dependall install
    413 .if (${OBJECT_FMT} == "a.out")
    414 	${MAKEDIRTARGET} libexec/ld.aout_so ${targ}
    415 .endif
    416 .if (${OBJECT_FMT} == "ELF")
    417 	${MAKEDIRTARGET} libexec/ld.elf_so ${targ}
    418 .endif
    419 .endfor
    420 
    421 do-build: .PHONY .MAKE
    422 .for targ in dependall install
    423 	${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no
    424 .endfor
    425 
    426 do-x11: .PHONY .MAKE
    427 .if ${MKXORG} != "no"
    428 	${MAKEDIRTARGET} external/mit/xorg build
    429 .elif ${MKX11} != "no"
    430 	${MAKEDIRTARGET} x11 build
    431 .else
    432 	@echo "Neither MKX11 or MKXORG is enabled"
    433 	@false
    434 .endif
    435 
    436 do-obsolete: .PHONY .MAKE
    437 	${MAKEDIRTARGET} etc install-obsolete-lists
    438 
    439 #
    440 # Speedup stubs for some subtrees that don't need to run these rules.
    441 # (Tells <bsd.subdir.mk> not to recurse for them.)
    442 #
    443 
    444 .for dir in bin etc distrib games libexec regress sbin usr.sbin tools
    445 includes-${dir}: .PHONY
    446 	@true
    447 .endfor
    448 .for dir in etc distrib regress
    449 install-${dir}: .PHONY
    450 	@true
    451 .endfor
    452 
    453 #
    454 # XXX this needs to change when distrib Makefiles are recursion compliant
    455 # XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
    456 #
    457 dependall-distrib depend-distrib all-distrib: .PHONY
    458 	@true
    459 
    460 .include <bsd.sys.mk>
    461 .include <bsd.obj.mk>
    462 .include <bsd.kernobj.mk>
    463 .include <bsd.subdir.mk>
    464 
    465 build-docs: .PHONY ${.CURDIR}/BUILDING
    466 ${.CURDIR}/BUILDING: doc/BUILDING.mdoc
    467 	${_MKMSG_CREATE} ${.TARGET}
    468 	${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
    469 
    470 
    471 #
    472 # Display current make(1) parameters
    473 #
    474 params: .PHONY .MAKE
    475 	${MAKEDIRTARGET} etc params
    476