]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile
MFH
[FreeBSD/FreeBSD.git] / Makefile
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
114 TGTS=   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
131 TGTS+=  ${SUBDIR_TARGETS}
132
133 BITGTS= files includes
134 BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
135 TGTS+=  ${BITGTS}
136
137 .ORDER: buildworld installworld
138 .ORDER: buildworld distributeworld
139 .ORDER: buildworld buildkernel
140 .ORDER: buildkernel installkernel
141 .ORDER: buildkernel installkernel.debug
142 .ORDER: buildkernel reinstallkernel
143 .ORDER: buildkernel reinstallkernel.debug
144
145 PATH=   /sbin:/bin:/usr/sbin:/usr/bin
146 MAKEOBJDIRPREFIX?=      /usr/obj
147 _MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
148     ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
149     -f /dev/null -V MAKEOBJDIRPREFIX dummy
150 .if !empty(_MAKEOBJDIRPREFIX)
151 .error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
152         (in make.conf(5)) or command-line variable.
153 .endif
154
155 # We often need to use the tree's version of make to build it.
156 # Choices add to complexity though.
157 # We cannot blindly use a make which may not be the one we want
158 # so be exlicit - until all choice is removed.
159 WANT_MAKE=      bmake
160 MYMAKE=         ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
161 .if defined(.PARSEDIR)
162 HAVE_MAKE=      bmake
163 .else
164 HAVE_MAKE=      fmake
165 .endif
166 .if exists(${MYMAKE})
167 SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
168 .elif ${WANT_MAKE} != ${HAVE_MAKE}
169 # It may not exist yet but we may cause it to.
170 # In the case of fmake, upgrade_checks may cause a newer version to be built.
171 SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \
172         -m ${.CURDIR}/share/mk
173 .else
174 SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk
175 .endif
176
177 _MAKE=  PATH=${PATH} ${SUB_MAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
178
179 # Guess machine architecture from machine type, and vice versa.
180 .if !defined(TARGET_ARCH) && defined(TARGET)
181 _TARGET_ARCH=   ${TARGET:S/pc98/i386/:S/arm64/aarch64/}
182 .elif !defined(TARGET) && defined(TARGET_ARCH) && \
183     ${TARGET_ARCH} != ${MACHINE_ARCH}
184 _TARGET=                ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb|hf)?/arm/:C/aarch64/arm64/:C/powerpc64/powerpc/:C/riscv64/riscv/}
185 .endif
186 .if defined(TARGET) && !defined(_TARGET)
187 _TARGET=${TARGET}
188 .endif
189 .if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
190 _TARGET_ARCH=${TARGET_ARCH}
191 .endif
192 # for historical compatibility for xdev targets
193 .if defined(XDEV)
194 _TARGET=        ${XDEV}
195 .endif
196 .if defined(XDEV_ARCH)
197 _TARGET_ARCH=   ${XDEV_ARCH}
198 .endif
199 # Otherwise, default to current machine type and architecture.
200 _TARGET?=       ${MACHINE}
201 _TARGET_ARCH?=  ${MACHINE_ARCH}
202
203 #
204 # Make sure we have an up-to-date make(1). Only world and buildworld
205 # should do this as those are the initial targets used for upgrades.
206 # The user can define ALWAYS_CHECK_MAKE to have this check performed
207 # for all targets.
208 #
209 .if defined(ALWAYS_CHECK_MAKE) || !defined(.PARSEDIR)
210 ${TGTS}: upgrade_checks
211 .else
212 buildworld: upgrade_checks
213 .endif
214
215 #
216 # Handle the user-driven targets, using the source relative mk files.
217 #
218
219 tinderbox toolchains kernel-toolchains: .MAKE
220 ${TGTS}: .PHONY .MAKE
221         ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
222
223 # The historic default "all" target creates files which may cause stale
224 # or (in the cross build case) unlinkable results. Fail with an error
225 # when no target is given. The users can explicitly specify "all"
226 # if they want the historic behavior.
227 .MAIN:  _guard
228
229 _guard: .PHONY
230         @echo
231         @echo "Explicit target required.  Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted.  See build(7)."
232         @echo
233         @false
234
235 STARTTIME!= LC_ALL=C date
236 CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
237 .if !empty(CHECK_TIME)
238 .error check your date/time: ${STARTTIME}
239 .endif
240
241 .if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
242 #
243 # world
244 #
245 # Attempt to rebuild and reinstall everything. This target is not to be
246 # used for upgrading an existing FreeBSD system, because the kernel is
247 # not included. One can argue that this target doesn't build everything
248 # then.
249 #
250 world: upgrade_checks
251         @echo "--------------------------------------------------------------"
252         @echo ">>> make world started on ${STARTTIME}"
253         @echo "--------------------------------------------------------------"
254 .if target(pre-world)
255         @echo
256         @echo "--------------------------------------------------------------"
257         @echo ">>> Making 'pre-world' target"
258         @echo "--------------------------------------------------------------"
259         ${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
260 .endif
261         ${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
262         ${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
263 .if target(post-world)
264         @echo
265         @echo "--------------------------------------------------------------"
266         @echo ">>> Making 'post-world' target"
267         @echo "--------------------------------------------------------------"
268         ${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
269 .endif
270         @echo
271         @echo "--------------------------------------------------------------"
272         @echo ">>> make world completed on `LC_ALL=C date`"
273         @echo "                   (started ${STARTTIME})"
274         @echo "--------------------------------------------------------------"
275 .else
276 world:
277         @echo "WARNING: make world will overwrite your existing FreeBSD"
278         @echo "installation without also building and installing a new"
279         @echo "kernel.  This can be dangerous.  Please read the handbook,"
280         @echo "'Rebuilding world', for how to upgrade your system."
281         @echo "Define DESTDIR to where you want to install FreeBSD,"
282         @echo "including /, to override this warning and proceed as usual."
283         @echo ""
284         @echo "Bailing out now..."
285         @false
286 .endif
287
288 #
289 # kernel
290 #
291 # Short hand for `make buildkernel installkernel'
292 #
293 kernel: buildkernel installkernel
294
295 #
296 # Perform a few tests to determine if the installed tools are adequate
297 # for building the world.
298 #
299 # Note: if we ever need to care about the version of bmake, simply testing
300 # MAKE_VERSION against a required version should suffice.
301 #
302 upgrade_checks:
303 .if ${HAVE_MAKE} != ${WANT_MAKE}
304         @(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
305 .endif
306
307 #
308 # Upgrade make(1) to the current version using the installed
309 # headers, libraries and tools.  Also, allow the location of
310 # the system bsdmake-like utility to be overridden.
311 #
312 MMAKEENV=       MAKEOBJDIRPREFIX=${MYMAKE:H} \
313                 DESTDIR= \
314                 INSTALL="sh ${.CURDIR}/tools/install.sh"
315 MMAKE=          ${MMAKEENV} ${MAKE} \
316                 -DNO_MAN -DNO_SHARED \
317                 -DNO_CPU_CFLAGS -DNO_WERROR \
318                 MK_TESTS=no \
319                 DESTDIR= PROGNAME=${MYMAKE:T}
320
321 bmake: .PHONY
322         @echo
323         @echo "--------------------------------------------------------------"
324         @echo ">>> Building an up-to-date ${.TARGET}(1)"
325         @echo "--------------------------------------------------------------"
326         ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
327                 ${MMAKE} obj; \
328                 ${MMAKE} depend; \
329                 ${MMAKE} all; \
330                 ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR=
331
332 tinderbox toolchains kernel-toolchains: upgrade_checks
333
334 tinderbox:
335         @cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe
336
337 toolchains:
338         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe
339
340 kernel-toolchains:
341         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe
342
343 #
344 # universe
345 #
346 # Attempt to rebuild *everything* for all supported architectures,
347 # with a reasonable chance of success, regardless of how old your
348 # existing system is.
349 #
350 .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
351 TARGETS?=amd64 arm arm64 i386 mips pc98 powerpc sparc64
352 _UNIVERSE_TARGETS=      ${TARGETS}
353 TARGET_ARCHES_arm?=     arm armeb armv6 armv6hf
354 TARGET_ARCHES_arm64?=   aarch64
355 TARGET_ARCHES_mips?=    mipsel mips mips64el mips64 mipsn32
356 TARGET_ARCHES_powerpc?= powerpc powerpc64
357 TARGET_ARCHES_pc98?=    i386
358 .for target in ${TARGETS}
359 TARGET_ARCHES_${target}?= ${target}
360 .endfor
361
362 # XXX Add arm64 to universe only if we have an external binutils installed.
363 # It does not build with the in-tree linker.
364 .if !exists(/usr/local/aarch64-freebsd/bin/ld) && empty(${TARGETS})
365 _UNIVERSE_TARGETS:= ${_UNIVERSE_TARGETS:Narm64}
366 universe: universe_arm64_skip
367 universe_epilogue: universe_arm64_skip
368 universe_arm64_skip: universe_prologue
369         @echo ">> arm64 skipped - install aarch64-binutils port or package to build"
370 .endif
371
372 .if defined(UNIVERSE_TARGET)
373 MAKE_JUST_WORLDS=       YES
374 .else
375 UNIVERSE_TARGET?=       buildworld
376 .endif
377 KERNSRCDIR?=            ${.CURDIR}/sys
378
379 targets:        .PHONY
380         @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
381 .for target in ${TARGETS}
382 .for target_arch in ${TARGET_ARCHES_${target}}
383         @echo "    ${target}/${target_arch}"
384 .endfor
385 .endfor
386
387 .if defined(DOING_TINDERBOX)
388 FAILFILE=${.CURDIR}/_.tinderbox.failed
389 MAKEFAIL=tee -a ${FAILFILE}
390 .else
391 MAKEFAIL=cat
392 .endif
393
394 universe_prologue:  upgrade_checks
395 universe: universe_prologue
396 universe_prologue:
397         @echo "--------------------------------------------------------------"
398         @echo ">>> make universe started on ${STARTTIME}"
399         @echo "--------------------------------------------------------------"
400 .if defined(DOING_TINDERBOX)
401         @rm -f ${FAILFILE}
402 .endif
403 .for target in ${_UNIVERSE_TARGETS}
404 universe: universe_${target}
405 universe_epilogue: universe_${target}
406 universe_${target}: universe_${target}_prologue
407 universe_${target}_prologue: universe_prologue
408         @echo ">> ${target} started on `LC_ALL=C date`"
409 universe_${target}_worlds:
410
411 .if !defined(MAKE_JUST_KERNELS)
412 universe_${target}_done: universe_${target}_worlds
413 .for target_arch in ${TARGET_ARCHES_${target}}
414 universe_${target}_worlds: universe_${target}_${target_arch}
415 universe_${target}_${target_arch}: universe_${target}_prologue .MAKE
416         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
417         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
418             ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
419             TARGET=${target} \
420             TARGET_ARCH=${target_arch} \
421             > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
422             (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
423             "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
424             ${MAKEFAIL}))
425         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
426 .endfor
427 .endif # !MAKE_JUST_KERNELS
428
429 .if !defined(MAKE_JUST_WORLDS)
430 universe_${target}_done: universe_${target}_kernels
431 universe_${target}_kernels: universe_${target}_worlds
432 universe_${target}_kernels: universe_${target}_prologue .MAKE
433 .if exists(${KERNSRCDIR}/${target}/conf/NOTES)
434         @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
435             ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
436             (echo "${target} 'make LINT' failed," \
437             "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
438 .endif
439         @cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \
440             universe_kernels
441 .endif # !MAKE_JUST_WORLDS
442
443 # Tell the user the worlds and kernels have completed
444 universe_${target}: universe_${target}_done
445 universe_${target}_done:
446         @echo ">> ${target} completed on `LC_ALL=C date`"
447 .endfor
448 universe_kernels: universe_kernconfs
449 .if !defined(TARGET)
450 TARGET!=        uname -m
451 .endif
452 .if defined(MAKE_ALL_KERNELS)
453 _THINNER=cat
454 .else
455 _THINNER=xargs grep -L "^.NO_UNIVERSE" || true
456 .endif
457 KERNCONFS!=     cd ${KERNSRCDIR}/${TARGET}/conf && \
458                 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
459                 ! -name DEFAULTS ! -name NOTES | \
460                 ${_THINNER}
461 universe_kernconfs:
462 .for kernel in ${KERNCONFS}
463 TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
464         config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
465         grep -v WARNING: | cut -f 2
466 .if empty(TARGET_ARCH_${kernel})
467 .error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
468 .endif
469 universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
470 universe_kernconf_${TARGET}_${kernel}: .MAKE
471         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
472             ${SUB_MAKE} ${JFLAG} buildkernel \
473             TARGET=${TARGET} \
474             TARGET_ARCH=${TARGET_ARCH_${kernel}} \
475             KERNCONF=${kernel} \
476             > _.${TARGET}.${kernel} 2>&1 || \
477             (echo "${TARGET} ${kernel} kernel failed," \
478             "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
479 .endfor
480 universe: universe_epilogue
481 universe_epilogue:
482         @echo "--------------------------------------------------------------"
483         @echo ">>> make universe completed on `LC_ALL=C date`"
484         @echo "                      (started ${STARTTIME})"
485         @echo "--------------------------------------------------------------"
486 .if defined(DOING_TINDERBOX)
487         @if [ -e ${FAILFILE} ] ; then \
488                 echo "Tinderbox failed:" ;\
489                 cat ${FAILFILE} ;\
490                 exit 1 ;\
491         fi
492 .endif
493 .endif
494
495 buildLINT:
496         ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
497
498 .if defined(.PARSEDIR)
499 # This makefile does not run in meta mode
500 .MAKE.MODE= normal
501 # Normally the things we run from here don't either.
502 # Using -DWITH_META_MODE
503 # we can buildworld with meta files created which are useful 
504 # for debugging, but without any of the rest of a meta mode build.
505 MK_DIRDEPS_BUILD= no
506 MK_STAGING= no
507 # tell meta.autodep.mk to not even think about updating anything.
508 UPDATE_DEPENDFILE= NO
509 .if !make(showconfig)
510 .export MK_DIRDEPS_BUILD MK_STAGING UPDATE_DEPENDFILE
511 .endif
512
513 .if make(universe)
514 # we do not want a failure of one branch abort all.
515 MAKE_JOB_ERROR_TOKEN= no
516 .export MAKE_JOB_ERROR_TOKEN
517 .endif
518 .endif # bmake
519
520 .endif                          # DIRDEPS_BUILD