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