1# 2# $FreeBSD$ 3# 4# The user-driven targets are: 5# 6# universe - *Really* build *everything* (buildworld and 7# all kernels on all architectures). 8# tinderbox - Same as universe, but presents a list of failed build 9# targets and exits with an error if there were any. 10# buildworld - Rebuild *everything*, including glue to help do 11# upgrades. 12# installworld - Install everything built by "buildworld". 13# world - buildworld + installworld, no kernel. 14# buildkernel - Rebuild the kernel and the kernel-modules. 15# installkernel - Install the kernel and the kernel-modules. 16# installkernel.debug 17# reinstallkernel - Reinstall the kernel and the kernel-modules. 18# reinstallkernel.debug 19# kernel - buildkernel + installkernel. 20# kernel-toolchain - Builds the subset of world necessary to build a kernel 21# kernel-toolchains - Build kernel-toolchain for all universe targets. 22# doxygen - Build API documentation of the kernel, needs doxygen. 23# update - Convenient way to update your source tree(s). 24# check-old - List obsolete directories/files/libraries. 25# check-old-dirs - List obsolete directories. 26# check-old-files - List obsolete files. 27# check-old-libs - List obsolete libraries. 28# delete-old - Delete obsolete directories/files. 29# delete-old-dirs - Delete obsolete directories. 30# delete-old-files - Delete obsolete files. 31# delete-old-libs - Delete obsolete libraries. 32# targets - Print a list of supported TARGET/TARGET_ARCH pairs 33# for world and kernel targets. 34# toolchains - Build a toolchain for all world and kernel targets. 35# xdev - xdev-build + xdev-install for the architecture 36# specified with XDEV and XDEV_ARCH. 37# xdev-build - Build cross-development tools. 38# xdev-install - Install cross-development tools. 39# xdev-links - Create traditional links in /usr/bin for cc, etc 40# native-xtools - Create host binaries that produce target objects 41# for use in qemu user-mode jails. 42# 43# "quick" way to test all kernel builds: 44# _jflag=`sysctl -n hw.ncpu` 45# _jflag=$(($_jflag * 2)) 46# [ $_jflag -gt 12 ] && _jflag=12 47# make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag} 48# 49# This makefile is simple by design. The FreeBSD make automatically reads 50# the /usr/share/mk/sys.mk unless the -m argument is specified on the 51# command line. By keeping this makefile simple, it doesn't matter too 52# much how different the installed mk files are from those in the source 53# tree. This makefile executes a child make process, forcing it to use 54# the mk files from the source tree which are supposed to DTRT. 55# 56# Most of the user-driven targets (as listed above) are implemented in 57# Makefile.inc1. The exceptions are universe, tinderbox and targets. 58# 59# If you want to build your system from source be sure that /usr/obj has 60# at least 6GB of diskspace available. A complete 'universe' build requires 61# about 100GB of space. 62# 63# For individuals wanting to build from the sources currently on their 64# system, the simple instructions are: 65# 66# 1. `cd /usr/src' (or to the directory containing your source tree). 67# 2. Define `HISTORICAL_MAKE_WORLD' variable (see README). 68# 3. `make world' 69# 70# For individuals wanting to upgrade their sources (even if only a 71# delta of a few days): 72# 73# 1. `cd /usr/src' (or to the directory containing your source tree). 74# 2. `make buildworld' 75# 3. `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC). 76# 4. `make installkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC). 77# [steps 3. & 4. can be combined by using the "kernel" target] 78# 5. `reboot' (in single user mode: boot -s from the loader prompt). 79# 6. `mergemaster -p' 80# 7. `make installworld' 81# 8. `mergemaster' (you may wish to use -i, along with -U or -F). 82# 9. `make delete-old' 83# 10. `reboot' 84# 11. `make delete-old-libs' (in case no 3rd party program uses them anymore) 85# 86# See src/UPDATING `COMMON ITEMS' for more complete information. 87# 88# If TARGET=machine (e.g. powerpc, sparc64, ...) is specified you can 89# cross build world for other machine types using the buildworld target, 90# and once the world is built you can cross build a kernel using the 91# buildkernel target. 92# 93# Define the user-driven targets. These are listed here in alphabetical 94# order, but that's not important. 95# 96# Targets that begin with underscore are internal targets intended for 97# developer convenience only. They are intentionally not documented and 98# completely subject to change without notice. 99# 100# For more information, see the build(7) manual page. 101# 102 103# This is included so CC is set to ccache for -V, and COMPILER_TYPE/VERSION 104# can be cached for sub-makes. 105.include <bsd.compiler.mk> 106 107# Note: we use this awkward construct to be compatible with FreeBSD's 108# old make used in 10.0 and 9.2 and earlier. 109.if defined(MK_DIRDEPS_BUILD) && ${MK_DIRDEPS_BUILD} == "yes" && !make(showconfig) 110# targets/Makefile plays the role of top-level 111.include "targets/Makefile" 112.else 113 114TGTS= all all-man buildenv buildenvvars buildkernel buildworld \ 115 check-old check-old-dirs check-old-files check-old-libs \ 116 checkdpadd clean cleandepend cleandir cleanworld \ 117 delete-old delete-old-dirs delete-old-files delete-old-libs \ 118 depend distribute distributekernel distributekernel.debug \ 119 distributeworld distrib-dirs distribution doxygen \ 120 everything hier hierarchy install installcheck installkernel \ 121 installkernel.debug packagekernel packageworld \ 122 reinstallkernel reinstallkernel.debug \ 123 installworld kernel-toolchain libraries lint maninstall \ 124 obj objlink regress rerelease showconfig tags toolchain update \ 125 _worldtmp _legacy _bootstrap-tools _cleanobj _obj \ 126 _build-tools _cross-tools _includes _libraries _depend \ 127 build32 builddtb distribute32 install32 xdev xdev-build xdev-install \ 128 xdev-links native-xtools create-kernel-packages stageworld stagekernel \ 129 create-world-packages packages installconfig signpackages 130 131TGTS+= ${SUBDIR_TARGETS} 132 133BITGTS= files includes 134BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/} 135TGTS+= ${BITGTS} 136 137.ORDER: buildworld installworld 138.ORDER: buildworld distributeworld 139.ORDER: buildworld buildkernel 140.ORDER: installworld distribution 141.ORDER: buildkernel installkernel 142.ORDER: buildkernel installkernel.debug 143.ORDER: buildkernel reinstallkernel 144.ORDER: buildkernel reinstallkernel.debug 145 146PATH= /sbin:/bin:/usr/sbin:/usr/bin 147MAKEOBJDIRPREFIX?= /usr/obj 148_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \ 149 ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \ 150 -f /dev/null -V MAKEOBJDIRPREFIX dummy 151.if !empty(_MAKEOBJDIRPREFIX) 152.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\ 153 (in make.conf(5)) or command-line variable. 154.endif 155 156# We often need to use the tree's version of make to build it. 157# Choices add to complexity though. 158# We cannot blindly use a make which may not be the one we want 159# so be exlicit - until all choice is removed. 160WANT_MAKE= bmake 161MYMAKE= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE} 162.if defined(.PARSEDIR) 163HAVE_MAKE= bmake 164.else 165HAVE_MAKE= fmake 166.endif 167.if exists(${MYMAKE}) 168SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk 169.elif ${WANT_MAKE} != ${HAVE_MAKE} 170# It may not exist yet but we may cause it to. 171# In the case of fmake, upgrade_checks may cause a newer version to be built. 172SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \ 173 -m ${.CURDIR}/share/mk 174.else 175SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk 176.endif 177 178_MAKE= PATH=${PATH} ${SUB_MAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH} 179 180# Guess machine architecture from machine type, and vice versa. 181.if !defined(TARGET_ARCH) && defined(TARGET) 182_TARGET_ARCH= ${TARGET:S/pc98/i386/:S/arm64/aarch64/} 183.elif !defined(TARGET) && defined(TARGET_ARCH) && \ 184 ${TARGET_ARCH} != ${MACHINE_ARCH} 185_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb|hf)?/arm/:C/aarch64/arm64/:C/powerpc64/powerpc/:C/riscv64/riscv/} 186.endif 187.if defined(TARGET) && !defined(_TARGET) 188_TARGET=${TARGET} 189.endif 190.if defined(TARGET_ARCH) && !defined(_TARGET_ARCH) 191_TARGET_ARCH=${TARGET_ARCH} 192.endif 193# for historical compatibility for xdev targets 194.if defined(XDEV) 195_TARGET= ${XDEV} 196.endif 197.if defined(XDEV_ARCH) 198_TARGET_ARCH= ${XDEV_ARCH} 199.endif 200# Otherwise, default to current machine type and architecture. 201_TARGET?= ${MACHINE} 202_TARGET_ARCH?= ${MACHINE_ARCH} 203 204# 205# Make sure we have an up-to-date make(1). Only world and buildworld 206# should do this as those are the initial targets used for upgrades. 207# The user can define ALWAYS_CHECK_MAKE to have this check performed 208# for all targets. 209# 210.if defined(ALWAYS_CHECK_MAKE) || !defined(.PARSEDIR) 211${TGTS}: upgrade_checks 212.else 213buildworld: upgrade_checks 214.endif 215 216# 217# Handle the user-driven targets, using the source relative mk files. 218# 219 220tinderbox toolchains kernel-toolchains: .MAKE 221${TGTS}: .PHONY .MAKE 222 ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET} 223 224# The historic default "all" target creates files which may cause stale 225# or (in the cross build case) unlinkable results. Fail with an error 226# when no target is given. The users can explicitly specify "all" 227# if they want the historic behavior. 228.MAIN: _guard 229 230_guard: .PHONY 231 @echo 232 @echo "Explicit target required. Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted. See build(7)." 233 @echo 234 @false 235 236STARTTIME!= LC_ALL=C date 237CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo 238.if !empty(CHECK_TIME) 239.error check your date/time: ${STARTTIME} 240.endif 241 242.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR) 243# 244# world 245# 246# Attempt to rebuild and reinstall everything. This target is not to be 247# used for upgrading an existing FreeBSD system, because the kernel is 248# not included. One can argue that this target doesn't build everything 249# then. 250# 251world: upgrade_checks 252 @echo "--------------------------------------------------------------" 253 @echo ">>> make world started on ${STARTTIME}" 254 @echo "--------------------------------------------------------------" 255.if target(pre-world) 256 @echo 257 @echo "--------------------------------------------------------------" 258 @echo ">>> Making 'pre-world' target" 259 @echo "--------------------------------------------------------------" 260 ${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world 261.endif 262 ${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld 263 ${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld 264.if target(post-world) 265 @echo 266 @echo "--------------------------------------------------------------" 267 @echo ">>> Making 'post-world' target" 268 @echo "--------------------------------------------------------------" 269 ${_+_}@cd ${.CURDIR}; ${_MAKE} post-world 270.endif 271 @echo 272 @echo "--------------------------------------------------------------" 273 @echo ">>> make world completed on `LC_ALL=C date`" 274 @echo " (started ${STARTTIME})" 275 @echo "--------------------------------------------------------------" 276.else 277world: 278 @echo "WARNING: make world will overwrite your existing FreeBSD" 279 @echo "installation without also building and installing a new" 280 @echo "kernel. This can be dangerous. Please read the handbook," 281 @echo "'Rebuilding world', for how to upgrade your system." 282 @echo "Define DESTDIR to where you want to install FreeBSD," 283 @echo "including /, to override this warning and proceed as usual." 284 @echo "" 285 @echo "Bailing out now..." 286 @false 287.endif 288 289# 290# kernel 291# 292# Short hand for `make buildkernel installkernel' 293# 294kernel: buildkernel installkernel 295 296# 297# Perform a few tests to determine if the installed tools are adequate 298# for building the world. 299# 300# Note: if we ever need to care about the version of bmake, simply testing 301# MAKE_VERSION against a required version should suffice. 302# 303upgrade_checks: 304.if ${HAVE_MAKE} != ${WANT_MAKE} 305 @(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,}) 306.endif 307 308# 309# Upgrade make(1) to the current version using the installed 310# headers, libraries and tools. Also, allow the location of 311# the system bsdmake-like utility to be overridden. 312# 313MMAKEENV= MAKEOBJDIRPREFIX=${MYMAKE:H} \ 314 DESTDIR= \ 315 INSTALL="sh ${.CURDIR}/tools/install.sh" 316MMAKE= ${MMAKEENV} ${MAKE} \ 317 -DNO_MAN -DNO_SHARED \ 318 -DNO_CPU_CFLAGS -DNO_WERROR \ 319 MK_TESTS=no \ 320 DESTDIR= PROGNAME=${MYMAKE:T} 321 322bmake: .PHONY 323 @echo 324 @echo "--------------------------------------------------------------" 325 @echo ">>> Building an up-to-date ${.TARGET}(1)" 326 @echo "--------------------------------------------------------------" 327 ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \ 328 ${MMAKE} obj; \ 329 ${MMAKE} depend; \ 330 ${MMAKE} all; \ 331 ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= 332 333tinderbox toolchains kernel-toolchains kernels worlds: upgrade_checks 334 335tinderbox: 336 @cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe 337 338toolchains: 339 @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe 340 341kernel-toolchains: 342 @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe 343 344kernels: 345 @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=buildkernel universe 346 347worlds: 348 @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=buildworld universe 349 350# 351# universe 352# 353# Attempt to rebuild *everything* for all supported architectures, 354# with a reasonable chance of success, regardless of how old your 355# existing system is. 356# 357.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) 358TARGETS?=amd64 arm arm64 i386 mips pc98 powerpc sparc64 359_UNIVERSE_TARGETS= ${TARGETS} 360TARGET_ARCHES_arm?= arm armeb armv6 armv6hf 361TARGET_ARCHES_arm64?= aarch64 362TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 363TARGET_ARCHES_powerpc?= powerpc powerpc64 364TARGET_ARCHES_pc98?= i386 365.for target in ${TARGETS} 366TARGET_ARCHES_${target}?= ${target} 367.endfor 368 369# XXX Add arm64 to universe only if we have an external binutils installed. 370# It does not build with the in-tree linker. 371.if !exists(/usr/local/aarch64-freebsd/bin/ld) && empty(${TARGETS}) 372_UNIVERSE_TARGETS:= ${_UNIVERSE_TARGETS:Narm64} 373universe: universe_arm64_skip 374universe_epilogue: universe_arm64_skip 375universe_arm64_skip: universe_prologue 376 @echo ">> arm64 skipped - install aarch64-binutils port or package to build" 377.endif 378 379.if defined(UNIVERSE_TARGET) 380MAKE_JUST_WORLDS= YES 381.else 382UNIVERSE_TARGET?= buildworld 383.endif 384KERNSRCDIR?= ${.CURDIR}/sys 385 386targets: .PHONY 387 @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets" 388.for target in ${TARGETS} 389.for target_arch in ${TARGET_ARCHES_${target}} 390 @echo " ${target}/${target_arch}" 391.endfor 392.endfor 393 394.if defined(DOING_TINDERBOX) 395FAILFILE=${.CURDIR}/_.tinderbox.failed 396MAKEFAIL=tee -a ${FAILFILE} 397.else 398MAKEFAIL=cat 399.endif 400 401universe_prologue: upgrade_checks 402universe: universe_prologue 403universe_prologue: 404 @echo "--------------------------------------------------------------" 405 @echo ">>> make universe started on ${STARTTIME}" 406 @echo "--------------------------------------------------------------" 407.if defined(DOING_TINDERBOX) 408 @rm -f ${FAILFILE} 409.endif 410.for target in ${_UNIVERSE_TARGETS} 411universe: universe_${target} 412universe_epilogue: universe_${target} 413universe_${target}: universe_${target}_prologue 414universe_${target}_prologue: universe_prologue 415 @echo ">> ${target} started on `LC_ALL=C date`" 416universe_${target}_worlds: 417 418.if !defined(MAKE_JUST_KERNELS) 419universe_${target}_done: universe_${target}_worlds 420.for target_arch in ${TARGET_ARCHES_${target}} 421universe_${target}_worlds: universe_${target}_${target_arch} 422universe_${target}_${target_arch}: universe_${target}_prologue .MAKE 423 @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`" 424 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ 425 ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \ 426 TARGET=${target} \ 427 TARGET_ARCH=${target_arch} \ 428 > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \ 429 (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \ 430 "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \ 431 ${MAKEFAIL})) 432 @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`" 433.endfor 434.endif # !MAKE_JUST_KERNELS 435 436.if !defined(MAKE_JUST_WORLDS) 437universe_${target}_done: universe_${target}_kernels 438universe_${target}_kernels: universe_${target}_worlds 439universe_${target}_kernels: universe_${target}_prologue .MAKE 440.if exists(${KERNSRCDIR}/${target}/conf/NOTES) 441 @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \ 442 ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \ 443 (echo "${target} 'make LINT' failed," \ 444 "check _.${target}.makeLINT for details"| ${MAKEFAIL})) 445.endif 446 @cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \ 447 universe_kernels 448.endif # !MAKE_JUST_WORLDS 449 450# Tell the user the worlds and kernels have completed 451universe_${target}: universe_${target}_done 452universe_${target}_done: 453 @echo ">> ${target} completed on `LC_ALL=C date`" 454.endfor 455universe_kernels: universe_kernconfs 456.if !defined(TARGET) 457TARGET!= uname -m 458.endif 459.if defined(MAKE_ALL_KERNELS) 460_THINNER=cat 461.else 462_THINNER=xargs grep -L "^.NO_UNIVERSE" || true 463.endif 464KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \ 465 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \ 466 ! -name DEFAULTS ! -name NOTES | \ 467 ${_THINNER} 468universe_kernconfs: 469.for kernel in ${KERNCONFS} 470TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \ 471 config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \ 472 grep -v WARNING: | cut -f 2 473.if empty(TARGET_ARCH_${kernel}) 474.error "Target architecture for ${TARGET}/conf/${kernel} unknown. config(8) likely too old." 475.endif 476universe_kernconfs: universe_kernconf_${TARGET}_${kernel} 477universe_kernconf_${TARGET}_${kernel}: .MAKE 478 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ 479 ${SUB_MAKE} ${JFLAG} buildkernel \ 480 TARGET=${TARGET} \ 481 TARGET_ARCH=${TARGET_ARCH_${kernel}} \ 482 KERNCONF=${kernel} \ 483 > _.${TARGET}.${kernel} 2>&1 || \ 484 (echo "${TARGET} ${kernel} kernel failed," \ 485 "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL})) 486.endfor 487universe: universe_epilogue 488universe_epilogue: 489 @echo "--------------------------------------------------------------" 490 @echo ">>> make universe completed on `LC_ALL=C date`" 491 @echo " (started ${STARTTIME})" 492 @echo "--------------------------------------------------------------" 493.if defined(DOING_TINDERBOX) 494 @if [ -e ${FAILFILE} ] ; then \ 495 echo "Tinderbox failed:" ;\ 496 cat ${FAILFILE} ;\ 497 exit 1 ;\ 498 fi 499.endif 500.endif 501 502buildLINT: 503 ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT 504 505.if defined(.PARSEDIR) 506# This makefile does not run in meta mode 507.MAKE.MODE= normal 508# Normally the things we run from here don't either. 509# Using -DWITH_META_MODE 510# we can buildworld with meta files created which are useful 511# for debugging, but without any of the rest of a meta mode build. 512MK_DIRDEPS_BUILD= no 513MK_STAGING= no 514# tell meta.autodep.mk to not even think about updating anything. 515UPDATE_DEPENDFILE= NO 516.if !make(showconfig) 517.export MK_DIRDEPS_BUILD MK_STAGING UPDATE_DEPENDFILE 518.endif 519 520.if make(universe) 521# we do not want a failure of one branch abort all. 522MAKE_JOB_ERROR_TOKEN= no 523.export MAKE_JOB_ERROR_TOKEN 524.endif 525.endif # bmake 526 527.endif # DIRDEPS_BUILD 528